URL. WWW.PEAKSPORT.MX
THEME . GALLERY
hello I have this code but I want to change the place where the logo is located
right now it’s right in the middle
and I want it to be on the left side
and that it remains at the same height as the menu
@media(min-width: 1440px){
body .#main-nav-wrapper .#main-nav-link.@root {
width: 150px;
white-space: nowrap;
}
.#main-nav-menu > li:nth-child(3){
margin-right: 80px;
}
.#main-nav-menu > li:nth-child(4){
margin-left: 80px;
}
}
@media only screen and (max-width: 1439px) and (min-width: 992px) {
body .#main-nav-wrapper .#main-nav-link.@root {
padding: 1rem;
font-size: 0.9rem;
width: 115px;
white-space: nowrap;
}
.#main-nav-menu > li:nth-child(3){
margin-right: 40px;
}
.#main-nav-menu > li:nth-child(4){
margin-left: 40px;
}
}
@media(min-width: 992px){
body #MainHeader. @sticky .#main-nav-menu > li:nth-child(3){
margin-right: 0;
}
body #MainHeader. @sticky .#main-nav-menu > li:nth-child(4){
margin-left: 0;
}
body .#main-header-inner{
padding-bottom: 30px;
}
body .#main-nav-container {
margin-top: -77px;
}
}
Thanks!!!
