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: online documentation

title left
User Details
message
title right
Michael D Pett

post date:
2011-05-18 12:50:10
Where can I find the online manual. All other extensions are easy to find but I can't find Flexi css layout manual.
Andrei Rinciog [Extend Studio]

post date:
2011-05-19 05:05:23
Hello,

This is the documentation page for Flexi CSS Layouts: http://www.extendstudio.com/tableless-css-layouts-for-dreamweaver/documentation.html

If you have a question that is not covered by the documentation I can help you.
Just tell me what you are trying to do and what problems you have.

Regards,
Andrei Rinciog
Michael D Pett

post date:
2011-05-26 14:53:55
Hi
I have added a vertical menu to the left column and the sub-menus disappear behind the content div. Have tried adding z-index values to left column div but no change. Any solution?
Andrei Rinciog [Extend Studio]

post date:
2011-05-27 04:44:53
Hello Michael,

The cells of a Flexi CSS layout have overflow hidden. So, you can't display a submenu outside of the cell. You need to use absolute positioning to position the menu in the right place, outside of the layout.

Something like this:
<div style="position:absolute; left:0; right:0;">
.. menu code ..
</div>

Regards,
Andrei Rinciog