Tagged: button, Buttons, enfold, IE8, Internet Explorer 8, text shadow
-
AuthorPosts
-
July 29, 2013 at 9:17 pm #26905
Hello,
Once again, Enfold is a great theme!
Cross-browser testing went really well. Only one thing I’d like to bring up…
In IE8, the buttons are only showing the outline, not the fill color. And since the text is colored white, it just looks like a blank rectangle. I’m guessing it has something to do with IE8 not wanting to render the gradient.
http://stage.stankimballdds.com
It’s very possible that I inadvertently changed something in the CSS that’s causing this. But I don’t recall changing any of the button settings.
When you get a moment, please let me know if there’s an easy fix.
Thank you!
July 30, 2013 at 5:51 am #132055Hi,
IE8 doesn’t support the property background-color. Please add this on your custom.css or Quick CSS
.msie8 .main_color .avia-color-theme-color {
background: #f26422;
}or just use:
.main_color .avia-color-theme-color {
background: #f26422;
}Regards,
Ismael
August 15, 2013 at 6:18 pm #132056Hi,
Thanks for the response!
Unfortunately the first one didn’t work, but the second one works. And I actually like the buttons solid instead of gradient.
Is there a quick CSS code that would make the button text white with no text-shadow?
August 16, 2013 at 3:18 pm #132057August 16, 2013 at 5:13 pm #132058Oh sorry. We pushed it live.
August 17, 2013 at 4:48 am #132059Hey,
You can add this on your custom.css or Quick CSS to make the button text white:
.avia_iconbox_title {
color: white;
}And this to remove the text shadow:
body .avia-button.avia-color-theme-color, body .avia-button.avia-color-theme-color:hover {
text-shadow: none;
}Regards,
Ismael
August 21, 2013 at 5:20 pm #132060Hi,
Thanks again for the response!
The first code worked nicely, to make the button text white.
But the second one, to remove the drop shadow, didn’t have any effect.
August 22, 2013 at 3:39 am #132061Hi,
I inspect your website and I can see that the text-shadow property on the specified selectors is applied correctly.
body .avia-button.avia-color-theme-color, body .avia-button.avia-color-theme-color:hover {
text-shadow: none;
}Can you point us to the elements where you want to remove the text shadows? A screenshot will help.
Regards,
Ismael
-
AuthorPosts
- The topic ‘Buttons in IE8’ is closed to new replies.