Hey there,
That didn’t work.
My thumbnail jpgs are this size:
• 4/3 – Wide Tall – 1000px x 750px
• 4/3 – Tall – 375px x 750px
• 4/3 – Wide – 1000px x 375px
• 4/3 – Standard – 500px x 375px
The Multi Size Masonry Ratio is set to 4/3
The code in the php file says this:
if ( $display_type == “multi-size-masonry” ) {
if ( $multi_size_ratio == “4/3” ) {
if ( $multi_size == “wide-tall” ) {
$thumb_width = 1000;
$thumb_height = 750;
} else if ( $multi_size == “tall” ) {
$thumb_width = 375;
$thumb_height = 750;
} else if ( $multi_size == “wide” ) {
$thumb_width = 1000;
$thumb_height = 375;
} else if ( $multi_size == “standard” ) {
$thumb_width = 500;
$thumb_height = 375;
$video_height = 375;
Do you have any other ideas to get this feature to work?
I don’t understand why the images are stacking the way they are as well with all the gaps. I would have thought that the large tile would sit to the left, then the two standard tiles and tall tiles could sit to the right with now gaps.