Mobile version edit

Topic summary

A user is seeking help with two mobile-specific customizations for their Shopify store:

Logo Positioning:

  • Wants the logo to remain left-aligned on mobile view
  • Provided reference images from the Jacquemus website showing the desired layout: logo on the left, navigation elements on the right

Bottom Menu Optimization:

  • Looking to convert bottom menu links into a dropdown/folder format
  • Goal is to save space and create a sleeker mobile appearance

The request involves CSS customizations for mobile responsiveness. No solutions have been provided yet, and the discussion remains open for community input.

Summarized with AI on October 25. AI used: claude-sonnet-4-5-20250929.

Hi guys,

I need help making my logo stay on the left when in mobile version - i have uploaded an image from the jacquemus website of how i want it to look.

I also want to know if anyone knows how on mobile version (only) to turn the bottom menu links into a drop down folder - to save room and make it look more sleek when on mobile.

Thanks!

sorry - full image from jacquemus website (logo on left, everything else on right)

**WolfieVoir, let me know if you are get it to this level so that i can send the code to paste for you
**
By default, many Shopify themes (like Dawn) center the logo on mobile.
If you want the logo to stay on the left, you can override that with a simple CSS tweak.

:white_check_mark: How to do it:

  1. Go to your Shopify Admin → Online Store → Themes → Edit code

  2. Open your base.css, theme.css, or global.css file (it’s in the Assets folder).

  3. Add this at the bottom of the file:

Hi, yes i i can get to the base.css. What would the code be?

1 Like

This is the first code
/* Keep logo left-aligned on mobile */
@media (max-width: 749px) {
.header__heading, .header__heading-link {
justify-content: flex-start !important;
text-align: left !important;
}

.header__heading-logo {
margin-left: 1rem;
}
}

thank you for the code! unfortunately it didn’t seem to work for me! (menu still on left needs to be on right and logo on left only)

Thank you! what would the second code be?