centering pages using position absolute

This is a discussion on "centering pages using position absolute" within the Web Page Design section. This forum, and the thread "centering pages using position absolute are both part of the Design Your Website category.


 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices




Reply
 
LinkBack Thread Tools
  #1  
Old Aug 29th, 2007, 12:12
New Member
Join Date: Aug 2007
Location: London
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
centering pages using position absolute

Hi,

I'm implementing a website at the moment and I have incoporated css as documented in the following article...

http://scott.sauyet.com/CSS/Demo/FooterDemo2.html

This bascially creates a footer that sits on the bottom of the page if there isn't enough content to fill it up, but also allows for expansion in larger pages. It uses some IE hacks and requires a 'containing' div to be positioned absolutely. However, I'm finding it difficult to center my pages in the usual way in both Firefox and IE6. By the usual way I mean something like...

Code: Select all
#contents { width:780px; margin:4px auto; margin-left:expression( (document.body.clientWidth - 780) / 2 + 'px');}
Because contents is position absolute, neither the margin-left expression nor the auto work. I have tried the obvious thing and applied these to the left style attribute but this doesn't work! My best solution, for which I'm looking for an improvement, is...
Code: Select all
#contents {position: absolute;top: 0; height: 100%;width: 780px;
left: 12%;right:12%;}
Best
Damian

Last edited by karinne; Aug 29th, 2007 at 16:44. Reason: Please use [ code ]...[ /code ] tags when displaying code.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old Aug 29th, 2007, 16:04
Elite Veteran
Join Date: Aug 2005
Location: That Place
Posts: 2,044
Blog Entries: 1
Thanks: 0
Thanked 37 Times in 37 Posts
Re: centering pages using position absolute

Are you trying to do vertical or horizontal centering or both?

Vert + Hor centering is actually quite simple.

http://www.sabordesign.com/css_layou...al%20Centered/
__________________

Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old Aug 29th, 2007, 16:29
New Member
Join Date: Aug 2007
Location: London
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Re: centering pages using position absolute

I have already tried something similar to this and it doesn't work: as the client width is reduced past 780px the side main content container of the site (the centred div element) moves beyond the edge of the window so I slowly loose my side bar.

I have found a forum post in another forum that has solved my problem for FireFox but it doesn't work for IE. Have a look at this as it sums up my problem probably better than I could...

http://forums.sixapart.com/index.php...r&f=14&t=63217

This solution puts everything inside another container, called here div#overall, which then uses position:relative and the margin:auto rules. This works perfectly for FF but I'm thinking there could be some CSS expression that would work with this solution to fix IE.

Here is a copy of some of my relevant code... [Note the CSS expression in here is schematic and results in the same problem as when using the solution you quoted in the last post. I was thinking if there is a way of altering this expression so that any negative values px are converted to 0px but I don't know if there is a function to do this or if it can be expressed inline].
Code: Select all
html, body { min-height: 100%; width: 100%; height: 100%;}

html>body, html>body #contents {height: auto;}

body { margin: 0; font-family: Arial, Helvetica, sans-serif;}

div#overall {
position:relative;
width:780px;
margin: auto;
margin-left:expression((document.body.clientWidth - 780) / 2 + 'px');
}

#contents {position: absolute;
top: 0; 
height: 100%;
width: 780px;
min-height: 100%;

}

#footer {position: absolute; bottom: 0; background-color: #ccffcc; width: 70%; text-align: center; padding: 0 15%;}

/* SBMH -- see http://css-discuss.incutio.com/?page=BoxModelHack 
 * Stupid hack lets IE see 100%, others see 70%. 
 */
#footer {  \width: 100%;  w\idth: 70%;}

#main {margin-bottom: 5em;     height: auto; padding: .5em; text-align:center;}
Thanks,
Damian

Last edited by karinne; Aug 29th, 2007 at 16:44. Reason: Please use [ code ]...[ /code ] tags when displaying code.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old Aug 29th, 2007, 16:41
Elite Veteran
Join Date: Aug 2005
Location: That Place
Posts: 2,044
Blog Entries: 1
Thanks: 0
Thanked 37 Times in 37 Posts
Re: centering pages using position absolute

Dunno man, the link I gave you works in everything. What exactly are you trying to accomplish? There are methods for sticky footers and such in this forum as well.
__________________

Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old Aug 29th, 2007, 16:53
New Member
Join Date: Aug 2007
Location: London
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Re: centering pages using position absolute

Have a look at the example you quoted above and reduce the browser width to less than 600px (the width of the box). As you reduce the browser, the box will start disappearing into the left. In short, instead of this happening, I want the box to stay at left margin 0px of the window.

The position absolute and sticky footers might be the problem, but I have the solution for FF but not for IE. If there is a sticky footer solution that doesn't require a position absolute in a #container div that would be good.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old Aug 29th, 2007, 16:55
Elite Veteran
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: centering pages using position absolute

Less than 600px in width?! Unless you're designing for PDA's, I wouldn't bother with that.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7  
Old Aug 29th, 2007, 17:08
New Member
Join Date: Aug 2007
Location: London
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Re: centering pages using position absolute

Well my box is 780px and we have lots of myopic nutters here who love to use low res monitors as if they were PDA's.

Sorry this quite particular!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
positionabsolute css

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
ie6 absolute div problem bilsland Web Page Design 1 Apr 29th, 2008 13:43
When is it ok to use Absolute Positioning ?? slimboyfatz32 Web Page Design 31 Feb 6th, 2008 18:25
Javascript - Updating web pages with snippets from other pages Ydot JavaScript Forum 3 Jul 10th, 2007 15:38
position:absolute; qustion geoffmuskett Web Page Design 2 Dec 1st, 2006 23:02
Scripting Needed(adding pages to pages) Amari Classic ASP 1 Sep 4th, 2004 19:06


All times are GMT. The time now is 08:21.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved