Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #562118

    Hi,

    http://www.raboff.com/

    1. I want to decrease the space between the blog posts

    2. I also want to add a thin line between the blog posts

    What code shall I add?

    Thanks
    Charlotte

    #562133

    Hey Charlotte!

    Please add following code to Quick CSS

    .blog .post_delimiter {
        display: none;
    }
    .blog article {
        border-top: 2px solid #e2e2e2;
        padding-top: 20px;
    }

    Best regards,
    Yigit

    #562138

    Thanks :)

    Now I want to some more space under the line and blog post.

    Also, I want to delete the first line that is above the first post.

    Cheers
    Charlotte

    #562142

    Hi!

    Please add following code to Quick CSS

    .blog article:nth-child(1) {
        border-top: none;
    }

    and increase “20px” value to increase the space between line and post

    Best regards,
    Yigit

    #562151

    Great, thanks :)

    Last thing. If I want just the blog images to be 950px wide, but not the text.

    What code shall I add?

    #562158

    Hey!

    Please add following code to Quick CSS as well

    .blog .container {
        max-width: 950px!important;
        padding: 0;
    }
    .blog .big-preview.single-big {
        max-width: 950px;
    }

    I closed this thread – https://kriesi.at/support/topic/fullwidth-easy-slider-8/

    Cheers!
    Yigit

    #562163

    :-) Thanks!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Blog post decrease space’ is closed to new replies.