Mia - Change featured posts title height

We've had a few requests for the post titles on the homepage to display at a consistent height. Do keep in mind that if your post titles are long, the height may need to be quite tall. Use at your own discretion. ðŸ™‚

Front Page 3 Featured Posts

1. Copy the code below.

2. Go to Appearance > Customize > Additional CSS and paste the code.

@media only screen and (min-width: 1021px) {
    .mia-home .featuredpost .entry-header {
        min-height: 16em;
    }
}
Note: If your post titles are longer than 4 lines, you'll need to increase the 16 value to something larger. Feel free to play with the value until you get the height you need.

Front Page 1 Featured Posts (shown in food demo)

1. Copy the code below.

2. Go to Appearance > Customize > Additional CSS and paste the code.

@media only screen and (min-width: 1021px) {
    .mia-home .front-page-1 .featuredpost .entry-header {
        min-height: 15em;
    }
}