Is there a way to exclusively align my logo to the left for mobile? As it looks weird central with it being cramped up with the icons on the right (I’m open to workarounds), but I do not want it to be aligned on the left for desktop ideally
Mobile view
Desktop view
Hi @CursedRags , go to base.css and add the following code:
@media (max-width:768px){
.header {
grid-template-areas: 'heading left-icon icons' !important;
}
}
Result:
Thanks for the suggestion but it seems to decrease the size of the logo quite a lot, is there a way to retain the size?
@CursedRags , add this code:
@media (max-width:768px){
.header {
grid-template-areas: 'heading left-icon icons' !important;
grid-template-columns: 2fr 1fr 1fr !important;
}
}
Hi @CursedRags
Check this one
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media only screen and (max-width:749px){
.header {
grid-template-areas: 'heading right icons' !important;
}
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Awesome thank you so much!
One last thing I’d maybe like is the ability to re-size it if possible? Might be nice to have it a little bit bigger