Search…

X3 Photo Gallery Support Forums

Search…
 
User avatar
bixo
Experienced
Topic Author
Posts: 24
Joined: 30 Dec 2006, 08:13

Disable Mobile Gallery image description?

15 Jan 2013, 17:59

Is ist possible to disable the image description overlay with Custom CSS? I had a look at the imagevue.mobile.css but I can't find the code to disable it.
Thanks!
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13998
Joined: 30 Sep 2006, 03:37

Re: Disable Mobile Gallery image description?

16 Jan 2013, 01:27

You mean when viewing an image in mobile? The description only shows when tapping an image ...
 
User avatar
bixo
Experienced
Topic Author
Posts: 24
Joined: 30 Dec 2006, 08:13

Re: Disable Mobile Gallery image description?

17 Jan 2013, 17:57

Yes the that's what I meant.
You can disable the image title with
.iv-header h1 { display: none }
but how do you disable the description?
Thx.
 
User avatar
Nick
Imagevue Hitman
Posts: 2872
Joined: 02 May 2006, 09:13

Re: Disable Mobile Gallery image description?

19 Jan 2013, 05:42

I think you can add the following to mobile css:

.ps-caption-bottom { display:none !important; }
firedev.com
 
User avatar
bixo
Experienced
Topic Author
Posts: 24
Joined: 30 Dec 2006, 08:13

Re: Disable Mobile Gallery image description?

19 Jan 2013, 15:57

Didn't work, but it helped me to find the solution.

.ps-caption-content { visibility:hidden }

does the trick.

I hope you are not bothered by our somewhat finicky questions.
You did a great job with the moblie version and I am especially fond of the possibilty to edit custom css!
 
User avatar
Nick
Imagevue Hitman
Posts: 2872
Joined: 02 May 2006, 09:13

Re: Disable Mobile Gallery image description?

21 Jan 2013, 05:32

Hmm strange it didn't work, I checked before posting, glad you found a way to suppress it anyway.
firedev.com
 
scoolteam
Posts: 2
Joined: 20 Aug 2013, 11:20

Re: Disable Mobile Gallery image description?

20 Aug 2013, 12:39

What I'm interested in is just the opposite: to always have the title and the description visible if you tap the prev and the next-buttons. Presently title and description disappear after five seconds ( the reason is that very often you do not need a title for every picture. So if there are some pictures with and some without titles, you always have to tap the screen to check if there is a title). is there perhaps a parameter to alter, so that title and descrition are constantly visible when tapping?
 
User avatar
Nick
Imagevue Hitman
Posts: 2872
Joined: 02 May 2006, 09:13

Re: Disable Mobile Gallery image description?

28 Aug 2013, 01:52

Sorry, for delay, you can add the following code to iv-includes/assets/js/imagevue.mobile.js on line 220 inside function setOptions():
Code
captionAndToolbarAutoHideDelay: 0,
But then you would have to add the following CSS to Settings > CustomCSS > Mobile to hide the "play" button that is hovering in the middle of the screen.
Code
.ps-toolbar-play { display: none !important; }
firedev.com
 
scoolteam
Posts: 2
Joined: 20 Aug 2013, 11:20

Re: Disable Mobile Gallery image description?

16 Oct 2013, 11:37

Thanks a lot, works really fine. Following your suggestion disables the automatic slide show but does not matter for me so much. I consider it more helpful to have the description always visible. Great support.