How can I center my logo using the Studio theme?

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.

iriethelabel.com

@ITL1

Could you provide me store URL? I should be able to answer your question.

Yours faithfully!

iriethelabel.com

@ITL1

yes, please try this code

  1. Go to Online Store->Theme->Edit code
  2. 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;
}
}