I don’t need reciprocal links, so extrader’s solution works for me as well. Thanks!
Thread Starter
dmaier
(@dmaier)
It looks like this was a problem with how our CDN cached our live site – it was interfering with some of the dynamic features of this plugin. We’ll have to find a different plugin, but that’s not this plugin’s fault
You might try a CSS media query that hides the popup for screens below a certain width. Something like:
@media (max-width:500px) {
div.visiblebox { display:none; }
}
(untested)