Change the background of the menu item if its on the current page

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.

1 Like

Hi @ridhi01

This is Mike from Omega

You can try my solution.

  1. Open Theme → Edit code

  2. 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

1 Like

wow thank you. this worked!