Jump to content

Gallery - Remove Banner at a top of pictures


Bob Inhoff

Recommended Posts

Posted

I find the black banner at the top of the thumbnails in the Gallery- black box with "By Admin" or whoever posts - very distracting.  Many of the photos are historical portraits and the banner blocks the top part of the face.   Can I delete the banner or at least move it to the bottom of the photo.   Is location controlled by CSS?   If so, do you know how I can find it?  My preference would be to omit it.

Thanks

Posted

Has to do with the following HTML.

<div class="ipsPhotoPanel ipsPhotoPanel_mini">
  <img src="http://www.thumbnail.jpg" class="ipsUserPhoto ipsUserPhoto_mini">    
  <div>     
    <span class="ipsType_normal ipsTruncate ipsTruncate_line">Image Title</span>     
    <span class="ipsType_small ipsTruncate ipsTruncate_line">By Admin</span>    
  </div>   
</div>

Could treat it however you like to remove the black box that hovers the thumbnail.

  • 3 weeks later...
Posted

Adding this to our custom css worked for us: 

.cGalleryPatchwork_item .ipsPhotoPanel {
    visibility: hidden;
}
.cGalleryPatchwork_item:hover .ipsPhotoPanel.ipsPhotoPanel_mini {
    visibility: visible;
}

HTH!

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...