Hi @husker,
Sorry for the late reply.
The above code is working fine, and the featured content are aligning horizontally to one another. The problem with above code is that it is always making the featured content’s size 25%:50%:25% in all sizes, so I’ve made a little change. Please replace the code with below.
.featured-content-image {
text-align: center;
}
@media screen and (min-width: 991px) {
#featured-content.layout-three .hentry {
width: 25%;
}
#featured-content.layout-three .hentry:nth-child(3n+2) {
width: 50%;
}
}
@media screen and (max-width: 990px) {
#featured-content.layout-three .hentry {
width: 100%;
}
}
Note: Your content seem to have fixed width so I’ve made the width featured content to full-width for display max-width: 990px.
Regards,
Mahesh