vote up 4 vote down star

I'm using several variants of the Validator controls (RequiredFieldValidator, CompareValidator, etc) and am using the CssClass property of the validator. I can see (via Firebug) that the class is being applied, but the validator control itself is adding a style element to it, namely color: red. But I don't want that. I want the control to use the cssclass only.

I know I can override the Forecolor attribute, but I'll have to do that on every validator in the project. And I'd really like to be able to just change my CSS Class in my stylesheet in case we have to change all the error message appearances in the future.

Anyone have any clues how to tell the Validator controls to NOT use their default styles?

flag

3 Answers

vote up 5 vote down check

You can do this in your css file:

.validator
{
    color: blue !important;
}

This will override the inline red style.

link|flag
Excellent. That worked in IE6 and FF3. I can't test the others right offhand, but this will get me through for testing. I never thought to do the !important thing. For anyone who cares, the .validator class he is referring to above can be anything -- mine is called .error_text – Matt Dawdy Oct 29 '08 at 18:55
This is a nice example of ASP.NET sucking. Resorting to using !important just because ASP.NET pushes style="color: Red" onto you. – blahblah Oct 29 at 16:43
vote up 3 vote down

If you use themes, you can set up your skin file to control the appearance of your validator. The problem with Forecolor inline is that the way .Net renders the default controls, it inserts a color="#..." attribute that overrides CSS at the element level. If Keltex's solution above doesn't get it for you with the !important directive, your next step is probably to use/adapt/help work on the CSS-Friendly Control Adapters project at http://www.asp.net/CSSAdapters/.

Shameless plug: Brian DeMarzo is working on extending this project at Google Code.

link|flag
Good advice, but wrong link (as far as I could tell). Did you mean: codeplex.com/cssfriendly ? – CMPalmer Oct 29 '08 at 16:51
Thanks. Edited, as I was pointing to the original version after Microsoft open-sourced(!) it, but yours is good, too. – John Dunagan Oct 29 '08 at 18:04
Using themes will work; I've done it multiple times to override .NET's defaults. (Red is often the right answer, but not always!) – John Rudy Oct 29 '08 at 18:30
Thanks for the pointers, guys. I just might delve into those other methods. – Matt Dawdy Oct 29 '08 at 18:56
vote up 1 vote down

Have you looked at themes?

link|flag
Nope. Do you know that will work, or do you think it might be a good place to start? – Matt Dawdy Oct 29 '08 at 16:17
I think it might be one place to start. But the answer from Keltex looks simpler. – Ken Ray Oct 29 '08 at 16:42
Thanks Ken. Keltex's solution appears to work (at least on FF3 and IE6 in WinXP). – Matt Dawdy Oct 29 '08 at 18:56

Your Answer

Get an OpenID
or

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