Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- The topic ‘Contact form title and button colour’ is closed to new replies.
Hiya,
Is it possible to make the Contact form title a smaller font and not bold?
font-size: 15px;
font-weight: 300;
and also change the colour of the form button (Have it different from the set link colour)
Thanks!!!
Hey sineadh!
Please use this on Quick CSS:
#top form h3 {
font-size: 15px;
font-weight: 400;
}
Use this to change the color of the submit button:
.main_color input[type='submit'] {
background: red;
}
Regards,
Ismael
great thanks.