On Click Pop Up Not Working
I created an onclick pop up in my site for a newsletter and it worked great. I then proceeded to create another one. I used the exact same format, I just changed my CSS a little bi
Solution 1:
Ok! Found the issue after looking at buyfarbest.com.
Check your /Style.css
file. Lines 1544-1548 aren't valid CSS (you can't have CSS properties without them being nested in a selector:
-webkit-transition: background 300ms ease-in 200ms; /* property duration timing-function delay */
-moz-transition: background 300ms ease-in 200ms;
-o-transition: background 300ms ease-in 200ms;
transition: background 300ms ease-in 200ms;
cursor: pointer;
Since they come right before the .productquickviewcontainer
selector, that selector gets ignored.
If you delete those lines, you should be good!
Post a Comment for "On Click Pop Up Not Working"