I would like to add a specific style for each item of my header menu. I have 4 items and each of them should have the standard style but with a specific color. For example: Green, Red, Blue, Black as underline.
Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):
/* for transparent header */
#header-outer[data-lhe="animated_underline"].transparent #top nav > ul > li:nth-child(1) > a:after {
border-color: #f1564f!important;
}
#header-outer[data-lhe="animated_underline"].transparent #top nav > ul > li:nth-child(2) > a:after {
border-color: #ff1053 !important;
}
#header-outer[data-lhe="animated_underline"].transparent #top nav > ul > li:nth-child(3) > a:after {
border-color: #3452ff !important;
}
#header-outer[data-lhe="animated_underline"].transparent #top nav > ul > li:nth-child(4) > a:after {
border-color: #50d18d !important;
}
/* for normal header */
#header-outer[data-lhe="animated_underline"] #top nav > ul > li:nth-child(1) > a:after {
border-color: #f1564f!important;
}
#header-outer[data-lhe="animated_underline"] #top nav > ul > li:nth-child(2) > a:after {
border-color: #ff1053 !important;
}
#header-outer[data-lhe="animated_underline"] #top nav > ul > li:nth-child(3) > a:after {
border-color: #3452ff !important;
}
#header-outer[data-lhe="animated_underline"] #top nav > ul > li:nth-child(4) > a:after {
border-color: #50d18d !important;
}
Hi,
I would like to add a specific style for each item of my header menu.
I have 4 items and each of them should have the standard style but with a specific color. For example: Green, Red, Blue, Black as underline.
Thanks for your assistance
Hey,
Please provide the page url so that i can write up the custom css for whats possible.
Thanks
ThemeNectar Support Team
Oups, I forgot there are multple designs, here you go: https://saadl.com/alajournee/
Hey Again,
Right now there is no link assigned.
Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):
Thanks
ThemeNectar Support Team