Okay
  Public Ticket #2557149
Recent Posts Element
Closed

Comments

  • Veronica started the conversation

    Hello!

    I have a Recent Post element with a default style on my site. I'm trying to adjust the padding between these images. Hopefully to double or triple what they currently are. See photo attached of images and current padding which is generated by the Recent Post element.


    Thanks!

  •  2,682
    Andrew replied

    Hi Veronica,

    Try the following custom css:

    .blog-recent {
        margin: 30px 0;
    }
    

    Thanks.

  • Veronica replied

    Hi Andrew,

    Thanks for the quick response

    It looks like the CSS you sent adjusted my margin on the exterior of the element, but not in between each post.

    See attachment for clarification where I'd like that 30px to live! 

    Thanks again.

  •  2,682
    Andrew replied

    Hi Veronica,

    Use the following css:

    .blog-recent .col {
        width: 30%;
        margin-right: 5%;
    }
    

    Reduce width and increase margin if in need of more space

    Kind regards.

  • Veronica replied

    Awesome! Thank You!