Trying to change the color of the nav menu just for the homepage in Shopify but couldn't find any solution to it. I tried to call #MainContent(homepage) and header classes but nothing happened.
CodePudding user response:
Try this:
- Go to
Themes - Click
Customizeon your main theme - Mouse over a block of text on the page and then click the
button, or theAdd Blockbutton (Don't clickAdd Section). - From the dropdown, select
Custom HTML - Paste this in the
HTMLfield:
<style> nav * { color: red !important; } </style>
