[Solved] Non clickable button [closed]


If you are talking about the green button with the white heart then it’s a small fix.

When you try to click the button you actually clicking the fixed div that contains all the floating text, because the element is in position: fixed; z-index: 1.

The element that holds the button <div class="a">, add to it the following css position: relative; z-index: 2; and your done!

Hope this is what you needed =]

0

solved Non clickable button [closed]