Forums/HTML5 websites/Customization Tips & Tricks

How to Hide Captions By Default

Dominik
posted this on June 22, 2012 06:33 am

Is it possible to "Show Image Captions" to "True", but still the bar only appears when clicking on the "i" button? So, if the first image is loaded, the image caption is not displayed.

 

Comments

User photo
michael sablone
intothedarkroom

Under Design > Developer > Custom Javascript

$(document).ready(function () {
	Galleria.ready(function() {
		$('.galleria-info-link').click();
	});
});
July 22, 2012 05:51 pm
User photo
Dominik

GREAT! THANKS! 

July 23, 2012 12:38 am
User photo
Bryce

I've wanted to use captions for several galleries during the past few months, but thought the captions were too visually dominating (a strip across the entire image!), especially for a first-time client/visitor.

Now my clients can turn captions on if they so chose, as I can mention this feature in the accompanying text or in my email  (and as a natural consequence, they will know how to turn captions off).

Very useful and makes my site more valuable to my clients. Thanks so much!

January 03, 2013 03:34 am