• Hi,

    Thanks for a great plugin!

    My website is http://johnnysblogg.se and I’ve started to use Circles Galleries on my images.

    I’m using the Circles Gallery Free and it is version 1.0.10

    However, I found a problem when using ‘hover_effect=”none”‘ on my images. The result is that the hover-effect constantly is on when hover_effect is set to “none” so that you can’t see the actual image.

    I solved this by making a change in ‘public.css’:

    Before:

    .ih-item.circle .info {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        text-align: center;
        border-radius: 50%;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden; }

    After:

    .ih-item.circle .info {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        text-align: center;
        opacity: 0;                               <<<---- Added this
        border-radius: 50%;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden; }

    Since I now have solved the problem on my site you only can see the result on http://johnnysblogg.se/about – however I don’t think it should be any problems for you to reproduce the fault

    Best Regards
    Johnny Eriksson
    Sweden

    https://wordpress.org/plugins/circles-gallery/

The topic ‘hover_effect="none"’ is closed to new replies.