vFranky Active member Jan 10, 2020 #1 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
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
island Active member Jan 14, 2020 #2 Found this thread: https://xenforo.com/community/threads/thumbnail-mouse-over.172844/ Upvote 0 Downvote
vFranky Active member Jan 14, 2020 #3 Thank you! But the problem persists when inserting images from the Media Gallery in a posting . Have a look, no titles ==> Upvote 0 Downvote
Thank you! But the problem persists when inserting images from the Media Gallery in a posting . Have a look, no titles ==>
Davey-UK Active member Jan 14, 2020 #4 EXTRA.Less Code: .itemList .itemList-itemOverlay { bottom: -15px; } Adjust bottom as required Upvote 0 Downvote
vFranky Active member Jan 14, 2020 #5 Davey-UK said: Adjust bottom as required Click to expand... Thank you, but the when I click to select an images from the Media Gallery while writing a post, nothing changes. Attachments 1579008853194.webp 350 bytes · Views: 1 Upvote 0 Downvote
Davey-UK said: Adjust bottom as required Click to expand... Thank you, but the when I click to select an images from the Media Gallery while writing a post, nothing changes.
Davey-UK Active member Jan 14, 2020 #6 Try: Code: .itemList.itemList--picker .itemList-itemOverlay { bottom: -15px; } Upvote 0 Downvote
vFranky Active member Jan 14, 2020 #7 Davey-UK said: Try: Click to expand... No, there are no image names visible without mouseover. Upvote 0 Downvote
vFranky Active member Jan 14, 2020 #9 Davey-UK said: Try 0px Click to expand... No, needs mouseover. Last edited: Jan 14, 2020 Upvote 0 Downvote
Davey-UK Active member Jan 14, 2020 #10 0px !important; Try that. But be advised that this may affect something else. if that doesnt work, post a link to your site. Upvote 0 Downvote
0px !important; Try that. But be advised that this may affect something else. if that doesnt work, post a link to your site.
vFranky Active member Jan 14, 2020 #12 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; } Upvote 0 Downvote
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; }