Dawn Collection Page - reduce description text and padding between title and description

Hi,

I have worked out how to reduce the title collection by putting this code in base.css

h1.collection-hero__title {
font-size: 24px;
}

Does anybody know how I can reduce the font size of the description, and reduce the padding between title and description please.

Example of the page - https://tandoormaster.com/collections/tandoors

password TandoorMaster

@984488 ,

Can you share the screenshot ?

@984488 ,

.section-template--15350924050637__product-grid-padding {
    padding: 0;
}
h1.collection-hero__title {
    font-size: 20px;
    margin-bottom: 0;
}
.collection-hero__description.rte {
    margin: 9px 0;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid

Hi, I tried that and also this below but the description size is still staying the same.

.section-template–15350924050637__product-grid-padding {
padding: 0;
}

h1.collection-hero__title {
font-size: 24px;
margin-bottom: 0;
}
.collection-hero__description.rte {
font-size: 8px;
margin-top: 0;
}

@984488

can you try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/component-collection-hero.css->paste below code at the bottom of the file.
.collection-hero__title+.collection-hero__description {font-size: 16px;
    margin-top: 10px;}

This works, thanks so much Ketan Kumar!

@984488 its my pleasure o help us

Hi, how can i align the description to the centre.

I tried adding in a text-align but it is aligning to the left margin
.collection-hero__title+.collection-hero__description {
font-size: 14px;
text-align: center;
margin-top: 10px;}

@984488 ,

.collection-hero__description.rte {
    max-width: 100%;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid

@984488

yes, please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/component-collection-hero.css->paste below code at the bottom of the file.
.collection-hero__title+.collection-hero__description {max-width: 100%;}

Many thanks that works

@984488

its my pleasure to help us