I’m trying to get my logo all the way to the left and my menu items all the way to the right for my header. Any way to do this?
Topic summary
A user is seeking help with header layout customization, specifically wanting to:
- Position the logo flush left
- Align menu items flush right
Another participant has responded requesting the store URL to provide specific guidance. The issue remains unresolved and awaiting further information.
Hello @Nxte
Please share your store address
Add this CSS in base.css file
.header–middle-left {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 10px;
}
.header__inline-menu {
justify-self: end;
}
Please add this code to Custom CSS in theme settings
@media (min-width: 750px) {
. header .header__inline-menu {
grid-area: icons;
justify-self: end;
}
}
Best regards,
Dan from Ryviu: Product Reviews App
Didn’t seem to work. Is there a specific place I need to put it?
My bad, it has a space in the code, so it doesn’t work. Please update the code
@media (min-width: 750px) {
.header .header__inline-menu {
grid-area: icons;
justify-self: end;
}
}
this worked thank you! also curious if there was a way to put the menu and the logo near the edge of the screen kinda like this?
The issue happen because your logo has top and bottom space to big, you re-design by reduce top/bottom space:
As @DitalTek mentioned, this issue is caused by the square logo of your store, which has blank space at the top and bottom. Please crop it to remove those spaces, then center the menu and the logo near the edge of the screen.
If you don’t know how to crop your log,o then download this file and update it to your logo
Did that, have to say much happier with it cropped. Thank you!
You are very welcome!



