Site logo

Archived topic

Dispatch's header Modify from 4 items to 3 items?

5 replies · Started by Benjamin on January 25, 2021

Viewing posts 1–6 of 6

Can I convert the default 4 items header in to 3 items like the following?

https://ibb.co/mq1KPrB

Hi there,

can you edit the WPSP list that has been added to the Header Element to display the post grid to show only 3 posts.
Once thats done, share a link to your site where i can see this and ill provide the CSS changes required to display them correctly.

David will need to see that 3 posts layout live to be able to provide the CSS.

Thanks!

Go to Customizer > Additional CSS and find this block of code:

.wpsp-grid .wp-show-posts article:nth-child(3) {
  grid-column: 5 / 7;
  grid-row: 2 / 4;
}

.wpsp-grid .wp-show-posts article:nth-child(4) {
  grid-column: 7 / end;
  grid-row: 2 / 4;
}

Replace that with:

.wpsp-grid .wp-show-posts article:nth-child(3) {
  grid-column: 5 / -1;
  grid-row: 2 / 4;
}
This archived topic is closed to new replies.