Hello.
I would like that my logo on mobile version is centered, the menu on the left and cart on the right.
Would also like to remove search icon for both mobile and desktop.
I use debut theme.
Goal: In the Debut theme, center the logo on mobile with menu on the left and cart on the right, and remove the search icon on both mobile and desktop.
Recent updates:
Proposed solution:
Open questions / status:
Hello.
I would like that my logo on mobile version is centered, the menu on the left and cart on the right.
Would also like to remove search icon for both mobile and desktop.
I use debut theme.
Hi Edgars,
For sure, I can help. First, let me read your mind and see what the preview link of your site is
.
JK please share your preview link first
Hello @Edgars_Rudzitis ,
It’s possible but needs customization.
We need to make html adjustments.
If you need help with code part you can drop me an email.
You can find the email in the signature below.
Thanks
ohh this is not an easy fix, can you share your header.liquid file and I might be able to change the structure of the HTML to get what you need
Should i copy the code here?
This is doable, but you’ll need a developer to make it dynamic. Let me know if you’re interested. Thanks!
To center your logo on the mobile version while keeping the menu on the left and the cart on the right in the Debut theme, you can add custom CSS like this:
css
Copy code
.site-header__logo { margin: 0 auto; } .site-header__menu { float: left; } .site-header__cart { float: right; }
To remove the search icon for both mobile and desktop, add the following CSS as well:
css
Copy code
.site-header__search { display: none; }
This will help you achieve the desired layout!
Sorry for a dumb question.. where to put these codes? ![]()