How do I fill the screen and make the text bigger?

Topic summary

A user seeks help adjusting their Shopify store’s landing page layout and typography. They want to extend an image from the left edge to center and increase text size.

Requested Changes:

  • Expand image to fill more horizontal space (left edge to center)
  • Increase font size for better readability

Solution Provided:
A CSS code snippet was shared to:

  • Remove margins and padding from the multirow section to allow full-width image display
  • Increase paragraph text size to 19px

The code should be added to the theme’s CSS file (theme.css or base.css) through the Shopify theme editor.

Status: Resolved - the user confirmed the solution worked and expressed gratitude.

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


Hiya, I’m trying to fill the page a bit more, so if the picture could go left edge to the center that would be amazing, I also would like to make the font a bit bigger but am unsure how.

Please help me.

Website URL: https://1rzd08-i0.myshopify.com/

Password: riatri

Hello @lontessa Hope you are doing well, can you please share the url where your image is located
Thanks!

No worries, here it is:

Website URL: https://1rzd08-i0.myshopify.com/

Password: riatri

Hi @lontessa

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.css / based.css file and paste the code in the bottom of the file.
.multirow.section-template--17309763109062__multirow_VVTdeb-padding.gradient.color-scheme-4 .multirow__inner.page-width {
    margin: 0px !important;
    padding: 0px !important;
}
.multirow.section-template--17309763109062__multirow_VVTdeb-padding.gradient.color-scheme-4 {
    margin: 0px !important;
    padding: 0 !important;
}
.image-with-text__text.rte.body p {
    font-size: 19px !important;
}

Result:

If my reply is helpful, kindly click like and mark it as an accepted solution.
If you are happy with my help, you can help me buy a COFFEE
Thanks!

1 Like

Thank you!e