Where to edit Mobile code for overlapping wording on product pages

Solved

Where to edit Mobile code for overlapping wording on product pages

CHB1
Shopify Partner
19 1 2

Hi! On my product pages, the section after the product description that says 'back to all products' overlaps with 'customer reviews' on mobile devices. But it looks fine on a pc. Can that be fixed? I asked AI on Shopify Help Center and all it tells me is edit the code. I don't know which code to edit or even where to find the code for mobile devices, can someone please help me? 

CHB1_1-1722362355568.png

CHB1_2-1722362410067.png

 

 

 

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
9867 2348 2946

This is an accepted solution.

Hi @CHB1 

Check this one. 

  1. From you Admin page, go to Online Store > Themes
  1. Select the theme you want to edit
  2. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  3. Then place the code below at the very bottom of the file.

 

@media only screen and (max-width: 749px) {
.return-link-wrapper {
    margin: 30px 0 !important;
}
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1722364170118.png

     

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 6 (6)

WalkYourStyle
Navigator
473 57 78

Can you please share your store's URL?

CHB1
Shopify Partner
19 1 2

Made4uo-Ribe
Shopify Partner
9867 2348 2946

This is an accepted solution.

Hi @CHB1 

Check this one. 

  1. From you Admin page, go to Online Store > Themes
  1. Select the theme you want to edit
  2. Under the Asset folder, open the main.css(base.css, style.css or theme.css)
  3. Then place the code below at the very bottom of the file.

 

@media only screen and (max-width: 749px) {
.return-link-wrapper {
    margin: 30px 0 !important;
}
}

 

  • And Save. 
  • Result:
  • Made4uoRibe_0-1722364170118.png

     

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
CHB1
Shopify Partner
19 1 2

Thanks but it only moved the wording slightly. I added your code under assets/theme.css.liquid. See screenshots below

CHB1_0-1722365189596.png

CHB1_1-1722365327633.png

 

 

Made4uo-Ribe
Shopify Partner
9867 2348 2946

Is this inside on the style tag? I assume it will not work you have unproper placed curly bracket. Can you check if you have theme.scss.css file? And paste it on the very end. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
CHB1
Shopify Partner
19 1 2

Thanks, it worked!