In the album block, the letters of the album name that are larger below the line are not displayed correctly.
For example, the letter "g"; "y" it looks like these letters are cut off below.
faulty: 
correctly: 
I have a solution:
Affects the code in lines 14 and 15 in: "phpbbgallery\core\styles\prosilver\template\gallery\albumlist_polaroid.html"
old code:
<p style="white-space: nowrap; overflow: hidden; text-overflow: ellipsis;"> <a href="{albumrow.U_VIEWALBUM}" style="font-weight: bold; font-size: 1.2em; display: inline;<!-- IF S_PERSONAL_GALLERY and albumrow.ALBUM_COLOUR --> color: {albumrow.ALBUM_COLOUR};<!-- ENDIF -->">{albumrow.ALBUM_NAME}</a>
new code:
<p style="white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: bold; font-size: 1.2em; margin-bottom: 1em;"> <a href="{albumrow.U_VIEWALBUM}" style="display: inline;<!-- IF S_PERSONAL_GALLERY and albumrow.ALBUM_COLOUR --> color: {albumrow.ALBUM_COLOUR};<!-- ENDIF -->">{albumrow.ALBUM_NAME}</a>