Delete bubble message icon

I’d like to know if it’s possible to remove the message bubble from ads using css code?

Thank you very much!

Hi,

Please send a screenshot of what you mean and we will try to help.

sorry for the delay in replying, I’m sending you a photo of the bubble at the bottom, if it can be removed with a code I’d love to have it! thanks ?
hivepress community

Hi! You can hide the bubble with this css:

.hp-listing__footer .hp-listing__action--message {display:none;}

or, because the listing footer not display other element, you can hide the entire listing footer with this:

.hp-listing__footer {display:none;}
1 Like

thank’s lot !!