Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #92616
    veerle
    Participant

    Hello,

    I am using the catch adaptive pro theme with 3 columns. Within the typography section I made more space between the different posts of the blog. However, there is too much white between the posts (in the lenght). I tried to reverse this in the customizer ( typography, positioning), but it doesn’t work. Could you help me?

    This is the website:
    http://analiciafortes.com/

    #92635
    Mahesh
    Keymaster

    @veer: Have you modified the style.css file. The space seems fine on our server. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    p {
        padding-bottom: 20px;
    }

    Note: The issue is because of following code in your style.css

    p, #nav-below, .sidebar-primary .search-field, .hentry .featured-image, .comment-navigation, .paging-navigation, .post-navigation {
        margin-bottom: 100px;
    }

    By default it is:

    p, #nav-below, .sidebar-primary .search-field, .hentry .featured-image, .comment-navigation, .paging-navigation, .post-navigation {
        margin-bottom: 20px;
    }

    Hope this helps.

    Regards,
    Mahesh

    #92671
    veerle
    Participant

    Thanks a lot!

    I indeed modified my css sheet, ( in order to learn CSS). It’s fixed now!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Space between text in columns’ is closed to new replies.