This topic has 9 replies, 4 voices, and was last updated 9 years, 10 months ago ago by Robert Hall
Hello,
When you click on a product the add to cart button you can’t read because black letters and black background how do I change this.
Thanks
I just noticed page numbers are doing the same thing.
Hello,
please clear your browser cache and check your site.
Regards,
Stan Russell.
Should I be putting my extra custom.css code in my child themes style.css?
Also how do I change the color of the text on the mobile navigation?
Is there a way to change the color of the mobile navigation background and dropdown?
Thanks for the best support!
James Ewers
Hello,
If you’re using child theme you need write your style modifications in style.css of the child theme.
To change menu items color on mobile add this code to style.css of your child theme or custom.css of the parent theme:
.et-mobile-menu li a {
color: #000;
}
Change color value to yours.
And this code for background:
@media (max-width: 480px) {.st-menu {
background-color: #1A1A1A;
}}
.et-mobile-menu li > ul {
background-color: #2C2C2C;
}
Thank you.
Regards,
Eva Kemp.
It looks great for phones how would I change the colors on tablets?
Thanks
James
Hello,
Please add this code:
@media (max-width: 979px) {.et-mobile-menu li a {
color: #000;
}
{.st-menu {
background-color: #1A1A1A;
}
.et-mobile-menu li > ul {
background-color: #2C2C2C;
}}
Thank you.
Regards,
Eva Kemp.
I add that code and it still left black background with black letters.
Hello,
Please add this code into custom.css file.
.st-menu .nav-wrapper .st-menu-content{
background: #FAEFE3;
}
Don’t forget clear cache your site and browser.
Regards,
Robert Hall.
You must be logged in to reply to this topic.Log in/Sign up