how can i remove a scroll bar from a template using front page?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i've just gotten a new template for my medeia site smazs.com, but the
template seem to come with it's own scroll bars, and i wanna get rid of it so
bad. I want the scrolling bar out, but i'm having a hard time getting the
code to do it.

if anyone can tell me how to do this using frontpage, it will be very
appreciated.
 
To get rid of the vertical scroll bar?...make the page shorter...otherwise
how would you get to the bottom?
Scroll bars appear when a page is too wide or too tall.



| i've just gotten a new template for my medeia site smazs.com, but the
| template seem to come with it's own scroll bars, and i wanna get rid of it
so
| bad. I want the scrolling bar out, but i'm having a hard time getting the
| code to do it.
|
| if anyone can tell me how to do this using frontpage, it will be very
| appreciated.
 
Or are you talking about a frameset - if you go to the frame properties,
there are limited options to choose "always show", "show when needed" or
"never show".

On the other hand, the scroll bar on the right is a feature of the browser,
and only shows when needed - when page is too tall or too wide.

I believe there is CSS code that does force "no scroll bar" but it might be
IE only. It's something like:
<style>

body
{
overflow-x: none, overflow-y: none;
}
</style>
 
Back
Top