Hey Ross, you’re the second person to ask for that today, so I guess I should add that feature. Look for it in the next release 🙂
Hey Scott, thanks mate ill keep an eye out. Until then, is there a way to hide Holler Box on mobile. Something like #holler-box {display: none;} in teh responsive section of my css for screen size?
Thanks heaps, love the plugin by the way. Its elegant and non intrustive
Ya you could use a media query, like:
@media (max-width: 600px) {
.holler-box { display: none; }
}
In version 0.8 boxes will load hidden first on mobile. This is better UX, plus it ensures there are no SEO penalties for blocking mobile content. 0.8 will be released later this week.