Search…

X3 Photo Gallery Support Forums

Search…
 
lecraft
Topic Author
Posts: 6
Joined: 07 Apr 2017, 07:20

Transparent Popup Slideshow

30 Apr 2017, 10:41

Sorry, I'm using Google translator.
Can i make Popup Slideshow transparent  Or delete it?
Attachments
Screenshot_1.jpg
Screenshot_1.jpg (529.24 KiB) Viewed 1773 times
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13998
Joined: 30 Sep 2006, 03:37

Re: Transparent Popup Slideshow

01 May 2017, 00:27

What version of X3 are you using? Since release X3 0.22, the popup topbar will auto-hide after a few seconds, so I am not quite sure why you want it removed ... If you remove it, depending on the aspect of the image vs screen, the icons in top right corner may be invisible to the visitor.

If you want to proceed, add the following to settings -> custom -> custom CSS:
Code
.pswp__top-bar {
  background-color: rgba(0,0,0,0) !important;
}
Or if you want to always hide the topbar, including the buttons:
Code
.pswp__top-bar {
  display: none !important;
}
 
lecraft
Topic Author
Posts: 6
Joined: 07 Apr 2017, 07:20

Re: Transparent Popup Slideshow

01 May 2017, 01:55

Code
.pswp__top-bar {
  display: none;
}
Thank you so much!