How Do I Remove this, "Join Our Community" button?

This button is from the Shopify Collab App, Formally known as Dovetale. When I go into my settings on Shopify and into the app’s settings, there is no way to remove it. I did not put this on my website and I want it off because it overwhelms my website and covers the actual buttons that I have placed there.

https://rebirthjewelry.com/

1 Like

Hi @rebirthjewelry , go to edit code > assets > base.css and add this:

.dovetale-button{
display:none!important;
}

Do I just place it anywhere in the code or in a specific place?

You can place it at the beginning of the file. :slightly_smiling_face:

It’s still there

Hi @rebirthjewelry ,

You can actually remove the code that was added to your theme, but you need to find it though. If you cannot find the code, you can do the following instead

  1. From your Admin Page, click Online Store > Themes >Actions > Edit code
  2. In the Asset folder, open the base.css
  3. Paste the code below at the very bottom of the file.
div#dovetale-container {
    display: none;
}

Thank you soooooo much! That worked.