Re: Contact Us CSS Styling
One way:
#contactUsDefault legend {color: #940303;}
#contactUsForm {border-color: #940303}
Re: Contact Us CSS Styling
Quote:
Originally Posted by
T3rr0rB13
Hi I am trying to change the styling of the form on this page:
http://luxvapes.ca/index.php?main_page=contact_us Basically I want to change the border color of the form to #940303 and the Text for the header of the form to #940303 as well. I can't seem to find the CSS code for this.
If this is a change you want to make site wide, and not only on one specific page, you can consider changing this in your stylesheet.css:
For the border- around line 96
FIELDSET {
padding: 0.5em;
margin: 0.5em 0em;
border: 1px solid #940303;
}
and the header - around line 102
LEGEND {
font-weight: bold;
padding: 0.3em;
color: #940303;
}