Dec 20, 2023 11:15 am
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...
Website URL
1 Reply
Dec 20, 2023 11:28 am
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.