Hey there,
I have been looking through the CSS on a friends site for this script for the past 2 hours and i just cant figure it out.
How can i change the text colour of the form's title and description?
Started 3 months ago by chawkins | 2 posts |
Hey there,
I have been looking through the CSS on a friends site for this script for the past 2 hours and i just cant figure it out.
How can i change the text colour of the form's title and description?
You can edit this CSS code:
#main_body .form_description
{
border-bottom:1px dotted #ccc;
clear:both;
display:inline-block;
margin:0 0 1em;
}
simply add the color property there, for example:
#main_body .form_description
{
border-bottom:1px dotted #ccc;
clear:both;
display:inline-block;
margin:0 0 1em;
color: red;
}MachForm Founder
You must log in to post.