It's simple -
For centering layers, here is a good tutorial
http://www.roast-horse.com/tutorials/_tutorials/css_centered_content/index.html
and here is a code example -
(inline styles used for clarity)
<div id="wrapper" style="width:760px; top:0; margin:0 auto;
position:relative;">
<div id="layer1" style="width:200px; top: 25px; left:140px;
position:absolute;">blah</div>
<div id="layer2" style="width:180px; top: 136px; left:23px;
position:absolute;">blah</div>
</div>
and here is a site using the method -
http://www.great-web-sights.com
Try that - an outer relatively positioned division with a width and auto
left and right margins. All interior AP divisions will be centered, yet
retain the
same relative positioning.
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver MX
(If you *MUST* email me, don't LAUGH when you do so!)
==================
news://forums.macromedia.com/macromedia.dreamweaver - THE BEST WAY TO GET
ANSWERS
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================
"Carlos Gonçalves" <carlosgonca (AT) terra (DOT) com.br> wrote
Quote:
It's easy to use css, layers, when your site is align with left margin
because layers have a fixed position, but when this site is align in
center?
How can I use css if this center can change in accord screen resolution? |