Hi, sorry for the late reply!
I assume you meant having the screenshot like in the mobile layout of the page?
You can force the mobile layout by setting it as flexbox and reverse the direction:
.columns {
/* Reverse the direction (screenshot column on top) */
flex-direction: column-reverse;
}
.columns > .column {
width: auto;
}
/* Set the screenshot list to display as if its on mobile layout */
.view_game_page .screenshot_list {
white-space: nowrap;
overflow: auto;
text-align: center;
font-size: 0;
}
.view_game_page .screenshot_list img {
display: inline-block;
margin: 0;
}