New Botpress chatbot design doesn't fit smartphone...
# 🤝help
m
The new design of the chatbot doesn't fit the smartphone screen. Not even responsive. Users can't see some of the text.
f
It currently uses a height of 100% in mobile. So if your website uses a mobile menu that is absolute it will be ontop of the chat. You can change the height to 90% for mobile in the advanced styler
Find this section and make the height 90% as shown below: /* Responsive design rules for devices with width less than or equal to 767px */ @media screen and (max-device-width: 767px) { .bpw-layout { width: 100% !important; height: 90%; right: 0; bottom: 0; border-radius: 0; } }
57 Views