Question

I am new to css3 transitions so the fix is probably easy for you. I am busy with a new website where i want to rotate some images. In a new html document it works, but when i try to implement it to my website it does nothing. www.jsfiddle.net/NXRvB/

Was it helpful?

Solution

You have a negative z-index on #circelwrap which will prevent your :hover because you are moving the element behind its container.

#circelwrap {

    z-index: -1;
}

remove this and it works.

DEMO

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top