Why is my imported size guide displaying incorrectly on mobile?

Topic summary

A user encountered formatting issues with automatically imported size guide tables from Shein, which displayed incorrectly on mobile devices. The problem specifically affected the header row (size, bust, length) alignment.

Solution provided:

  • Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
  • Locate the CSS file (base.css, style.css, or theme.css) in the Assets folder
  • Add the following CSS code at the bottom:
.product__description-rte table {
    width: 100%;
}

Outcome:
The CSS fix successfully resolved the mobile display issue by forcing the table to use full width. The original poster confirmed the solution worked and marked it as resolved.

Summarized with AI on November 15. AI used: claude-sonnet-4-5-20250929.

Hi @Kaash

Please try the code below

  • 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:
.product__description.rte table {
    width: 100%;
}
  • And Save.
  • Result:

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

1 Like