Limited Support
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.
Please give me an update or guide for changing the Bubble position from the bottom...Specifically on the mobile user interface, the Footer mobile ad covers the bubble.
Please find the attached screen...
The CSS code for changing the position of the bubble on mobile devices is as follows:
@media screen and (max-width: 600px){
#wpd-bubble-wrapper.wpd-left-corner, #wpd-bubble-wrapper.wpd-left-content {
bottom: 150px !important;
}
}
In general, you can use the CSS code below. It'll change the position of the bubble on both desktop and mobile devices:
#wpd-bubble-wrapper.wpd-left-corner, #wpd-bubble-wrapper.wpd-left-content {
bottom: 150px !important;
}
Put the code in the "Custom CSS code" textarea, located in the Dashboard > wpDiscuz > Settings > Styles & Colors admin page.
The red-marked value can be changed as you like.
Don't forget to delete the caches before checking.