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.
Is there a way to slightly raise the position of the wpDiscuz comment bubble when it is set to the "content left" position? I ask because I recently started running a small floating footer ad on my site, and on phone displays, the ad covers most of the comment bubble (see screenshot). One can still click/tap on the bubble, but I'd like it to be above the ad, rather than obscured by it. Thanks!
Hi @dailynous,
Please use the CSS code below:
@media screen and (max-width: 600px){
#wpd-bubble-wrapper {
bottom: 70px;
}
}
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.
That worked. Thank you very much!