PC webstore Title and Hamburger icon off centre

Using Debut Theme for www.calamitycult.com

on the PC version on the site the Hamburger Icon (Top Left) and Calamity cult Logo (Top Center) are off center

unsure what to change in the codes

hello Rogue_johnson

go to online store > themes > actions > edit code

in the theme.css file, add this at the end of it

.site-header__mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}
1 Like

Hamburger icon is corrected although the Calamity cult is to the left

add this code below the previous one

site-header__logo-image {
   margin: 0 auto;
}

issue still there

how would that code look complete or just paste it at the end?

paste at the end of the file

I’m sorry, I didn’t notice that I sent you without the dot (.) Before site-header__logo-image, just add this dot and it should work

issue remains still

just figured the problem. Replace the previous code with

.site-header__logo-image {
   margin: 0 auto !important;
}
1 Like

.site-header__logo-image {
margin: 0 auto !important;
}