Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Also, if you can explain your issue in a bit detail then that would be amazing. Your cooperation would be greatly appreciated.
From what you’ve shared, it looks like your mobile view issue could be tied to either a CSS error or improper code implementation in your theme. I’ll break it down and guide you through a solution.
Steps to Fix the Mobile View Issue:#### 1. Inspect the Mobile View
Open your store in a browser and use developer tools (Ctrl+Shift+I on Windows or Cmd+Option+I on Mac). Switch to mobile view to identify the exact issue. Look for:
Misaligned elements.
Overflow issues (content spilling outside the screen).
Console errors that may indicate CSS or JavaScript problems.
2. Verify Theme Code- Go to Online Store > Themes > Actions > Edit Code.
Open the theme.css or theme.scss.liquid file where you made the changes.
If you added custom code, ensure it’s correctly formatted and scoped only to mobile devices. Use a media query like this:
3. Undo and Test Incrementally- If the code you added didn’t work, try removing it and testing your site again. This will confirm if your added CSS caused the issue.
Reapply changes incrementally, testing each time.
4. Use Built-in Theme Editor Options
If you’re not comfortable coding, try adjusting mobile view directly in the theme editor:
Go to Customize under your theme and check mobile-specific settings.
Many themes have mobile-specific layout options (e.g., font sizes, image alignments).
5. Double-Check Images
Based on your shared links, image dimensions or alignment could also cause issues. To fix this:
Ensure all images are properly optimized for mobile (e.g., smaller file sizes, responsive width using CSS like max-width: 100%;).