Can't get the collection description in the center of the page

Solved

Can't get the collection description in the center of the page

kingdom2
Excursionist
25 0 7

Hi guys!

I have tried everything but can't I get the collection description in the center of the page?

 

Page: https://kingdompetshop.com/collections/dog-collars-leashes

Theme: Refresh

Pw: abcd

 

kingdom2_0-1725819053517.png

 

Accepted Solution (1)

wo
Shopify Partner
188 42 39

This is an accepted solution.

Find 'component-collection-hero.css',

search '.collection-hero__title+.collection-hero__description',

wo_0-1725847218291.png

 

add

margin-left:auto;margin-right:auto;

 Final code

.collection-hero__title+.collection-hero__description {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    line-height: calc(1 + .5 / var(--font-body-scale));
    /*add*/
    margin-left: auto;
    margin-right: auto;
}

View solution in original post

Replies 2 (2)

wo
Shopify Partner
188 42 39

This is an accepted solution.

Find 'component-collection-hero.css',

search '.collection-hero__title+.collection-hero__description',

wo_0-1725847218291.png

 

add

margin-left:auto;margin-right:auto;

 Final code

.collection-hero__title+.collection-hero__description {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    line-height: calc(1 + .5 / var(--font-body-scale));
    /*add*/
    margin-left: auto;
    margin-right: auto;
}
kingdom2
Excursionist
25 0 7

Hi @wo Thanks a lot!