Search…

X3 Photo Gallery Support Forums

Search…
 
alderim
Experienced
Topic Author
Posts: 75
Joined: 27 Jun 2007, 05:49

list menu disable preview image

05 Dec 2016, 06:53

Hi,

is it possible to disable/hide the preview image on the right side in the list-menu?

thx for a hint!

Al
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: list menu disable preview image

05 Dec 2016, 09:02

alderim wrote:is it possible to disable/hide the preview image on the right side in the list-menu?
It's not a setting, but you can achieve it by adding custom CSS to settings -> custom -> custom CSS:
Code
body[class*='topbar'] .mega.list .list-inner {
  width: 100%;
}
.mega.list .preview {
  display: none;
}
 
alderim
Experienced
Topic Author
Posts: 75
Joined: 27 Jun 2007, 05:49

Re: list menu disable preview image

05 Dec 2016, 09:21

Perfect & Thx for the support!

Al