Posted: August 20, 2013 at 3:26 pm
|
When you view events on my calendar (http://paulpehrson.com/event-calendar/) and yhou click to show a specific event, the “register” button is so greyed out that I can’t read it on my screen. It looks white. This doesn’t seem to be affected by the ThemeRoller jQuery. Also seemingly unaffected by ThemeRoller is the background color of the text boxes for “First Name”, “Last Name”, and “Email” which are almost impossible to see on my screen. Oddly enough, the “Promo Code” box is obvious. It looks fine. EE v. 3.1.31.1P Plugins: Akismet by Automattic version 2.5.9, |
|
Oddly enough, the unreadable button on the calendar (first issue) seems to be an IE issue. The button looks okay in FF and Chrome, but not IE (which I was using for testing, b/c I’m not logged in to my WP back end in IE). |
|
On the registration page, the problem is the rule: .required { color: #c00; border: 0; } coming from http://www.paulpehrson.com/wp-content/themes/canvas5.2.7/css/woocommerce.css line 1037. |
|
So, sorry, dumb (newbie) question, but where do I add different CSS so I can fix that, but not have my changes overridden with the next update of EE? |
|
You could use a plugin such as My Custom CSS (http://wordpress.org/plugins/my-custom-css/) to insert a rule such as: .event_form_field .required { border-width: 1px; border-style: solid; } That rule from woocommerce is still turning the border red. To turn it back to grey, you could add: .event_form_field .required { border-width: 1px; border-style: solid; border-color: #ccc #efefef #efefef #ccc; } |
The support post ‘Color of Submit button, form fields’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.