Header custom CSS
1, Header Nav padding
.nc-MainNav1 {
padding-top: 20px;
padding-bottom: 20px;
}
/* Change 20px with number you want */
2, Header Logo Size
@media (min-width: 640px) {
header .site-logo img {
max-width: 200px;
max-height: 70px;
}
/* Change 200px and 70px with number you want */
}
3, Hidden Sign-in Button
.nc-MainNav1 div[data-ncmaz-open-modal="ncmaz-modal-form-sign-in"]{
display: none;
}
4, Change the font-size navigation item
.site-header-nav-main #primary-menu-list>.menu-item>a {
font-size: 16px !important;
}
Last updated
Was this helpful?