Move text to the left in picture and text section?

Topic summary

A user seeks help moving text to the left in a picture-and-text section on their Shopify store using the Trade theme.

Solution provided:

  • Navigate to Online Store > Theme > Edit Code
  • Locate and open the base.css, theme.css, or custom.css file
  • Add the following CSS snippet at the bottom:
.image-with-text__content {
  padding-left: 30px !important;
}
  • Adjust the 30px value as needed for desired spacing
  • Save the changes

The responder included a visual example of the result and requested the solution be marked as accepted if helpful.

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

Hello,

I would like to make the changed displayed in the picture, can someone help me?

Thank you!

URL: https://suq5b8csct01fyzg-61270851797.shopifypreview.com/

Im using the Trade theme.

Hi @KimGottwald ,

You can follow these steps to make the effect

  1. Open Online Store > Theme > Edit Code

  2. Find and open the base.css (or theme.css, custom.css) file

  3. Paste the code snippet below at the bottom of the file and hit save

.image-with-text__content {
    /* You can change this value to your preference */
    padding-left: 30px !important;
}

Here is the result

Hope this helps you solve the issue.

Please don’t forget to Like and Mark it as an Accepted Solution if you find this helpful. Thank you!

1 Like