ExhibitBuilder layout changes?

We recently upgraded our ExhibitBuilder to version 1.0, and noticed a change to the image-list-right-thumbs page layout.

Previously, each block of text would wrap below the thumbnail of the item. This is also what is suggested by the "image-left-right-thumbs" icon.

Now, the text is in a column on the left and the image is on the right, and the text no longer flows over below the image.

The old layout.php generated HTML structured like this:

<div class="exhibit-item">
  <img ...>
  <div class="exhibit-text">
    blah, blah
  </div>
</div>

The new code generates HTML structured like this:

<div class="image-text-group">
  <div class="exhibit-text">
    blah, blah
  </div>
  <div class="exhibit-item">
    <img ...>
  </div>
</div>

I've been trying to make the text still flow by working with CSS, but I can't find a way to make text within one div flow around a sibling div. I don't want to mess with ExhibitBuilder's out-of-the-box layout.php, but maybe that's what I have to do?

I'll look into what the expected behavior is for that layout, and see if we need to change the layout or update the icon to more accurately describe it.

In the meantime, you can make your own layout as a modification of image-list-right-thumbs by making a copy of the directory for that layout, giving it a different name, and editing that copy of the layout.php.