Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Getting rid of scrollbars

Status
Not open for further replies.

SupremeDementia

Technical User
Jul 29, 2002
8
PT
i was wondering : can we get rid of scrollbars ? I have a website layout that ended up a few pixels too wide and due to that slapped an ugly bottom scrollbar onto the browser. I was thinking about getting rid of the scrollbar without resizing the images. can it be done? and how ?
 
Add to your <head>
<style>
body{
overflow:hidden;
}
</style>
or if you want to get rid of only the bottom scrollbar, for IE only, do this:
<style>
body{
overflow-x:hidden;
}
</style>


Rick
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top