I want to remove the burger menu and place the logo on the left side on the desktop view. Here is the link to my store and the password is saebot : https://www.loulouis.com/
Topic summary
A user wants to remove the hamburger/burger menu icon from desktop view and reposition the logo to the left side in the Ella Shopify theme.
Solutions provided:
- Edit the
header.liquidfile to make code changes - Add custom CSS to the theme’s stylesheet (
theme.scss.liquidorstyles.scss.liquidin the Assets folder)
Recommended CSS approach:
Add the following code at the bottom of the stylesheet:
@media only screen and (min-width: 768px) {
.hamburger-icon.icon-menu {
display: none;
}
.header-middle.logo.col-6.col-sm-4 {
position: relative;
right: 500px;
}
}
This hides the burger menu on desktop screens (768px+) and repositions the logo. A screenshot showing the expected result was shared. The discussion appears resolved with working CSS provided.
1 Like
For this you can edit header.liquid file and make changes in code there
Hi @Loulouis ,
I undertand that you want to remove the burger menu and place the logo on the left side on the desktop view.
- 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 “theme.scss.liquid” or “styles.scss.liquid” file, depending on which file your theme uses to store its CSS styles. (better you put in the theme.scss folder since it’s a header).
- At the bottom of the file, add the following CSS code:
- And Save.
@media only screen and(min-width: 768){
.hamburger-icon.icon-menu {
display: none;
}
.header-middle-logo.col-6.col-sm-4 {
position: relative;
right: 500px;
}
}
-
Result.
I hope it help.
