Jump to content

[SOLVED] scroll bar


AV1611

Recommended Posts

I don't think you can remove the scrollbars from a regular page. You can do it with window.open in Javascript, and you can change the size and color of the scrollbars, but not remove them, as far as I know. You can also control them in frames. So, you could wrap your whole page in a frame and do noframes on it.

Link to comment
https://forums.phpfreaks.com/topic/124875-solved-scroll-bar/#findComment-645185
Share on other sites

LOL. I think you can do the same thing. On all of those, you can specify no scrollbars, auto scrollbars, or always scrollbars.

 

I thought of another way though. Add a <div> around your whole page, like this:

 

<body style="margin:0px;">
<div style="width:100%;height:100%;overflow:scroll">
--- Your page here ---
</div>
</body>

Link to comment
https://forums.phpfreaks.com/topic/124875-solved-scroll-bar/#findComment-645215
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.