I am looking to move my logo all the way to the left of my mobile site and everything else to the right like the photo attached. I am using Symmetry theme but am willing to use Dawn.
All codes that I have entered in base.css or theme.liquid that I have found online, only work for the desktop and not my mobile site.
Hey To move your logo to the left of your mobile site and align other elements to the right, you’ll need to modify the CSS for mobile responsiveness in your theme files. Look for media queries targeting mobile devices and adjust the positioning of the logo and other elements accordingly. If you’re not comfortable with coding, consider reaching out to a Shopify developer for assistance.
I have tried copying and pasting code in (edit code) but nothing changed on my mobile site for some reason. I tried multiple different codes both in liquid and css
If pasted code isn’t affecting your mobile site in the Symmetry theme, ensure you’re targeting the correct CSS classes and applying the changes within appropriate media queries. If issues persist, consider reaching out to Shopify support or a developer for assistance
I recommend posting your request on platforms like Upwork or Fiverr, where you can find skilled Shopify developers. Describe your needs, and you’ll get bids from experts who can help you
If you found this helpful, you can buy me a coffee!
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: 767px){
.logo-area__left {
order: 3;
}
.logo-area__left {
flex: none;
}
}
If you like to exchange the menu and the search replce for this one.