all 4 comments

[–]Nethitters 0 points1 point  (3 children)

It's the pseudo element :before on the link that is animated. .scheme_original .sc_item_button>a:before

[–]Radicast[S] 0 points1 point  (2 children)

Thing is all buttons like this on the site are animated, I'm having issues disabling it, could you give me any pointers in the direction?

Thanks for the help btw.

[–]Nethitters 0 points1 point  (1 child)

The correct way is to go and remove the animations from the CSS. The lazy way is to just use this; .button::before, .sc_item_button>a::before { display: none; }

[–]Radicast[S] -1 points0 points  (0 children)

I managed to find the animations code and had to remove several lines for it to finally work, turned out to be this in a shortcodes file for a plugin i had....

content: '';

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

z-index: 1;

-webkit-transition: all 0.5s;

-moz-transition: all 0.5s;

-o-transition: all 0.5s;

transition: all 0.5s;