Brooklyn theme How to change color of single side menu item

Hello!

I would like to change the color of the “HIPER PROMOCJE” to have the red background with white text, and add hover ( green background and white text)

I want it to work both on desktop and mobile.

Could somebody help me?

Hello There,

Please share your store URL and password.
So that I will check and let you know the exact solution here.

https://bingospa.myshopify.com/

No password

Hi @ZestardTech , have You found the solution?

hii, @MorganBlack
Paste this code on top of the timber.scss file.

li.mobile-nav__item:nth-child(3) a:hover {
    background-color: green !important;
}

li.mobile-nav__item:nth-child(3) a {
    color: white !important;
    background-color: red !important;
}

Thank You.

hello @MorganBlack

please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.

.mobile-nav li.mobile-nav__item:nth-child(3) a:hover {
    background-color: #048a04 !important;
}

.mobile-nav li.mobile-nav__item:nth-child(3) a {
    color: #ffffff !important;
    background-color: #f90505 !important;
}

Thank You for help :slightly_smiling_face: