Search…

X3 Photo Gallery Support Forums

Search…
 
MaciejK
Experienced
Topic Author
Posts: 54
Joined: 25 Jun 2017, 14:27

Disable page title in list menu preview

28 Jun 2017, 09:55

Hi,

How to disable/hide the page title in preview on the right side in the list-menu?

I believe by custom CSS?

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

Re: Disable page title in list menu preview

29 Jun 2017, 14:37

MaciejK wrote:How to disable/hide the page title in preview  on the right side in the list-menu?
I believe by custom CSS?
Yes, but it's a hack, and might not be perfect:
Code
.mega.list .preview {
  display: none;
}
.list-inner {
  width: 100%;
}
 
MaciejK
Experienced
Topic Author
Posts: 54
Joined: 25 Jun 2017, 14:27

Re: Disable page title in list menu preview

02 Jul 2017, 07:56

This hack hides all the preview item actually, not only page title.
 
User avatar
mjau-mjau
X3 Wizard
Posts: 14452
Joined: 30 Sep 2006, 03:37

Re: Disable page title in list menu preview

02 Jul 2017, 08:41

Sorry, I thought you wanted to hide the entire preview image. Try this:
Code
.mega.list .preview h2 {
  display: none;
}
 
MaciejK
Experienced
Topic Author
Posts: 54
Joined: 25 Jun 2017, 14:27

Re: Disable page title in list menu preview

03 Jul 2017, 10:51

This is what i had on my mind. Works perfect. Thank you.