dominod Posted July 6, 2010 Share Posted July 6, 2010 Hi I am no HTML newbie, but this makes no sense ... I created a normal HTML/CSS page but for some reason there is no vertical scroller on the page.. http://haukaas.nu/new/webpage/ I´ve tested it both in Safari and Firefox and there is no scroller.. I cant even use the scroller on my mouse.. Thanks in advance Quote Link to comment https://forums.phpfreaks.com/topic/206904-no-scrolling/ Share on other sites More sharing options...
joePHP Posted July 6, 2010 Share Posted July 6, 2010 Hi, Get rid of position: fixed; in: .content { width: 700px; ---> position: fixed; margin-top: 75px; text-align: justify; } By setting your content div which contains pretty much everything that's on your page to position: fixed; means that you are telling the browser that div content should stay fixed in it's position and not move therefore there is no need for a scroll bar because it's not going anywhere. Joe Quote Link to comment https://forums.phpfreaks.com/topic/206904-no-scrolling/#findComment-1081990 Share on other sites More sharing options...
dominod Posted July 6, 2010 Author Share Posted July 6, 2010 Stupid me! Im no HTML newbie, but CSS is another story Thanks alot Quote Link to comment https://forums.phpfreaks.com/topic/206904-no-scrolling/#findComment-1081992 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.