Okay
  Public Ticket #3765800
Small space between posts, mobile version
Open

Comments

  • iforpp started the conversation

    Hello !
    Why so small space between posts, on mobile version? how can i do it bigger? 

    Attached files:  Screenshot_13.jpg

  •  2,967
    Andrew replied

    Hi Again,

    Thank you for reaching out to us.

    To add spacing to the posts, add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    @media only screen and (max-width: 690px) {
        .blog-recent .col {
            margin-bottom: 40px !important;
        }
    }

    Try this and let us know how it goes.

    Thanks

  • iforpp replied

    It's working! Thank you!