For whatever reason, I’m having a hard time cleaning up my main menu and the sub level links associated with it. My main menu items look pixelated and everything in the sub level menu looks plain.
How do I prevent the main menu links from looking pixelated and shadowed?
Also, how do I make the sub level menu “box” a different color or transparent instead of plain white? I’d also like to have divider lines in between each of the sub level menu items.
Thanks!
Hey thekingschurchlakeland,
I can’t see any low resolution like you are describing on my end, please post a screenshot of the problem.
You can change the background of the submenus using this CSS:
.sub-menu {
background-color:transparent !important;
}
You can add dividers by adding this CSS:
.sub-menu li a {
border-bottom:1px solid #ddd !important;
}
Best regards,
Rikard