It's not the height, though that will come into play in some cases, so should be kept high, though perhaps not that high. It's the width, which should be the width of the wrapper, in this case 800px:
Code:
.glidecontent{ /*style for each glide content DIV within wrapper.*/
position: absolute; /* Do not change this value */
padding: 10px;
visibility: hidden;
width: 800px;
background-color: #ffffff;
height: 1500px;
}
This also looks promising, but may have problems in some browsers:
Code:
.glidecontent{ /*style for each glide content DIV within wrapper.*/
position: absolute; /* Do not change this value */
padding: 10px;
visibility: hidden;
width: 100%;
background-color: #ffffff;
height: 100%;
}
Bookmarks