Forums

How to split a post into 2 columns? (2 posts)

  1. michaelhogg
    Member
    Posted 3 years ago #

    Anyone kmow how to do this?
    For example, having a youtube video on the left, then a lead capture form on the right.

    I sure would appreciate how to do this!

  2. ousep
    Member
    Posted 3 years ago #

    Create two classes in your style.css: postleft and postright, for example, like so:

    .postleft{ float: left; width: 450px /*change this to the width you need */;}
    .postright{ float:right; width: 300px/*change this to the width you need */; }

    And in all your posts, place the video and capture like so:

    <div class="postleft">
    (youtube code)
    </div>
    <div class="postright">
    (capture img)
    </div>

Topic Closed

This topic has been closed to new replies.

About this Topic