Private: Home › Forums › WordPress Themes › Elvyre – Retina Ready WordPress Theme › Separation space between blog posts resume › Reply To: Separation space between blog posts resume
May 7, 2015 at 1:53 pm
#2894
Participant
Hello,
Glad it works for you.
It would be even better to change the upper code to the following one:
@media (min-width: 991px) {
.latest-posts li.post:nth-child(3n) {
margin-right: 0px;
}
}
It means that the margin-right rule will only be applied once the window width is bigger than 991px.
Robert