[HTML] How to show scrollbars ALWAYS (no frames) - Printable Version -Shoutbox (https://shoutbox.menthix.net) +-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58) +--- Forum: Skype & Technology (/forumdisplay.php?fid=9) +---- Forum: Tech Talk (/forumdisplay.php?fid=17) +----- Thread: [HTML] How to show scrollbars ALWAYS (no frames) (/showthread.php?tid=45683) [HTML] How to show scrollbars ALWAYS (no frames) by robochief on 06-02-2005 at 02:54 PM
I want to make vertical scrollbar visible in a web page always, but using no frames. (I don't use frames because it's just one page) RE: [HTML] How to show scrollbars ALWAYS (no frames) by Ezra on 06-02-2005 at 03:41 PM
<body scroll="yes"> RE: RE: [HTML] How to show scrollbars ALWAYS (no frames) by robochief on 06-03-2005 at 06:40 AM
quote:Not recognized. (does nothing) quote:Makes both scrollbars visible, but I only need the vertical. Any other solution? RE: [HTML] How to show scrollbars ALWAYS (no frames) by Guido on 06-03-2005 at 06:46 AM
body{overflow-y: scroll;} RE: [HTML] How to show scrollbars ALWAYS (no frames) by robochief on 06-03-2005 at 05:46 PM
Still, no vertical scrollbar. (The thing is, that I want the vertical scrollbar appear always, even if the page is short and ca be visualized entirely in the browser window. RE: [HTML] How to show scrollbars ALWAYS (no frames) by Zephyr on 06-03-2005 at 06:04 PM
This should work RE: RE: [HTML] How to show scrollbars ALWAYS (no frames) by robochief on 06-03-2005 at 09:30 PM
quote:It does, thank you. The only thing is, that the vertical scrollbar looks enabled, even if the page is short. Even like that, it0s okay, because I need the vertical scrollbars so the different pages (long or short) looks alike (width), but if I can make the vertical scrollbar appear disabled in the short pages, it would be better. Any suggestion? RE: [HTML] How to show scrollbars ALWAYS (no frames) by Zephyr on 06-03-2005 at 09:45 PM
quote: Sorry, but i'm pretty sure it isn't possible to make it appear disabled. I think the {overflow: -moz-scrollbars-vertical;} is the best you can get. |