Topic: Frames are 65px whereas the flickr thumbnails are 85px [SOLVED]

Hi Support Team,

Note I've validated this page before asking.

The thumbnail (transparent white) frame (jb-idx-thb-frame) for the flickr images are 65px by 65px where as the loaded flickr thumbnails are 85px by 85px. Everything else seems ok just that frame.

Can you please advise - I'm only ever using flickr photoset images, in case that helps.

Thanks
Dale

Re: Frames are 65px whereas the flickr thumbnails are 85px [SOLVED]

btw its at http://www.bunchofcowboys.com/whereiliveandwork.html

Re: Frames are 65px whereas the flickr thumbnails are 85px [SOLVED]

It looks like your web page may use the border-box model and this is known to break the layout of Juicebox.
Try opening your gallery's 'jbcore/classic/theme.css' file in a plain text editor and add the following code to the file.

.juicebox-gallery a, .juicebox-gallery div, .juicebox-gallery h1, .juicebox-gallery h2, .juicebox-gallery h3, .juicebox-gallery h4, .juicebox-gallery p, .juicebox-gallery span, .juicebox-gallery u {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

Hopefully this will solve your problems.

This issue has been addressed and will be fixed in the next version of Juicebox.
If you would like to be notified when a new version is released, please join our mailing list at the foot of our homepage, follow us on Twitter @JuiceboxGallery or subscribe to our blog RSS feed.

Re: Frames are 65px whereas the flickr thumbnails are 85px [SOLVED]

This CSS issue has now been fixed in v1.4.0. Please see this blog entry for details.