After upgrading to Koha 24.11 local cover images are display on the left in their own column. The HTML structure is: <tr> <td class="selectcol">...</td> <td class="numcol">...</td> <td class="itypecol">...</td> <td class="covercol">...</td> <-- cover image! <td class="bibliocol"> <div id="title_summary_63947" class="title_summary">...</div> </td> </tr> see https://katalog.bibliothekderfreien.de/cgi-bin/koha/opac-search.pl?idx=&q=Emma+Goldman&weight_search=1 Correct would be on the right as part of the bibliocol-column. The correct HTML structure is: <tr> <td class="selectcol">...</td> <td class="numcol">...</td> <td class="itypecol">...</td> <td class="bibliocol"> <div class="coverimages coverslides...">...</div> <-- cover image! <span class="Z3988" ...>...</span> <div id="title_summary_74324" class="title_summary">...</div> </td> </tr> see entry 5 of https://opac.monaliesa.de/cgi-bin/koha/opac-search.pl?idx=&q=test&weight_search=1 MonaLiesa gets the cover images from OpenLibrary (not local as above) and I don't know its Koha version(, in the first link above it is Koha 24.11). But they are rendered correctly there.
This is not a bug, it's a change in the page's design.
(In reply to Owen Leonard from comment #1) > This is not a bug, it's a change in the page's design. Hi Owen, do you remember which bug changed this behavior so we can link to it? I think it's OK, but might have come as a bit of a surprise to some.
Yes: Bug 26933