• Resolved ardyonline

    (@ardyonline)


    anybody could help me how to display post in two columns?

    the first post will shown in 1st column,
    the second post will shown in 2nd column,
    the third post will shown in 1st column,
    the fourth post will shown in 2nd column…

    and so on…

    is this possible?

    thanks for the help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Wrap each post in a div (if that isn’t already in place).

    in CSS add this to the div

    width: 48%;
    float: left;

    the intent is that each post will be just under half the width of the container in which they are displaying. The float makes the 2nd post display to the right of the 1st post. After the 2nd post it will display the 3rd back in the left column.

    Thread Starter ardyonline

    (@ardyonline)

    @stvwlf

    woahhhh.. I get it!
    thanks so much for the help!
    it really helps me alot!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Display post in two column’ is closed to new replies.