This topic has 10 replies, 2 voices, and was last updated 8 years, 4 months ago ago by Olga Barlow
Hello,
i would like to know how can i change the spacing on the main menu that is on hover, the drop-down menu is opening way down. I have found and changed the “TOP” on the css style but it’s not working, because it has an element on the div it self and i can’t seem to find it so i can change it. I want to make that number 30px
i’m sending you an image.
Hello,
Add the following code in your custom css ( Theme Options > Styling > Custom CSS)
.nav-sublist-dropdown:before {
top: -50px;
height: 60px;
}
Regards
Hello Olga it’s not changing anything no matter what numbers i input.
I also want to change the color that is on the “hover” of the mouse on the drop-down it self.
Hello,
Oh, sorry, I thought you have the problem with drop-down and can’t hover over it. If you want to change only the position of drop-down remove previous code and add the following:
.nav-sublist-dropdown {
top: 60px !important;
}
Regards
OK Thank you Olga.
One more thing, how can i change the color of the on hover inside the dropdown ?
Do you want to change over of the link or hover of the link background?
Regards
I want to change the color when the cursor is on an option on the dropdown
Hello,
Add the following code with your custom colors:
.item-design-dropdown .nav-sublist-dropdown ul > li > a:hover {
color: #9b9b9b;
background-color: #f7f7f7;
}
Regards
Thank you Olga! That worked!
You are welcome!
Regards
You must be logged in to reply to this topic.Log in/Sign up