Hi Shopify Gurus,
My website is www.pawtietime.com
I wish to change the background of the menu item to black if it’s active on that page. Is there a way to do that?
Example, on “HOME” it becomes black background with white text. but the rest aren’t.
Hi Shopify Gurus,
My website is www.pawtietime.com
I wish to change the background of the menu item to black if it’s active on that page. Is there a way to do that?
Example, on “HOME” it becomes black background with white text. but the rest aren’t.
Hi @ridhi01
This is Mike from Omega
You can try my solution.
Open Theme → Edit code
Open Assets/ base.css and paste these codes in bottom of file:
a[aria-current="page"] {
background: #000;
}
a[aria-current="page"] span {
color: #fff;
}
Hope my answer will help you
Mike from Omega
wow thank you. this worked!