Forums

Captcha Input Field is gray against gray template background

the biss 28 Jun, 2011
We have a template on our website that uses a gray background. We've found the Form Code box in the backend that allows us to change the CSS for the input forms.

.cf_inputbox {
border: 1px solid #000000;
}

However, this changes EVERY input box on the page EXCEPT the one box I am trying to change... the chrono_verification Captcha input box. Any ideas on how I can get chrono_verification to switch to a white background like the rest of my input boxes?

http://www.raleightitansfootball.org/index.php?option=com_chronocontact&Itemid=66
GreyHead 28 Jun, 2011
Hi The Biss,

Please try:
input#chrono_verification {
  background-color: white;
}

Bob
Dinkjenkins 01 Jul, 2011
Hi Greyhead,

We put the code in the CSS code form and it did not affect the input box color. It is still gray. Any other suggestions?

Thanks
Dink
GreyHead 01 Jul, 2011
Hi Dink,

Please post a link to the form so I can take a quick look.

Bob
GreyHead 03 Jul, 2011
Hi Dink,

I can't see any sign of that CSS snippet on the page - there appears to be quite a different style applied to the chrono_verification input :-(

If it really doesn’t work you can try
input#chrono_verification {
  background-color: white !important;
}

Bob
Dinkjenkins 04 Jul, 2011
Greyhead,

You are a genius. That code fixed it, the box is now white.

Thank you very much!
Dink
This topic is locked and no more replies can be posted.