Tips: Launch
Learn how to hide the Helply Widget on specific pages for mobile users to better control visibility and optimize the mobile experience.
If you need to hide the Helply widget on certain pages when viewed on mobile screens, you can do so using CSS. This is especially useful for avoiding overlap.
Let’s say you want to hide the widget on the Communication page:
class="communication-page">
2. Use the following CSS to hide the Helply widget only on mobile screens (max width 768px):
.communication-page #helply-agent-root-container {
@media (max-width: 768px) {
display: none !important;
}
}
✅ Make sure this CSS is included in your main stylesheet or wherever you manage global styles for the page.