Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

i tried to expand the tagline text area with custom CSS:

div.game_text {
height:250px;
}

..but it still doesn't show the full taglines, only the whitespace grows. any pointers?

(1 edit) (+1)

i figured it out. for anyone else who wants to show collections' full taglines on their game page, the custom CSS is

.game_grid_widget .game_cell .game_text {
white-space: normal;
}
(+1)

AHHH thank youuu