Topic: "SCALE_DOWN" does not appear to be working.

at http://malibu-gates.com/corrosion-resis … and-doors/ I have these options:

enableLooping="TRUE"
showImageNumber="TRUE"
imageScaleMode="SCALE_DOWN"
thumbWidth="40"
thumbHeight="40"
imagePreloading="NEXT"

I also have:


Gallery Width at 100% and Gallery Height at 600 


and yet there are many of the images which do not appear to be scaling down.

Can you assist?

Re: "SCALE_DOWN" does not appear to be working.

The problem seems to be originating from the following CSS in your '51924fc4b1f57.css' file (specifically line 6 - height: auto !important;):

img, video, .wp-caption {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 100%;
    height: auto !important;
}

These CSS rules are applied to all images on your web page, including those in your Juicebox gallery. Juicebox has no option but to inherit such generalized CSS rules.

Try removing this code (or applying the CSS rules to only those elements on your web page which require them through use of CSS selectors) and your Juicebox gallery's imageScaleMode should work as expected.