Archived topic
Changing Single post Hero Grid Size
1 reply · Started by Dave on December 30, 2020
Viewing posts 1–2 of 2
I would like to make the excerpt in the Single Post header 40% and the Image 60% how would I go about doing that?
Cheers,
Dave
Hi there,
Remove flex: 1 40%; from this CSS you've added:
.hero-grid>div {
flex: 1 40%;
padding: 30px;
}
And add this:
.hero-grid .hero-image {
flex-basis: 60%;
}
.hero-grid .hero-content {
flex-basis: 40%;
}
This archived topic is closed to new replies.