Dawn - Remove unwanted button from multicolumn section

Hello guys

I have implemented some custom coding provided by the community but now there seems to be a button which I can’t remove from one of the multicolumn sections. By looking at the block settings, nothing is written to the button text. The button appears as soon as I write a description to the column.
Does somebody know how to get rid of it?

Here is a preview link of the store: https://nret3xk8yfsz0i78-60215460006.shopifypreview.com

Thank you in advance!

Hi @sisaul ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/section-multicolumn.css->paste below code at the bottom of the file:
.multicolumn .button {
    display: none !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

3 Likes

Hi @AvadaCommerce ,

I would like to remove the multicolumn button only from that specific block. The provided code removes the button from every section.
Do you know how to apply it only on the section at the bottom of the page?

Thank you in advance!

Hi @sisaul ,

You can try below code in section-multicolumn.css file:

#shopify-section-template--15270810747046__1649096590657e96a9 a.button.button--primary {
    display: none !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

3 Likes

Hi @AvadaCommerce ,

This seemed to do the trick.
Many thanks!

Perfect :+1: