Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
0

Website layout, forced mobile layout

A topic by Harley Torrisi created Apr 17, 2019 Views: 1,149 Replies: 3
Viewing posts 1 to 5

Hello,

I have disabled screenshots in the layout setting of the theme editor.
As I am designing my page with added CSS and am going for a different layout.

This looks as expected in desktop view, but when the width shrinks to a mobile size it shows either the feature or screenshots and adds a title text. This is not based on having custom CSS as it behaved that way before having CSS enabled.

Can someone please advise of a way to stop this?

Wide:

Narrow:


Thank you in advance :) 

Moderator moved this topic to itch.io tips

Just in case anyone faces the same issue, I resolved it by adding these lines of CSS.
One will hide the images, the other will hide the above text like "A downloadable etc..."
By having the P next to header_buy_row, its accessing the text. If you want to completely disable the top download area, take out the P and the the visibility/height modifiers.  

.right_col.column {
visibility: hidden;
height: 0px;
}

.header_buy_row p {
font-size: 0;
}

:) 

Admin (1 edit)

Your screenshots are broken, they are direct links to images in an email client that public internet doesn't have access to. I can take a closer look if I can see the images. Thanks

Ahh, thanks for that. My bad.
Issue is resolved now but images added for reference if anybody in the future has the same problem..