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!
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!
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>This topic has been closed to new replies.