I just updated from ASP.NET Ajax 1.0 to 4, and now the HeaderText in all my TabPanels is blue. I tried setting the ForeColor and the Color properties, but no luck.

How do I change my HeaderText back to black?

link|improve this question

29% accept rate
are you sure you are not using any CssClass or a default theme?Themes are generally given on the top of the page. – RoboLover Dec 5 '11 at 18:59
No themes or CssClass applied. And certainly nothing changed to blue since I updated Fri, and it was black before the update. – thchaver Dec 5 '11 at 19:48
feedback

1 Answer

up vote 1 down vote accepted

Add this style to page header: a.ajax__tab_tab{ color: #000 !important; }

link|improve this answer
That made the tab image disappear, and all that was showing was blue text. – thchaver Dec 5 '11 at 20:08
Which tab image you mean? Do iy use tabs from ajax control toolkit? – Yuriy Rozhovetskiy Dec 5 '11 at 20:15
Yes, these are the toolkit tabs. When I tried your code it no longer showed any image at all. It no longer looked like tabs, just a bunch of words. – thchaver Dec 5 '11 at 20:47
are you kidding? it's just a css rule for hyperlinks color in tab header. Show your code. – Yuriy Rozhovetskiy Dec 5 '11 at 21:11
Figured out what went wrong. I had set CssClass of the TabContainer. That's what was getting rid of the images. Got rid of that, and just had your code in my style sheet, with a reference to my style sheet in my master page, and it worked. Thanks! – thchaver Dec 5 '11 at 21:34
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.