My master page are using the Grid960 CSS framework. But I am not sure that my page layout is using the CSS framework correctly.
I got the nasty vertical and horizontal scroll bars. How can I get rid of the nasty vertical and horizontal scroll bars?
My master page are using the Grid960 CSS framework. But I am not sure that my page layout is using the CSS framework correctly.
I got the nasty vertical and horizontal scroll bars. How can I get rid of the nasty vertical and horizontal scroll bars?
You can use the css property overflow: hidden;
to remove both scrollbars
or you can target each specifically:
overlow-x: hidden;
overflow-y: hidden;
Here are my suggestions:
If you need more help, post some example url so that it can be reviewed.