Hello,
I used this code to center the navbar:
@media (min-width: 980px) {
.x-logobar {
display: none !important;
visibility: hidden !important;
}
.x-navbar .desktop .x-nav > li.logo-menu-item > a {
text-indent: -99999px;
text-align: left;
width: 306px;
height:75px;
background: url(http://isomaxguard.com/wp-content/uploads/2020/07/isomaxguard-white.png) no-repeat center center;
background-size: contain;
}
The problem is that I need to make sure it stays centered and right now it is not.
Is there something I can add to it?