Topic: alt title not showing
Hi Steven,
I have exactly the same problem too. I have the pro version and im using the javascript implementation method like described here:
http://www.juicebox.net/support/embedding/
To this javascript i added the option --> addSEOContent: "true" like described here:
http://www.juicebox.net/support/config_options/
example part of my config.xml:
<juiceboxgallery
shareFacebook="true"
firstImageIndex="0"
galleryTitle="Limikolen">
<image imageURL="images/IMG_1551.jpg" thumbURL="thumbs/IMG_1551.jpg" linkURL="" linkTarget="_blank">
<title><![CDATA[Flussuferläufer]]></title>
<caption><![CDATA[]]></caption>
</image>
....
You can see, the title is "Flussuferläufer"
When im analysing what juicebox do (javascript implementation and index.html version):
<div class="jb-dt-main-image" style="position:absolute;top:0px;left:265px;height:678px;width:1016px;padding:0;overflow:hidden;border:none;box-shadow: 0px 0px 10px rgba(0, 0, 0, .4);">
<img alt="galleries/limikolen/images/IMG_1551.jpg" src="galleries/limikolen/images/IMG_1551.jpg" style="height: 678.4px; width: auto; -moz-user-select: none;">
</div>
You see, the alt="" is the same as src="" . Juicebox isn't using the <title> tag out of the config.xml.
How can i fix that?