Jump to content

Double scroll bar and height problems


spyke01

Recommended Posts

Im working on a new layout, and having several problems, ive finally got my two different footers acting like i want them, but now i have double scroll bars, the other problem is that the two columns need to stretch as one(if the left column stretches to 150px then the right column needs to stretch to be 150px)

Heres the page:
http://www.fasttracksites.com/new%20layout/

Can anyone help me fix these two problems?
Link to comment
https://forums.phpfreaks.com/topic/16480-double-scroll-bar-and-height-problems/
Share on other sites

ok, the problem is that the width of container has to be 100%, i ending up wrapping the contents of container with a wrapper called page and used the following css to make sure the page didnt change width or the float drop

[code]
div#container {
position: relative;
width: 100%;
min-height: 100%; /* For Modern Browsers */
height: auto !important; /*For Modern Browsers */
height: 100%; /*For IE */
margin: 0px;
padding: 0px;
text-align: left;
}

div#page {
width: 1011px;
min-height: 100%; /* For Modern Browsers */
height: auto !important; /*For Modern Browsers */
height: 100%; /*For IE */
margin: 0px;
padding: 0px;
text-align: left;
}
[/code]

thanks anyways guys

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.