Change font size of Collection and Format - Sense theme

How can we format the collection description into “Justify” and put it into center as well? I also would like to know how can I reduce the font size of the collection description

Hi @Zamantha , can you share your store url?

https://bozbrand.com/

Go to component-collection-hero.css and add the following snippet :

@media (min-width:750px) {
    .collection-hero {
    text-align: -webkit-center;
}
 }

Hello @Zamantha :waving_hand:

Inside Shopify Admin, you can go to Edit theme code, open file template-collection.css and add this code at the bottom

.collection-hero__description {
    text-align: justify;
    font-size: 15px;
}

Hope that helps!