I’m trying to get a rich text block to match the width of the standard ‘Page’ text content width in the Horizon theme. Any ideas?
The narrow/normal/none options don’t help.
I’m trying to get a rich text block to match the width of the standard ‘Page’ text content width in the Horizon theme. Any ideas?
The narrow/normal/none options don’t help.
They both seem to sit within a shopify-section section-wrapper and a section-background color-scheme-1 div class
The only thing that Ive found that has any obvious correlation is a --max-width--body-normal but that seems to be within the page css itself rather than base.css
Solved it, for now with the following code in the custom css of the block. I presume you could also add this to the base.css somewhere:
.custom-section-content {
–max-width–body-normal: 48em;
}