Dear Sir,
Good day to you.
On my website, I added a chatbot, but its icon is not responsive on mobile view. It overlaps the mobile panel, as shown in the screenshot:
📸 Screenshot 1: https://snipboard.io/hnUY0Q.jpg
Additionally, on the product page in mobile view, the chatbot button overlaps the sticky cart:
📸 Screenshot 2: https://snipboard.io/oxJbGw.jpg
I tried resolving this by adding the following code in Additional CSS, but the issue still persists:
/* =================================================================== */
/* == FINAL v4: Correct Positioning for Chatbot Icon on ALL Views == */
/* =================================================================== */
/* 1. Base Position (Desktop, regular pages) */
:root {
--skybot-icon-bottom-spacing: 30px !important;
--skybot-icon-right-spacing: 30px !important;
}
/* 2. Desktop Product Page Adjustment */
@media (min-width: 768px) {
body.single-product {
--skybot-icon-bottom-spacing: 80px !important;
}
}
/* 3. Mobile View Adjustment (Covers all mobile screen sizes) */
@media (max-width: 767px) {
/* This rule targets the plugin's main container on small screens */
#skybot-root {
bottom: 80px !important;
}
}
Even after applying this, the chatbot icon continues to overlap with the mobile panel and sticky cart.
Can you please guide me on how to properly fix this issue so that the chatbot icon always stays above the mobile panel and sticky cart in mobile view?
Thank you.