Page 1 of 1

Folder margin on mobile devices

Posted: 04 Apr 2023, 11:50
by petri71
Hello,

Not sure this is a CSS customisation or I missed some settings so I post this here.

You can see in the image below that my folders are at 100% of the screen length.

http://www.coquille.org/x3/content/index/IMG_2805.PNG

How can I set a margin to make them a little smaller and not stick on both sides ?

Thank you in advance for your answer.

Re: Folder margin on mobile devices

Posted: 04 Apr 2023, 23:06
by mjau-mjau
The general idea is that images can span edge-to-edge, while text needs a margin of course.

Settings > Custom > Custom CSS, maybe something as simple as this:
Code
.folders {
  max-width: 95vw;
}

Re: Folder margin on mobile devices

Posted: 07 Apr 2023, 09:13
by petri71
works fine. 

thank you !