Search…

X3 Photo Gallery Support Forums

Search…
 
mic112
Topic Author
Posts: 10
Joined: 20 May 2019, 12:03

Gallery-description in menus

23 Sep 2020, 07:20

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
Attachments
scrot_2020-09-22_230232.jpg
scrot_2020-09-22_230232.jpg (43.41 KiB) Viewed 3640 times
scrot_2020-09-23_131213.jpg
scrot_2020-09-23_131213.jpg (53.82 KiB) Viewed 3640 times
____
Michael
Galerie // Fotoblog
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13993
Joined: 30 Sep 2006, 03:37

Re: Gallery-description in menus

23 Sep 2020, 11:01

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;
}
 
mic112
Topic Author
Posts: 10
Joined: 20 May 2019, 12:03

Re: Gallery-description in menus

23 Sep 2020, 11:33

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
____
Michael
Galerie // Fotoblog
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13993
Joined: 30 Sep 2006, 03:37

Re: Gallery-description in menus

24 Sep 2020, 00:15

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;
}
 
mic112
Topic Author
Posts: 10
Joined: 20 May 2019, 12:03

Re: Gallery-description in menus

24 Sep 2020, 08:25

That did the trick. Many thanks.

Michael
____
Michael
Galerie // Fotoblog
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13993
Joined: 30 Sep 2006, 03:37

Re: Gallery-description in menus

04 Jan 2021, 05:13

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.