GetSimple Support Forum
Responsive i18n gallery please - Printable Version

+- GetSimple Support Forum (http://get-simple.info/forums)
+-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3)
+--- Forum: Plugins (http://get-simple.info/forums/forumdisplay.php?fid=13)
+--- Thread: Responsive i18n gallery please (/showthread.php?tid=5413)



Responsive i18n gallery please - andyash - 2013-12-02

Hi Mvlcek,

I am making my client's GetSimple site into responsive. I have got everything else figured out and done except the i18N Gallery slideshow in the homepage header.

Somehow the code

width: 95%;
height: auto;

is not working, even though with the same css I have successfully made the site images responsive.

Help please?


RE: Responsive i18n gallery please - shawn_a - 2013-12-03

try width:95% !important;


RE: Responsive i18n gallery please - andyash - 2013-12-03

(2013-12-03, 00:04:21)shawn_a Wrote: try width:95% !important;

This doesn't work either. My guess is the cycle plugin code is picking up image dimensions and creating on the fly css which is outputting the width and height. It shows in the view-source as well as shown below.

Code:
<style type="text/css">
      #gallery-cycle-slideshow.gallery-cycle {
        width: 960px;
        height: 400px;
      }
      #gallery-cycle-slideshow.gallery-cycle .gallery-container {
        width: 960px;
        height: 400px;
        position: relative;
      }
      #gallery-cycle-slideshow.gallery-cycle .gallery-text {
                  position:absolute;
          width: 960px;
          bottom: 0;
          background: rgba(0,0,0,0.5);
          color: white;
              }
      #gallery-cycle-slideshow.gallery-cycle .gallery-image {
        width: 960px;
        height: 400px;
      }
      #gallery-cycle-slideshow.gallery-cycle .gallery-control {
                  left: 442px;
          text-align: center;
              }
    </style>
Also disabling the css in gallery settings removes the gallery altogether.


RE: Responsive i18n gallery please - eatons - 2013-12-03

andyash,
You might want to read this post from last year:
http://get-simple.info/forums/showthread.php?tid=4223&highlight=images

It has information you might be able to use.
…hope this helps!


RE: Responsive i18n gallery please - andyash - 2013-12-04

(2013-12-03, 02:49:11)eatons Wrote: andyash,
You might want to read this post from last year:
http://get-simple.info/forums/showthread.php?tid=4223&highlight=images

It has information you might be able to use.
…hope this helps!

I don't know if it'll work with a dynamic gallery, i'll try and let you know.