Hi folks,
I am trying to remove the margin-top of my logo on mobile and remove some of the padding on the menu items, and just generally make the navbar take up a bit less real estate.
It currently looks like this:
But I’m trying to get it to look a bit more like this:
I’ve used developer tools to try and identify the proper selectors and have constructed the following media query which I added to the css under theme options:
@media (max-width: 480px) {
.x-navbar .mobile .x-nav li > a {
margin: 0 0 11px;
border: 1px solid;
padding: 0.25em 0.95em;
color: #fff;
background-color: transparent;
}
.x-brand {
margin-top: 0px;
font-family: "Montserrat",sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 700;
letter-spacing: 5em;
text-transform: uppercase;
color: #434f5b;
}
.x-navbar-inner {
min-height: 90px;
}
}
However the changes are not enacting when I save the css, any ideas why this is happening? I’m under pressure to try and get this sorted.
Thanks in advance,
Stephen