Submenu Spacing and background colour hover

Hi,

Is there a way that i can increase the spacing between the items in my navbars submenu (dropdown)? Also can i make the background of the individual menu item change colour on hover as opposed to the text. This websites menu is what I am trying to achive:

http://www.ninestilesacademytrust.org.uk/
(look under the academies drop down to see what i mean)

My site is: https://learningcommunitytrust.co.uk

thanks.

Hi There,

Thanks for writing in!

you can use custom CSS to do this.
Please add this CSS to your theme option -> Global CSS.

 .x-navbar .desktop .sub-menu a {
    padding: 10px 20px;
    border-bottom: 1px solid #ececec;  /*add your color for border*/
}
.x-navbar .desktop .sub-menu a:hover {
    background: #ccc !important; /*add your color for the hover*/
}

Hope this helps!

Hi @basanta

That is perfect!! Exactly what i wanted! Thank you so much :slight_smile: It works perfectly.

You’re welcome. Glad we could help.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.