Where can I change the text-color from the menu in the Awake-theme.
Tobias
(7 posts)
(5 voices)
Where can I change the text-color from the menu in the Awake-theme.
Tobias
Hello Tobias,
Open and edit the style.css file located in the theme's folder. At the end of the file, add the following line:
.jqueryslidemenu li a { color:#f00!important; }
You might want to change #f00 accordingly.
If you'd also like to have a different color for the hover add the following line:
.jqueryslidemenu li a:hover { color:#f00!important; }
Let me know if this is what you were looking for and if this worked as intended for you!
Best Regards,
Dorian
Hello,
I've used this solution to change my menu's text color to white, but I'm wondering if there's a way to do this without changing the text color of my dropdown menu text. Can I change one without affecting the other?
Hello ssheehanbernard,
Try adding this in your style.css file,
.jqueryslidemenu ul ul li a, .jqueryslidemenu ul ul li a:link, .jqueryslidemenu ul ul li a:visited{ color: red !important; }
Thanks!
It's possible to have a differente color of the text in the sub menu? I want gray for the menu and red for the sub menu.
Thank's !
Grégoire
Hello gregoiregarneau,
Try navigating to Dashboard -> your theme -> General Settings -> Custom CSS and add this line,
.jqueryslidemenu a { color: gray; }
.jqueryslidemenu .sub-menu a { color: red; }
You must log in to post.