|
Andrei Rinciog [Extend Studio]
post date:
2010-09-13 05:48:04
|
Hello,
You need to build a div structure to hold the panels on the same row. This is done using CSS rules. The code is something like this (I've used sample widths, you should probably change them):
<div style="width:900px;">
<div style="width:300px; float:left;">
Insert panel 1 here;
</div>
<div style="width:300px; float:left;">
Insert panel 2 here;
</div>
<div style="width:300px; float:left;">
Insert panel 3 here;
</div>
</div>
<div style="clear:both;"></div>
The video didn't show this very well. Sorry about that.
It is important that the three divs that float fit inside the parent div. Otherwise, the last one will drop under the other two.
For quick layout build and to skip coding this kind of div structure you can take a look at our latest product Flexi CSS Layouts: http://www.extendstudio.com/product/tableless-css-layouts-for-dreamweaver.html
Regards,
Andrei Rinciog
|
|