How do I change the Contact Us font colour?

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;
 
Top Bottom