how to disable or hide featured images in subsequent posts – when using ajax load more to show posts one below the other.(show in the first post… not show in 2,3.. posts)
tried this css
.page-header-image-single:nth-of-type(1n+2) {
display: none;
}
unfortunately nth-of-type and the other pseudo selectors don’t apply to CSS classes.
However, if we look at your HTML each article is displayed within a alm-reveal wrapper – creating a list of common elements with that class and we can target them like so: