Options

Windows 8.1 - tablet and Collage Landscape captions

jkingletjkinglet Registered Users Posts: 73 Big grins
edited February 9, 2015 in Bug Reporting
On-going bug for several months now. No resolution. To reiterate: Collage Landscape rollover-for-caption feature for the image thumbnails will not work in Chrome (latest version) on Windows 8.1 on my tablet (Surface Pro 3). The title and caption are fixed over the thumbnail image. CSS Works as written in other browsers on my tablet (title only on rollover). Feature in Chrome works fine on Windows7 desktop, laptops. Any resolution forthcoming? Couldn't find the original post, sorry.

Comments

  • Options
    leftquarkleftquark Registered Users, Retired Mod Posts: 3,784 Many Grins
    edited February 9, 2015
    Hi jkinglet,
    I think we came up with a workaround here: http://www.dgrin.com/showpost.php?p=1983332&postcount=45. The CSS fix should take care of it.

    The code (copied from the other thread so you don't have to redirect over there):
    /* Hide the title / caption bar by default */
    .sm-browser-chrome .sm-gallery-images .sm-tiles-info-over .sm-tile-info {
      display: none !important;
    }
    
    /* On hover, display the title / caption bar */
    .sm-browser-chrome .sm-gallery-images .sm-tiles-info-over .sm-tile:hover .sm-tile-info {
      display: block !important;
    }
    

    Chrome for Windows 8.1 tells us that it's a touch device even though you have a mouse attached. It doesn't tell us that there's a mouse so we assume that you're using the device as a tablet without a mouse. If there's no mouse attached then the hover effects won't work so we disable them and show the captions at all times.
    dGrin Afficionado
    Former SmugMug Product Team
    aaron AT aaronmphotography DOT com
    Website: http://www.aaronmphotography.com
    My SmugMug CSS Customizations website: http://www.aaronmphotography.com/Customizations
Sign In or Register to comment.