Skip to content

Instantly share code, notes, and snippets.

@ticky
Last active July 10, 2025 23:18
Show Gist options
  • Save ticky/a86d1749da142ea7b6dd5582748b461e to your computer and use it in GitHub Desktop.
Save ticky/a86d1749da142ea7b6dd5582748b461e to your computer and use it in GitHub Desktop.

Hoist Content Notice on Steam Store

Requirements

You will need a UserStyle extension for your web browser. For Safari I use Cascadea. For Chrome and Firefox you can use Stylus. Choosing a UserStyle extension is left as an exercise for the reader.

Installation

Once your choice of extension is installed, reload this page, and then click here. You should be prompted automatically to apply the UserStyle.

/* ==UserStyle==
@name Hoist Content Notice on Steam Store
@author Jessica Stokes
@version 1.0.0
@namespace net.jessicastokes
@preprocessor default
==/UserStyle== */
@-moz-document domain("store.steampowered.com")
{
.game_description_column {
display: flex;
flex-direction: column;
}
.franchise_notice,
#earlyAccessHeader,
#game_area_purchase,
.steam_curators_block,
div.game_page_autocollapse_ctn:has(#game_area_content_descriptors) {
order: -1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment