function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
RichardLRichardL 

On a Visualforce tab can I change the background

Up at the top, in the tab panel, my tabs have a green to light green gradation, it reverses direction on the selected tab. The colors and type don't display well on our meeting room projectors. How do I change the background of the cutout part of the tab that users click on to navigate? 
RichardLRichardL
And I mean an <apex:tabPanel> tag or the <apex:tab> tag on an apex page, not the larger tabs up in the header. 
Ramu_SFDCRamu_SFDC
The below post might help you accomplish your requirement

https://developer.salesforce.com/forums/ForumsMain?id=906F000000098poIAA
RichardLRichardL
No, that's not it. I want to change the background of the cutout on the small tabs that are generated by <apex:tabPanel> and <apex:tab>. In the picture where the words "Contract Detail" appear, just that top part. I figure it has to be some style attribute, but I can't figure out what that is.

example
 
Edwin VijayEdwin Vijay
You can use the style attribute, like this

<apex:tabpanel style="background-color:#00ff00;">

You can use a styleclass as well