• Resolved customle

    (@customle)


    How can I make a two-column layout for the Related Posts and Related Doubled-Up (Related Posts in column on left and Related Doubled-up on right)?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Marcel Pol

    (@mpol)

    You could add CSS like this:

    body html div.related_content {
        clear: none !important;
        float: left;
        width: 48%;
    }
    body html div.related_du_content {
        clear: none !important;
        float: right;
        width: 48%;
    }

    For Custom CSS you can use a plugin like Simple Custom CSS or you can add it to the stylesheet of your theme.

    Thread Starter customle

    (@customle)

    Thanks for the response. I tried that but it still didn’t work. Please see: https://learnhowtoquilt.com/project/crazy-log-cabin-curtains/

    I even changed the theme with no luck.

    Plugin Author Marcel Pol

    (@mpol)

    Ouch, sorry, my mistake…

    
    html body div.related_content {
        clear: none !important;
        float: left;
        width: 48%;
    }
    html body div.related_du_content {
        clear: none !important;
        float: right;
        width: 48%;
    }
    Thread Starter customle

    (@customle)

    Worked beautifully, thanks.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘2 Column Layout’ is closed to new replies.