i used this css code but is not working:
.x-navbar .desktop .sub-menu a {
font-size: 15px;
color: #5e9deb;
Hi @Moshomedia,
Thank you for reaching out to us. Your CSS seems correct and it works fine on my local setup, however you can replace your code with the following:
.x-navbar .desktop .sub-menu a {
font-size: 15px !important;
color: #5e9deb !important;
}
If it doesn’t work then there could be a syntax error in your custom CSS, please check your CSS here http://csslint.net/ and remove errors to make the above code work.
Hope this helps!
Thanks is working but i want the dropdown menu background to change with another colour
Hello @Moshomedia,
To change the background color of the submenu, please use this code:
.x-navbar .desktop .sub-menu {
background-color: red;
}
I use red so that you can easily spot the changes. Feel free to change the background color.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.