Is it possible to add padding to the collection’s description and justify the text or, if not possible, keep it aligned to the left?
The white space to the right is too big.
Website:
https://alata.pt/collections/bokkie-1
Thanks in advance.
Is it possible to add padding to the collection’s description and justify the text or, if not possible, keep it aligned to the left?
The white space to the right is too big.
Website:
https://alata.pt/collections/bokkie-1
Thanks in advance.
HI @zohia
You can try follow this path:
Themes => edit code => asset => component-collection-hero.css
and add this code to bottom of the file component-collection-hero.css
.collection-hero__description {
margin-left: auto;
margin-right: auto;
text-align: center;
}
Thanks for your help.
This is not exactly it.
I do want the text to occupy a central area (see attachment), but to keep it aligned to the left or aligned as “justify”.
So, I assume what I need is that there’s left and right padding to the text area, ie, to keep it occupying a narrower area.
I’m sorry if this is confusing. Do you think it is possible?
HI @zohia
You can try to test with this
.collection-hero__description {
margin-left: auto;
margin-right: auto;
}