Issue with WOW Slider

Im using Google Chrome, im having issues with the Slider, The image offsets after transition. Take a Look:

PS: Lower your Volume, it has an AutoPlayer Soundcloud Player

Hi,

This is a bit of a hack as obviously the image shouldn’t be jumping but you could try offsetting the jump.

e.g.


#wowslider-container1 a {
    margin: -20px 0 0 -30px;
}

Solved the issue

Initial Code:
#wowslider-container1 a {
border: medium none;
outline: medium none;
text-decoration: none;
}

Added the padding property this way:

#wowslider-container1 a {
border: medium none;
outline: medium none;
padding: 0;
text-decoration: none;
}

Yes glad you sorted it :slight_smile: (I should have noticed the padding)