No image titles above albums in the Media Gallery

vFranky

Active member
Hello,

why are there no titles above images in the Media Gallery. There is a mouseover effect, but you always have to move the mouse to see the title.
Is there a switch to show the image titles above images somewhere in the style configuration of XenForo?

Kind regards,
Frank


1578668973581.png
 
Thank you very much!

This code added to the extra.less brings images and album descriptions in the XenForo Media Gallery, including the image picker =>

Code:
.itemList .itemList-itemOverlay {
    bottom: 10px;
}

.itemList.itemList--picker .itemList-itemOverlay
{
bottom: 10px !important;
}
 
Top Bottom