Hello
I am using the Prestige Theme. In my collection pages, I want the description to span the width of the product images below. How can I edit the code to make this possible?
Thanks!
Bala
Hello
I am using the Prestige Theme. In my collection pages, I want the description to span the width of the product images below. How can I edit the code to make this possible?
Thanks!
Bala
You can put this at the bottom of your theme.scss.liquid file in your assets folder:
.SectionHeader__Description {
max-width: 900px;
}
And adjust the pixel value for however you’d like it. If you want my honest opinion though I think it looks better small. You can see what it looks like without a max width if you change it to:
.SectionHeader__Description {
max-width: unset;
}
Which would effectively make that portion as large as the page itself.
Great! thanks so much! I like it at the 900px width. Works good.
Bala
Thanks - I was looking for how to do this, and it worked perfectly!