How do I change the Contact Us font colour?

Travis

Active member
Licensed customer
Does anyone know which Colour code to change to make the font white on the contact us form?
Have a look at ncisaddict.com/forum and try the contact us link to see what I mean.
 
Do you mean on the actual overlay form itself and not in the footer?

That is controlled by:

HTML:
.xenOverlay .formOverlay .heading {
background-color: #DA7E15;
border: 1px solid #111;
border-bottom-left-radius: 5px 5px;
border-bottom-right-radius: 5px 5px;
border-top-left-radius: 5px 5px;
border-top-right-radius: 5px 5px;
color: #101010;
font-size: 12pt;
font-weight: bold;
margin-bottom: 10px;
padding: 5px 10px;
}

P.S. I split your post off from the tips & tricks thread and moved it to general support.
 
That is controlled by this:

HTML:
.xenOverlay .formOverlay .textCtrl {
background-color: black;
border-color: #FEFDFD;
color: #101010;
 
Which template is it?
You do know you can search the templates?

If you enter ".xenOverlay .formOverlay .textCtrl" in the "Template Contains" field it will return with xenforo_overlay.css as the only template containing that particular string.
 
Back
Top Bottom