Reduce space between menu items on a fixed left navbar integrity stack

Hi see attached screenshot of my site https://gonetworking.com.au/

It is on the integrity stack with a fixed left navbar. I would like to reduce the space between all the menu items (marked in red to show what I mean.)

The links alignment is all set to 1px. See attached screenshot.

Let me know what else I can do to reduce the space.

Hi there,

Thanks for writing in.

It’s due to stack CSS default to fixed right or left navigation, please add this CSS to your global custom CSS

.x-navbar-fixed-left .desktop .x-nav, .x-navbar-fixed-right .desktop .x-nav {
    margin-top: 0px;
}
.x-navbar-fixed-left .desktop .x-nav>li>a, .x-navbar-fixed-right .desktop .x-nav>li>a {
    text-align: center;
    padding: 5px 35px;
}

Hope this helps.

Worked perfectly :slight_smile: Thanks

You’re welcome.

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