PDA

View Full Version : shortening the page...in css




pelsar
Sep 5, 2009, 05:13 PM
shouldn't be a problem, but it is..... i cant seem to solve. I need to shorten the page to not go beyond the dark gray line on the bottom where the bottom links are...it now extends beyond that.

http://www.lucidlogix.com/dev240809/



nuxx
Sep 5, 2009, 06:07 PM
In the .bottom class top: -30px;
position: relative; is positioning the element 30px above where it would normally be positioned.

Changing it to top: 0px;
position: relative; or simply removing both declarations fixes the issue in Firefox on a Mac, but I can't vouch for any other browser.