Solved

How do I change the colour of my "shop" button text when the drop down menu is open? In Brooklyn.

BNasso
Tourist
4 0 1

8PvbtIXQ.jpeg

I'm struggling to change the font colour of my "shop" button when it is hovered over, I am using the Brooklyn theme. My background colour is usually black but because the text is black the shop button cannot be seen when the drop down menu is down this why it is seen in grey in my attached photo. I've searched through many articles for days, ay help would be greatly appreciated.

Accepted Solution (1)

Alex_Lam
Shopify Partner
94 30 26

This is an accepted solution.

This should work, just paste it at the end of your theme.scss and replace #ffffff with the hex code of your desired colour.

 

.site-nav--has-dropdown:hover > a {
    background-color: #ffffff;
}
Is your store fast enough? Compare your store's speed against hundreds of others for free with our benchmarker - https://www.rvere.com/

View solution in original post

Replies 2 (2)

Alex_Lam
Shopify Partner
94 30 26

This is an accepted solution.

This should work, just paste it at the end of your theme.scss and replace #ffffff with the hex code of your desired colour.

 

.site-nav--has-dropdown:hover > a {
    background-color: #ffffff;
}
Is your store fast enough? Compare your store's speed against hundreds of others for free with our benchmarker - https://www.rvere.com/
BNasso
Tourist
4 0 1

Your a legend, thank you!