Dawn Blog - Font title size + sample length

Hi,

I wish to reduce the font size of blog title (which is so big!), and make the article preview shorter, about like in the image. Do you know how to make it ?

Thank you very much :slightly_smiling_face:

Hi @ManuBC

This is Henry from PageFly - Landing Page Builder App

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file base.css

Step 3: Paste the below code at bottom of the file → Save

.article-card .card__heading {

font-size: 20px !important;

}

Hope that my solution works for you.

Best regards,

Henry | PageFly

Thank you ! That work well for the title font.

Do you see a way to make the article preview shorter ?

1 Like

You can try this code:

p.article-card__excerpt.rte-width {
margin-top: 0 !important;
font-size: 14px !important;
}

.blog__posts .article-card .card__information {
padding-top: 0 !important;
padding-bottom: 0 !important;
}

Yes it reduced a little. Is it possible to limite to ~15 words the text preview ?

You can try this code:

.article-card .card__heading {

f overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 100%;
max-width: 100%;

}