Does anyone know how to hide all pockets on mobile?
I know bootstrap contains the feature, but since pockets only lets you edit the body, I cant link a css file/meta to it.
You can add this bit of CSS to the custom.css file of the mobile theme:
custom.css
@media (max-width: 480px) { .your-element { display: none; visibility: hidden; } }
Kasper Kronborg Isager (kasperisager) | Freelance Developer @Vanilla | Hit me up: Google Mail or Vanilla Mail | Find me on GitHub
Comments
You can add this bit of CSS to the
custom.css
file of the mobile theme:Kasper Kronborg Isager (kasperisager) | Freelance Developer @Vanilla | Hit me up: Google Mail or Vanilla Mail | Find me on GitHub