Flexi CSS Layouts for Dreamweaver Forum


box Flexi CSS Layouts for Dreamweaver
Flexi CSS Layouts is a Dreamweaver Extension that helps you create browser compliant table-less web pages with ease. Unlike other products that are limited to templated CSS layouts with 1, 2 or 3 columns, with Flexi CSS Layouts for Dreamweaver you can build your own custom layout structure without coding.

Find out more about Flexi CSS Layouts for Dreamweaver

Thread: How to place two CSS panels next to each other?

title left
User Details
message
title right
KJ van Gogh

post date:
2010-08-03 08:36:19
Hi,rnI like to place two CSSpanels next to each other inside the content area of another panel. How do I do that using flexipanels application?rnrnKJ
Cristian Dorobantescu [Extend Studio]

post date:
2010-08-03 09:18:26
Hi KJ,

You have to write a bit of code (change the values to what you need):

<div id="container" style="width:1200px">
<div id="box1" style="float:left; width:600px">1</div>
<div id="box2" style="float:left; width:600px">2</div>
</div>
<div style="clear-both"></div>

or even better, get the new product that makes CSS layouts: http://www.extendstudio.com/product/tableless-css-layouts-for-dreamweaver.html

Pre-release will be done tonight or tomorrow.

Cristian
KJ van Gogh

post date:
2010-08-03 18:29:03
Hi Cristian,

The code worked like a charm, Thanks.

KJ