Form App - Blocks Tabs - Color when active/inactive

Working with more than 10 tabs (block tabs) in a Fomr App, I get lost myself because I can’t see what is the active tab.
Is there a way in a Form App, using blocks as tabs, to change the background color of the active tab ?
Thx

Hi jefch,
I understand you are using the option “Pages” to create Tabs.
You can place this CSS code inside event OnScriptInit:

?>
<style>
	.scTabActive{
		background-color:dodgerblue;	
	}	
	.scTabInactive {
		background-color:lavender;
	}
</style>
<?

I hope this may help you.
Regards,
Mauricio.

Hi dossamau. Thx for your reply.
I just had to add !important at the end of each css line to make it work.
Thanks a lot for your assistance.

[SOLVED] Thx to dossamau