The Chat box gets covered
# 🤝help
b
I added the Chatbot to my website, and as you can see from my screenshot it often gets under certain sections. How can i prevent this from happening?

https://cdn.discordapp.com/attachments/1142022630489202750/1142022630862499841/Screenshot_2.png

https://cdn.discordapp.com/attachments/1142022630489202750/1142022631198031872/Screenshot_1.png

In the first case, it gets covered under the header
And in the second case it's under a normal website section
f
Set the chat bots z-index to 9999 in the chat bots css file or change the image or sections z-index to like 15
b
How do i do it @future-action-19564? I don't have a z-index line in my CSS code
b
add this line .bpw-floating-button {z-index:15}
f
Im not exactly sure but i think what @billowy-vase-60798 suggested is only for the widget but try that and if it doesnt work add this line too:
Copy code
.bpw-layout bpw-chat-container bpw-anim-fadeIn{z-index:9999}
this references to the entire chat container and sets it to be above everything else by default. And you can check the class names for things like this by just pressing f12 on your website and hovering over what you want to check 🙂