Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Jason

    (@jscrilla)

    I had the same problem. I resorted to editing the CSS gallery file to accomodate the smaller sizes I wanted.

    The #fullsize div found in the gallery-css.php file near the beginning sets the width and height of the div surrounding the slideshow. I left that as it was, copied the lines, then added the following to a new media query:

    @media only screen and (max-width: 600px) {
    #<?php echo $styles['wrapperid']; ?> { position:relative; width:320px; background:<?php echo $styles['background']; ?>; padding:0 0 0 0; border:<?php echo $styles['border']; ?>; margin:0; display:none; }
    #<?php echo $styles['wrapperid']; ?> #fullsize { position:relative; z-index:1; overflow:hidden; width:280px; height:175px; border: none;}
    #<?php echo $styles['wrapperid']; ?> #information { text-align:left; font-family:Verdana, Arial, Helvetica, sans-serif !important; position:absolute; bottom:0; width:<?php echo ($styles['width'] != "auto") ? ((int) $styles['width'] - 6) . 'px' : '100%'; ?>; height:0; background:<?php echo $styles['infobackground']; ?>; color:<?php echo $styles['infocolor']; ?>; overflow:hidden; z-index:200; opacity:.7; filter:alpha(opacity=70); }
    }

    Obviously you’d need to create media queries that made sense to your site and also change the fixed width and height attributes in the query sections. But this did work for my site.

    I’m sure this will be bad for auto updates on the plugin, but it was the only solution I could find.

    I’m having the same issue. Does anyone know why this is broken?

Viewing 2 replies - 1 through 2 (of 2 total)