Support » Theme: Formation » featured text box 1,2 and 3 not aligned in one row

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi
    I turned the spin off by adding this to the css
    .featuretext img:hover{-webkit-transform:none;-moz-transform:none;-o-transform:none;}
    This works in Firefox, but not Chrome. I haven’t tested in Opera.

    Theme Author Template Express

    (@danstriker)

    yes the above is fine or you can just remove it entirely 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);
    }

    Great! Have commented that out, thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘featured text box 1,2 and 3 not aligned in one row’ is closed to new replies.