Jul 27, 2023 9:14 pm
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!
Website URL
2 Replies
Jul 28, 2023 8:59 am
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.
Jul 28, 2023 9:52 am
That worked. Thank you very much!