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: center panel

title left
User Details
message
title right
Gloria Clark

post date:
2011-08-22 18:51:19
I need to be more clear. I got the flexis panel, I have created the panel but it's over to the left. I entered the center tag <center> but the content is centered along with the panel. where do I put the code to just center the panel? I want all of my content inside the panel. Thank you
Elena Tepardea [Extend Studio]

post date:
2011-08-23 04:15:34
Hello,

The tag <center> will center the content along with the panel. You need to go in the source code where the <div> containing the panel starts - this div has an id, and this id is the name you have given to your panel. Add this code into the style of this div: margin-left:auto; margin-right:auto; and your panel will be centered. So, your code should appear like this: <div id="PanelName" style="width:300px;position:relative; margin-left:auto; margin-right:auto;">.
This should work.

Regards,
Elena Tepardea
Gloria Clark

post date:
2011-08-25 07:12:37
Thank you!