Hi @fatema313,
I tried it but it changes the font color of the sticky menu too. Is there a way I can change that?
Try adding this CSS code to set styles for menu links in sticky menu:
.home .float-header #mainnav ul li a,
.home .float-header #mainnav ul li a:active,
.home .float-header #mainnav ul li a:visited {
color: #fff000;
}
.home .float-header #mainnav ul li a:hover {
color: #6eaa16;
}
how can I can the font color of the menu on all pages except the front page?
You’ll need to exclude ?.home selector. For example:
#mainnav ul li a,
#mainnav ul li a:active,
#mainnav ul li a:visited {
color: #ff0000;
}
#mainnav ul li a:hover {
color: #fff000;
}
Hope this reply helps. Thank you!