Message Thread: |
View All MessagesBack to WebFX |
This is the classic CSS height issue. You should be able to find lots of info about this using Google. One way to get this done without using scripting for the vertical layout can be achieved by setting the height (and more) for the body and html element. html, body { margin: 0; padding: 0; border: 0; width: 100%; height: 100%; overflow: hidden; } body { overflow: auto; } Once the body has a height its children can have percentage heights. erik |