NiceThemesModify Menu Colors – NiceThemes http://nicethemeswp.com/forums/topic/modify-menu-colors/feed/ Mon, 21 Apr 2025 08:47:59 +0000 http://bbpress.org/?v=2.5.12-6148 en-US http://nicethemeswp.com/forums/topic/modify-menu-colors/#post-34276 <![CDATA[Modify Menu Colors]]> http://nicethemeswp.com/forums/topic/modify-menu-colors/#post-34276 Tue, 03 Oct 2017 14:16:40 +0000 gmwebhouse 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
Michele

]]>
http://nicethemeswp.com/forums/topic/modify-menu-colors/#post-34278 <![CDATA[Reply To: Modify Menu Colors]]> http://nicethemeswp.com/forums/topic/modify-menu-colors/#post-34278 Tue, 03 Oct 2017 14:44:59 +0000 Juanfra Aldasoro Hi 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.

]]>
http://nicethemeswp.com/forums/topic/modify-menu-colors/#post-34281 <![CDATA[Reply To: Modify Menu Colors]]> http://nicethemeswp.com/forums/topic/modify-menu-colors/#post-34281 Tue, 03 Oct 2017 15:54:03 +0000 gmwebhouse Hi Juanfra thank you for the prompt response!
I would like to change the default color.

Thank you
Michele

]]>
http://nicethemeswp.com/forums/topic/modify-menu-colors/#post-34286 <![CDATA[Reply To: Modify Menu Colors]]> http://nicethemeswp.com/forums/topic/modify-menu-colors/#post-34286 Tue, 03 Oct 2017 20:38:30 +0000 Juanfra Aldasoro Hi 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.

]]>