Page 1 of 1

Disable page title in list menu preview

Posted: 28 Jun 2017, 09:55
by MaciejK
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

Re: Disable page title in list menu preview

Posted: 29 Jun 2017, 14:37
by mjau-mjau
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%;
}

Re: Disable page title in list menu preview

Posted: 02 Jul 2017, 07:56
by MaciejK
This hack hides all the preview item actually, not only page title.

Re: Disable page title in list menu preview

Posted: 02 Jul 2017, 08:41
by mjau-mjau
Sorry, I thought you wanted to hide the entire preview image. Try this:
Code
.mega.list .preview h2 {
  display: none;
}

Re: Disable page title in list menu preview

Posted: 03 Jul 2017, 10:51
by MaciejK
This is what i had on my mind. Works perfect. Thank you.