Hello Everyone!
I am using the Shopify Dawn Theme. I want to keep the Black Friday menu text red in desktop and mobile mode. Please help me. Thank you in Advance.
Store Url: https://delicious-fruits-vegetables.myshopify.com/
Password: Admin
Hello Everyone!
I am using the Shopify Dawn Theme. I want to keep the Black Friday menu text red in desktop and mobile mode. Please help me. Thank you in Advance.
Store Url: https://delicious-fruits-vegetables.myshopify.com/
Password: Admin
You just need to follow these steps:
And past that CSS Code:
header.header .header__inline-menu ul.list-menu>li:nth-child(2)>a.header__menu-item.header__menu-item.list-menu__item.link.link--text.focus-inset { color: red !important; }
I hope this solution works for you!
If it does, please Like It and Mark It As A Solution, or support me by Buying Me A Coffee to keep me going!
Hello, @dreamtechzone_5
a[href="/collections/special-products"] span {
color: red !important; /* Correct way to make the text red */
}
Thanks!
Hello Sir! Are you there? Please help me. Thank you.
@dreamtechzone_5 I have sent you code
Thanks!
Thank you. This code worked in desktop mode. But it is not working in mobile mode. Is it possible to change the color of the menu in mobile mode?
header.header .header__inline-menu ul.list-menu>li:nth-child(2)>a.header__menu-item.header__menu-item.list-menu__item.link.link–text.focus-inset { color: red !important; }
Hello,
@media (max-width: 768px) { /* For screens 768px or smaller */
a[href="/collections/special-products"] span {
color: red !important; /* Mobile par bhi text red hi rahega */
}
Thanks!
When I change the text it doesn’t work.
Hlw @dreamtechzone_5
We have gone through your problem and found a solution.
Solution:
You can follow these steps to achieve your result
Go to online store->Edit code->component-menu-drawer.css file
.menu-drawer__navigation ul.list-menu > li:nth-child(2) > a.menu-drawer__menu-item.list-menu__item.link.link--text.focus-inset {
color: red !important;
}
Try this one
@media (min-width: 768px) { /* For screens 768px or smaller */
a[href="/collections/special-products"] span {
color: red !important; /* Mobile par bhi text red hi rahega */
}
Thank you very much. It worked.