Hi there,
I am trying to change the Colour of the text “Holiday” only in the main menu to #A3B18A
and to keep the rest as is.
![]()
Hi there,
I am trying to change the Colour of the text “Holiday” only in the main menu to #A3B18A
and to keep the rest as is.
![]()
Hi @andrew72
You can achieve adding this CSS in you code
You need to follow these steps:
Past this CSS Code their
header .header__inline-menu ul li:nth-child(2) .header__menu-item {
color: #A3B18A;
}
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 @andrew72
.list-menu.list-menu--inline [href="/pages/holiday-shop"] {
color: #A3B18A;
}
Output
Hello,
a[href="/pages/holiday-shop"] {
color: #ff0000; /* Font color change */
font-weight: bold; /* Make it bold */
text-decoration: underline; /* Add underline */
}
Thanks!
Hello @andrew72
[href="/pages/holiday-shop"] .header__active-menu-item {
color: #A3B18A;
}
That is great thank you!
Is there a code line that also transfers this to work in mobile also?
Currently it didn’t transfer.
Hello @andrew72
.menu-drawer__menu.has-submenu.list-menu [href="/pages/holiday-shop"] {
color: #A3B18A;
}