Topic: Add a logo to the right of the home icon

I'd like to add a logo to the right of the home icon at the top left. How can I do that?

Second option is to have my logo as a backgound but repeated like is now. I've not see the repeat option for the bg in the builder. Is it possible?

Re: Add a logo to the right of the home icon

I'd like to add a logo to the right of the home icon at the top left. How can I do that?

You could use an image as the Gallery Title and center it horizontally in your gallery by setting galleryTitleHAlign="CENTER". Please see the Adding a Logo support section for further details.

Alternatively, you could use an image as the Back Button itself by using settings such as:

backButtonPosition="TOP"
backButtonUseIcon="FALSE"
backButonUrl="http://www.example.com/"
backButtonText="<img src="logo.png" width="100" height="50" alt="logo" />"

If using JuiceboxBuilder-Pro to create your gallery you could just enter something like the following into the backButtonText field (JuiceboxBuilder-Pro will escape the necessary characters for you):

<img src="logo.png" width="100" height="50" alt="logo" />

Second option is to have my logo as a background but repeated like is now. I've not see the repeat option for the bg in the builder. Is it possible?

It is not possible to tile/repeat an image as a gallery background using the Background Image Options.
You would need to set your gallery's background to be transparent (setting backgroundColor: 'rgba(0,0,0,0)'  in the embedding code) and set your background image on your embedding web page via HTML and CSS using the CSS background-repeat property.