Site logo

Archived topic

Border on WP Show Posts

3 replies · Started by Steve on October 24, 2018

Viewing posts 1–4 of 4

Hi there,

Sorry if this is the wrong place to ask, but I have used css to add a border to the right on the columns on the News section, on the front page of my website.I have used the WP Show Posts plugin.

I don't want the border to show on the final column tho so it look symmetrical. Not sure how to do it using css ?

Hi there,

you can try this method but it will only work with a single row:

.wp-show-posts article:not(:last-child) .wp-show-posts-inner {
    style properties here
}

or this method which should eliminate the CSS from every 3rd element:

.wp-show-posts article:not(:nth-child(3n)) .wp-show-posts-inner {
    style properties here
}

Brilliant,

As always grateful of your professional help,

You're welcome glad to be of help

This archived topic is closed to new replies.