Page 1 of 1

Gallery-description in menus

Posted: 23 Sep 2020, 07:20
by mic112
Hey everyone,

after some time I started to fiddle around with X3 again and encountered a small issue with gallery-description text in menus - see screenshots (one from my local server, one from Karl's site).

Any idea how to fix this?

Regards, Michael

Re: Gallery-description in menus

Posted: 23 Sep 2020, 11:01
by mjau-mjau
Indeed. This is a new bug and it will be fixed in a new X3 release coming in two weeks time!

In the meantime, it can be fixed by adding the following to Settings > Custom > Custom CSS:
Code
.mega-preview p {
  white-space: normal !important;
}

Re: Gallery-description in menus

Posted: 23 Sep 2020, 11:33
by mic112
mjau-mjau wrote: Indeed. This is a new bug and it will be fixed in a new X3 release coming in two weeks time!

In the meantime, it can be fixed by adding the following to Settings > Custom > Custom CSS:
Code
.mega-preview p {
  white-space: normal !important;
}
Sorry, the quickfix does not work for me. Clear caches (browser-cache too), but to no avail.

Michael

Re: Gallery-description in menus

Posted: 24 Sep 2020, 00:15
by mjau-mjau
Sorry my bad. That fix only worked for the topmost link. Use the below instead, tried and tested successfully:
Code
.mega.list .preview p {
  white-space: normal;
}

Re: Gallery-description in menus

Posted: 24 Sep 2020, 08:25
by mic112
That did the trick. Many thanks.

Michael

Re: Gallery-description in menus

Posted: 04 Jan 2021, 05:13
by mjau-mjau
This was resolved in X3.30.0 / forum
photo.gallery/blog/photo-gallery-x3-30-popup/
mjau-mjau wrote:Use the below instead, tried and tested successfully:
Code
.mega.list .preview p {
  white-space: normal;
}
After updating to X3.30.0, I recommend removing the custom CSS above.