Posts: 5
Name: Bindass Delhiite
Location: New Delhi, India
|
Better assign each page a unique ID for its <body> tag and also assign unique Ids for Tab Links and assign a common CSS class for Tab Links.
After doing that declare different colors for your tabs which are particular to their page, that is, their <body> Ids.
For example in your CSS stylesheet you may code like this..
Code:
a.tab-links { color: #FFFFFF; } /* defines same color for all the tab links */
body#home a#home-tab { color: #333333; } /* define Gray color for HOME link only on Home Page */
body#quote a#quote-tab { color: #333333; } /* define Gray color for SUBMIT QUOTE link on Submit Quote Page */
and so on..
I hope that this will be helpful to you.
Thanks,
Bindass Delhiite
enjoy 
|