Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #65143

    Hi, I’m trying to display the homepage articles in two columns. How can I do that? Thanks!

    #65147
    DONOVAN
    Member

    I too would love to know how to do this!

    #65172
    Sakin
    Keymaster

    @liberiangirl90: Sorry no option in Catch base theme. Try using Catch Adaptive theme http://wordpress.org/themes/catch-adaptive/

    #65175

    Not even with css? :'(

    #65182
    Sakin
    Keymaster

    @liberiangirl90: That theme is not designed to do 2 columns post. So, adding css will be complicated.

    #65184

    I changed .archive-post-wrap setting the width to 45%, now I would just need to find a way to make the posts display two by two…

    #65186
    Sakin
    Keymaster

    @liberiangirl90: Ok post in your site URL then I can check in for you.

    #65187

    Thank you, it’s http://www.socialmovies.net

    #65263
    Sakin
    Keymaster

    First, remove the width :40% that you have added in.

    .archive-post-wrap {
        padding-bottom: 20px;
        width: 40%;
    }

    Then you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    @media screen and (min-width: 768px) {
        .home #main .hentry { width: 50%; float: left; }
    }

    Note: you shouldn’t add/edit any files inside ‘catch-base’ theme directory. As this files will be reverted back to original when you update your theme and you will loose your customization. So, for custom css either add in Custom CSS Options box or build child theme and add it in child theme style.css file.

    #65357

    Awesome!! Thank you so much!!!

    #65431
    Sakin
    Keymaster

    @liberiangirl90: Thanks for your appreciation. If you like my support and Catch base theme then please provide your valuable review at https://wordpress.org/support/view/theme-reviews/catch-base?rate=5#postform.

    thanks in advance 🙂

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Homepage articles in 2 columns’ is closed to new replies.