- This topic has 5 replies, 3 voices, and was last updated 11 years ago by .
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eMember › WP eMember General Questions › Form builder addon – changing color of registration form
Tagged: form builder
I purchased the custom form add-on and would like to customize the color of the form. Is this possible and if so, how would I accomplish this.
Thanks,
Please post a link to the registraiton page. What color do you want to change and which part of the form?
here is the link: [http://gs.hallmarkemblems.com/register/]
I would like to change the gray background color and the gray section color to shades of green that would go better with the header.
thanks,
angie
Grab this plugin:
http://www.tipsandtricks-hq.com/wordpress-custom-css-plugin-6413
Then add the following CSS code there to see how it works:
.visual-form-builder fieldset{
background-color: green;
}
.vfb-section-div{
background-color: black;
}
That should show you how you can add your custom CSS.
Thank you, that worked perfectly. Now I’m trying to change the color of the text in the fieldset and division fields to black. Tried adding the code: font-color: black, but that did not work.
Add this to the “.vfb-section-div”:
color: black;