Im using Studio theme and I’m trying to figure out how to keep my logo in the center and have my menu on the left
1 Like
Hi,
Please share your store URL and if your store is password protected then also provide password too.
Thank you.
yes, please try this code
- Go to Online Store->Theme->Edit code
- Asset->/base.css ->paste below code at the bottom of the file.
@media screen and (min-width: 990px) {
.header:not(.header--middle-left) .header__inline-menu {
position: absolute;
left: 0;
top: -60px;
margin-top: 0px !important;
}
.header--has-menu:not(.header--middle-left) {
position: relative;
}
.header:not(.header--top-center) *>.header__search, .header--top-center>.header__search {
display: none;
}
.header:not(.header--top-center)>.header__search, .header--top-center *>.header__search {
display: flex;
}
}