hi great team , i use the blue button shortcode and i want to make the submit button of the contact page button contain the same css but i didnt find where i can do that
http://hpssign.com/en/contact/
also i use IP Form plugin to built complicated form , see
http://hpssign.com/en/order-inquiry-form/
and i want the star of required field to be red,it is red in the preview of contact form but in the page as you see turned grey
also if i can make submit button as in blue shortcode,i try but it seem different
thanks
Hi sahussain,
You can change the button color for that page specifically by adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#top.page-id-1167 .ajax_form .button {
background-color: #333;
}
Change that hex color to whatever color you want the button to be.
For the red *, use:
#top .iphorm-required {
color: red;
}
Regards,
Devin