flammy / imagebox

This dokuwiki plugin displays captions in a box drawn around an image.
https://www.dokuwiki.org/plugin:imagebox
GNU General Public License v2.0
5 stars 7 forks source link

Formatting difference with new version #129

Open uninvolving opened 11 months ago

uninvolving commented 11 months ago

Hello

A row of imageboxes that previously displayed side-by-side on the old version now display one underneath another in the new version.

For example,

[{{:a.png?300x200|caption a}}]

[{{:b.png?300x200|caption b}}]

[{{:c.png?300x200|caption c}}]\\

[{{:d.png?300x183|caption d}}]

[{{:e.png?300x200|caption e}}]

[{{:f.png?300x200|caption f}}]

...previously displayed 2 rows of 3 images, but now displays all 6 images one after another down the page. I can't figure out how to get back the old appearance.

rycks commented 9 months ago

same problem here ...

rycks commented 9 months ago

Here is the diff and the "solution" i hope:

image

i switch back to display:table-cell and my pictures display in table :)

calvinrw commented 5 months ago

i switch back to display:table-cell and my pictures display in table :)

Thanks, this worked for me. I added

div .thumb2 { display: table-cell; }

to userstyle.css via the Admin panel's advanced configurations section to get the old behavior back.