Width of Rich Text Box with Image on Shopify Prestige Theme

Hi there!
I’m currently using the prestige theme for our shop (www.customgiftboxco.com.au) and I want to increase the width of the Rich Text Box with Image - we currently have this on our home page and it’s a bit blocky with the text we currently have in there. I’d love to have it fitting wider on the page if possible.
If anyone has any suggestions as to how this could be achieved through code, it would be amazing.
Thanks in advance.

customgiftboxco_0-1665193426913.png

Hi there,

The below CSS code should address your question.

.FeatureText__Content {
  max-width: 800px !important;
}
.SectionHeader__Description.Rte {
  width: 100%  !important;
  max-width: 100% !important;
}

Cheers!

1 Like

Perfect, thank you!