Changing font size and color for excerpts

Is it possible to change the font size and color for the excerpts (teaser text) on a blog front page made with Travelify without heavy coding?

I can see with the Firebug css/html viewer, that the excerpt text is wrapped in p tags, so Iā€™m trying to avoid changing the paragraph text inside the posts while changing the excerpt font, but no luck so far :slight_smile:

This one is tricky because excerpt and blog content itself has the same template and class - .entry-content

.blog .entry-content,
.archive .entry-content {
    color: #999;
}

This means that we have to target more specific pages such as archive and blogs to apply changes to excerpt alone.

Add this code to Theme Options - Other - Custom CSS and change color valuation accordingly.

Perfect! Thanks.