Viewing 4 reply threads
You must be logged in to reply to this topic.
The demo for Tower demonstrates the ability to have the background (in addition to the link color) change on hover for menu subitems. I don’t see any option to set what this hover color is. Can you tell me what settings I need to work with or what custom css I need to add to duplicate what is in the demo.
Thanks!
Erin
Hello,
There is no option to change the on hover color of links, but you can add this custom css code to edit it:
a:hover {color: #666;}
Change the color to your wish.
Let us know.
Best regards!
Hi I don’t think you understood what I’m saying. I want to replicate what you show in your Tower theme demo where the link text color changes to the primary color and the background color of the menu item changes as well.
Hello,
Sorry for the misunderstanding. Please add this code into your custom css box:
nav .menu li a:hover {
color: #e5af5a !important;
text-decoration: none;
}
nav .menu li > ul.sub-menu li:hover {
background: rgba(255,255,255,0.05) !important;
}
Change the values to your wish.
Best regards!
You must be logged in to reply to this topic.