Topic: return to home button

where would i add the code if i want to add a return to home page button at the bottom of my juicebox galleries

Re: return to home button

Juicebox-Pro supports a Back Button (which you can use to link to any URL you wish).
The Back Button configuration options can be found here.
Please note that the Back Button can be positioned TOP, OVERLAY or NONE (but cannot be positioned at the bottom of the gallery) and is available only in Juicebox-Pro galleries (and not in Juicebox-Lite galleries).

Alternatively, you could overlay an HTML hyperlink on top of the gallery using HTML and CSS, such as the following in the <body> section of your page:

<div id="overlay" style="position: absolute; bottom: 10px; left: 10px;">
    <a href="../index.html">Click here to return to home page</a>
</div>