Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter voglermc

    (@voglermc)

    I want to keep images just not have them spinning

    Theme Author Template Express

    (@danstriker)

    Hello,

    remove the following from the style.css file:

    .featuretext img{
    	-webkit-transition-duration: 0.8s;
        -moz-transition-duration: 0.8s;
        -o-transition-duration: 0.8s;
        transition-duration: 0.8s;
    
        -webkit-transition-property: -webkit-transform;
        -moz-transition-property: -moz-transform;
        -o-transition-property: -o-transform;
        transition-property: transform;
    
        overflow:hidden;
    
        }
    .featuretext img:hover{
    	-webkit-transform:rotate(360deg);
        -moz-transform:rotate(360deg);
        -o-transform:rotate(360deg);
    }
    Thread Starter voglermc

    (@voglermc)

    Thanks!

    Anonymous User 12851872

    (@anonymized-12851872)

    hi,
    should create a child theme, if not the next update of the theme codes will come back, it will start again.
    Create a child theme then the child theme style.css

    . featuretext img {display: none;}
    . featuretext img: hover {display: none;}

    unless the author is accused option “Custom CSS” in the theme?

    Create a child theme then the child theme style.css

    . featuretext img {display: none;}
    . featuretext img: hover {display: none;}

    That will actually remove icons totally, not sure if that’s what you want.

    NB. If you want to do that, copy the code as it is but remove the spaces between the periods and the featuretext.

    Creating a child theme is the start of the solution to stop the spin.

    What I did instead was add this to my child theme’s style.css:

    .featuretext img:hover{
        -webkit-transform:rotate(0deg);
        -moz-transform:rotate(0deg);
        -o-transform:rotate(0deg);
    }

    This just didn’t make it spin at all since this asks it to rotate 0 degrees.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘remove spinning images on home page?’ is closed to new replies.