So after I found a code to change my header to black, I needed to change my menu font color to white without changing the font color on the rest of the page. I used this code to do that:
/===== Change header, nav item, icons, footer items color - Feb 6, 2022 ======/
header.site-header h1,
header.site-header a,
header.site-header svg,
footer.site-footer small,
footer.site-footer a,
footer.site-footer svg {
color: #ffffff;
}
It changed all menu words except for ‘shop’, which is a drop down button. How can I change that to white to match the rest of the menu? Also, all the dropdown text is white and I’m not sure how to change it back to black. I would also like to change the hover color to a different color (it’s a dark grey).
Adding .site-nav__link to your list should make your “Shop” text white.
Adding .site-nav__link:hover to your style sheet should allow you to change your hover color. If you wanted it to be the pink in your Shop Now button for example, you could use.
.site-nav__link:hover {
color: #ff5cc2;
}
Adding the below to your style sheet should make your submenu links black again
Hi again! So I was looking at my website on mobile and noticed when I click on the dropdown button it is all white like before and will turn black if I hover. It was like the last problem I had with desktop but only the mobile version this time. I would really appreciate your help with a code! Thanks is advance