I want my logo to move to the left side when the permanent sticky header is active, when the user scrolls down as shown in the video below I want my logo to be placed on the left side in the highlighted area,
How can I achieve this?
I think this can be done using a javascript function, either way any help is much appreciated!
Thank you 
Hello @justauser
Please follow the steps below after logging into the Shopify admin:
-
Go to your Shopify Admin panel.
-
Click on Online Store > Themes.
-
Find the live theme and then click Actions > Edit code.
-
Search base.css
-
Insert the provided CSS code at the end of the file and save the changes.
@media only screen and (min-width: 991px) {
.shopify-section-header-sticky details-modal.header__search {
display: none;
}
.shopify-section-header-sticky.scrolled-past-header header.header{
grid-template-areas:"heading icons icons"
"navigation navigation navigation";
}
.shopify-section-header-sticky.scrolled-past-header header.header .header__heading {
display: flex;
width: 100%;
}
}
If you still need any changes . So please share your store URL and Password.
Please hit Like and Mark it as a Solution if you find our reply helpful.