I've set up a form with multiple page breaks but the next buttons are black, how do I change the style of these?
this is my page
http://graphic-evolution.co.uk/store/wordpress/landscape-canvas/
I've set up a form with multiple page breaks but the next buttons are black, how do I change the style of these?
this is my page
http://graphic-evolution.co.uk/store/wordpress/landscape-canvas/
You should be able to drop this CSS snippet into your theme's stylesheet and edit accordingly. Right now this is getting inherited from a style selector in your theme. This should override it:
[css]
body .gform_wrapper .gform_page_footer .button {
background-color: #cccccc !important;
}
I am trying to move my 'next' and 'previous' buttons to the right.
The float:right worked however the last field before the button has a gf_right_third so it is lining up next to it. I also tried text-align: right.
You can find my form here:
http://www.thecivillawcenter.com/forms/
Also, I have some lines of text overlapping here: (Step 2)
http://www.thecivillawcenter.com/forms/#gf_4
This was not like this before I added page breaks.
Any help would be appreciated!