Posts

  • CSS trick: Always show scrollbars

    Update 2011: Since Internet Explorer now always just display a vertical scrollbar, all that is needed to force a scrollbar in all other non-IE browsers is this:

    html {
        overflow-y: scroll;
    }
    

    I worked on a site a few weeks ago where the user wanted visible scrollbars no matter how much space the content takes up on the page. Internet Explorer is happy to oblige, just put in a overflow: scroll; in your CSS and your good to go. However, Mozilla Firefox wouldn’t play ball. A bit of Googling revealed Mozillas own implementation:

    overflow-y: scroll;
    

    So to sum up, add the following CSS code to your site if you want the scrollbars visible at all times:

    html {
         overflow: -moz-scrollbars-vertical;
         overflow: scroll;
    }
    

    Comments

  • Quake dueling guide

    Back in October 2005 when Quake 4 was about to be released I decided to write a guide to dueling in Quake. A few years back I was dueling on a fairly high level (at least by Danish standards) in Quake 3 and besides having some experience to share I also though an article like that would help build a good Quake dueling community in Denmark again, by helping aspiring Quakers get some tools to work on their game and not give up right away.

    Read more - Comments

← Previous page

Mastodon