Click to See Complete Forum and Search --> : Wrapper within DIV and CSS


CreativeMind
09-25-2008, 01:49 PM
Hi all!

Is there a way to put a Wrapper side by side? I am doing a lot of text contents and I need to create a Wrapper on the LEFT and on the RIGHT. How do I 2 colums for text using Wrapper with DIV tags? Is another way to create 2 text colums using CSS?

I aready know how to create a Wrapper going from top to bottom but I do not know how to create it side by side.

Thanks!

CreativeMind
09-25-2008, 01:57 PM
I have attached an example of what I am talking about.

Thanks all!

jasonahoule
09-25-2008, 02:24 PM
I don't know what you mean by wrapper but you can create your two columns like this

<div style="float:left; width:50%">
This is the left column
</div>
<div style="float:left; width:50%">
This is the right column
</div>

CreativeMind
09-26-2008, 09:32 AM
Thanks jasonahoule!