How can I make my popup interface full-screen?
Hey, how can I make my chat-interface full screen after pressing the button? Any tips appreciated
3 Replies
Here are two easy ways to turn the Voiceflow chat popover / widget into a full-screen experience after the visitor clicks a button:
---
1. Use the
Full API & styling docs → https://docs.voiceflow.com
embed
render-mode and grow it to the viewport
Add one CSS rule so the embedded frame fills the screen:
---
2. Keep the default popover and overwrite its overlay size
If you’re already using renderMode: 'popover'
, just target the overlay container:
Then open it from your own launcher:
Both approaches rely on the same two ingredients provided by the Web-Chat API:
• renderMode
(widget / popover / embed)
• window.voiceflow.chat.open()
to programmatically show the interface
Feel free to tweak margins, shadows, or z-index to match your brand.Full API & styling docs → https://docs.voiceflow.com
graceful-blue•3mo ago
There is also an option called 'popover' and 'embed' on the 'interfaces' tab in Voiceflow
Yes I know but they are not full screen I think?