How do I add a secondary colour on hover on drawer sidebar menu? (Prestige Theme)

I’d like to add a secondary colour when hovering over links on my sidebar drawer menu, how do I do this? (prestige theme)

Hi @PM999 , Can you kindly share your store link (with the password, if any) with us? We will check it and suggest you a solution if possible.

Can I PM you?

1 Like

Hi @PM999 ,
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid

Step 3: Insert the below code at the bottom of the file → Save

a.header-sidebar__linklist-button {
    transition: all 0.4s;
}

a.header-sidebar__linklist-button:hover {
    color: #e67e22 !important;
}

Here is result:

Hope this can help you,

If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you :heart_eyes:

1 Like