Inline iframe
Instead of the floating launcher, you can embed the assistant inline using an iframe — useful for dedicated help pages, support portals, and intranets.
Basic iframe
Section titled “Basic iframe”Place this inside any page section:
<iframe src="https://pageclerk.com/chat/YOUR_CHATBOT_ID" width="100%" height="700" frameborder="0" style="border-radius: 16px; border: 1px solid #e4e4e7; box-shadow: 0 4px 16px rgba(0,0,0,0.06);"></iframe>Responsive full-height container (recommended)
Section titled “Responsive full-height container (recommended)”For dedicated support or help pages, wrap the iframe in a responsive container:
<!-- Responsive container for the PageClerk iframe --><div style="width: 100%; max-width: 800px; height: 75vh; min-height: 550px; margin: 0 auto;"> <iframe src="https://pageclerk.com/chat/YOUR_CHATBOT_ID" width="100%" height="100%" frameborder="0" style="border-radius: 16px; border: 1px solid #e4e4e7; box-shadow: 0 4px 20px rgba(0,0,0,0.06);" ></iframe></div>