How can I reduce text spacing on my mobile home page?

Topic summary

Request: reduce overly wide text spacing on the mobile home page in the Dawn theme.

Context and assets:

  • Store URL shared (lbsistasllc.com). Screenshot provided to show the issue.

Proposed fix (CSS customization):

  • Edit theme files via Online Store > Themes > Edit code > Assets > base.css/style.css/theme.css.
  • Add a mobile-only rule (max-width: 749px) targeting .image-with-text__text.rte.body p to set letter-spacing to 0rem with !important.
  • A result image was shared to illustrate the effect.

Outcome:

  • Another participant observed the change appears implemented on the site and asked if any further updates are needed.

Status:

  • Likely resolved with the CSS adjustment to letter-spacing for mobile. No remaining open questions noted.
Summarized with AI on January 19. AI used: gpt-5.

The spacing for the text on my home page, for mobile, is a little too wide. If someone could help me make it smaller that would be great!

The theme is dawn. I attached a photo too.

1 Like

@nk1993 - can you please share the screenshot of that section and your website link?

Hi @nk1993

Would you mind to share your Store URL website? with password if its protected. Thanks!

WEBSITE LINK: LB SISTAS (lbsistasllc.com)


IMG_3768.jpg

STORE URL (its not protected w/ password): LB SISTAS (lbsistasllc.com)

1 Like

Thannk you for the information. Try this one.

  • 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: 749px){
.image-with-text__text.rte.body p {   
    letter-spacing: 0.0rem !important;
}
}

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

@nk1993 - Good morning, I think you have implemented the solution given below, please do let me know if you need any other update.