http://fitness.maximfactory.com/
I am trying to change the font color in the Contact Form on the home page.
I can put a Custom Css CLass in the element I just can’t figure out what to enter.
What css could I add to make this happen?
Thanks.
I have this part already done:
add_theme_support(‘avia_template_builder_custom_css’);
Hi Micheal0424!
Assuming you add a class to the form called “my_class” then this is the CSS you will want to use.
.my_class input, .my_class label, .my_class select {
color: red !important;
}
Regards,
Elliott
Is it possible to only change the drop down font color in the class box?
The four:
Please Select
Jiu-Jitsu
Work Out
Jump
Those four would look better if they were a darker color and the top level fonts of the form stayed white.
Is that possible?
Thank you
Hi!
Add the following code to Quick CSS or custom.css
.home #av_section_1 .avia_ajax_form select{
background-color: #FFF;
opacity: 0.7;
color: #444;
}
Best regards,
Arvish
Worked like a charm, thanks!!