[Support request] Dispatch’s header Modify from 4 items to 3 items?

Home Forums Support [Support request] Dispatch’s header Modify from 4 items to 3 items?

Home Forums Support Dispatch’s header Modify from 4 items to 3 items?

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1632330
    Benjamin

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

    https://ibb.co/mq1KPrB

    #1632601
    David
    Staff
    Customer Support

    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.

    #1633045
    Benjamin

    What I can see is like that, may I know how can I change the css?
    https://ibb.co/PhcftCx

    #1633071
    Leo
    Staff
    Customer Support

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

    Thanks!

    #1633102
    Benjamin

    https://www.macuserclub.com

    this is my site

    #1633264
    David
    Staff
    Customer Support

    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;
    }
Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.