Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+2)

On server side? Apparantly not. On client side, you can use custom styles. Resizing the page can also help. If you zoom into the page, the element gets flattened to a top bar.

I use Stylus to activate this on demand. But zooming in will do the trick as well.

@-moz-document domain("itch.io") {
    .user_tools {
        position: static;
    }
}

And on developer side, a banner over a web game can help.

(+2)

Stylus is the way. Thank you for the succinct CSS fix; I immediately put it to use.  Building on your example, for a more consolidated list:

@-moz-document domain("itch.io") {
    .user_tools {
        position: static;
    }
    .user_tools li {
        display: inline;
    }
}