I get that I can change the submit button if I update the image file for this, but how can I easily change this so that I can update the text and change the background color instead of replacing the button image?
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .signupForm .signinForm input[type="submit"]{ background:red; border-radius:4px; } .signupForm .signinForm input[type="submit"]:hover{ background:red; opacity:.8; } Thanks & Regards Gourav Shrivastava
Hello, For this go to the Theme directory > functions > infoway_front.php And change it from there. This will fulfill your requirement.
Thanks, I figured it out by grepping for "Send Your Message" recursively and found out where to change it. I appreciate your help though!
All very helpful, but this did not fix the form format on the secondary pages where the form appears in a widget - how can I update that - form both the text and the background color?
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .signupForm .heading { background: black; color: red; } .signupForm { background: red; } In place "black" and "red" you can put your color or color code.