Modify Menu Colors
This support request was posted in Smart by gmwebhouse
- gmwebhouse October 3, 2017 at 2:16 pm
Hi,
As per title description, I’m trying to modify the Menu color (links of the main menu specifically).
I tried to modify it into the style.css section but nothing happens:.2 – Menus.
========================================================================== */
/**
* Styles for wp-pagenavi compatibility.
*/
html .wp-pagenavi {
margin-top: 30px;
}html .wp-pagenavi span, html .wp-pagenavi a {
border: none;
margin: 0 10px 0 0;
padding: 0 16px;
font-family: “Poppins”, Arial, sans-serif;
font-weight: 200;
font-size: 16px;
background-color: transparent;
color: #ba0000;
}I modified only the item “color”
Could you please advice me with a solution?
Thanks in advance
MicheleJuanfra Aldasoro October 3, 2017 at 2:44 pmHi Michele,
Thank you for writing, I hope you are doing well.
Please do not edit the main style.css file for customization, because you will lose the changes every time you update the theme. There are other alternatives to add or edit CSS code, and they can be found here: https://nicethemeswp.com/article/theme-customization/
What we normally recommend is using a child theme.
Back to your main question, would you like to edit the default color or the hover color?
Thank you,
Juan.gmwebhouse October 3, 2017 at 3:54 pmHi Juanfra thank you for the prompt response!
I would like to change the default color.Thank you
MicheleJuanfra Aldasoro October 3, 2017 at 8:38 pmHi Michele,
Thanks for the follow-up.
You can try adding the following custom CSS:
#header-inner #navigation li a { color: red; }
You can change the value red for any hexadecimal color.
Best,
Juan.
You must be logged in to reply to this topic.