It certainly does but I have set it up as a child theme.
Further playing and got it to work, I commented the wrong bits out.
.link-effect a span {
display: inline-block;
position: relative;
/*-webkit-transition: -webkit-transform 0.3s;
-moz-transition: -moz-transform 0.3s;
transition: transform 0.3s;*/
}
.link-effect a span::before {
position: absolute;
top: 100%;
height:100%;
width:110%;
content: attr(data-hover);
font-weight: 700;
/*-webkit-transform: translate3d(0,0,0);
-moz-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);*/
}
So now in my child theme’s style sheet how can I get rid of these transforms & transitions or switch them off? Can I simply put none at the end of each one?
Thanks
Colin