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
.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
Hi The Biss,
Please try:
Bob
Please try:
input#chrono_verification {
background-color: white;
}Bob
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
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
Hi Greyhead,
Here is the link http://www.raleightitansfootball.org/index.php?option=com_chronocontact&Itemid=66
See the bottom of the screen where the submit button is located.
Thanks
Dink
Here is the link http://www.raleightitansfootball.org/index.php?option=com_chronocontact&Itemid=66
See the bottom of the screen where the submit button is located.
Thanks
Dink
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
Bob
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
Greyhead,
You are a genius. That code fixed it, the box is now white.
Thank you very much!
Dink
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.
