Skip to main content

How can I remove the link of a button block?

Comments

1 comment

  • Ariel H.

    Hi Natan,

    Thank you for reaching out to us.

    To achieve this, you can assign a class ID to the column containing the buttons. With this class ID, you'll be able to specifically target the button using CSS to disable pointer events and text decoration.
    This is demonstrated on this screencast:  https://youtu.be/cLbbF2RMpIY

    Here is the CSS:

    #noclick {
       text-decoration: none;
        pointer-events: none;
    }

    You can add this CSS into your project settings if you are using Brizy Cloud. For Brizy WP users, simply navigate to "Appearance" → "Customize" → "Additional CSS" to insert the above CSS. Don't forget to apply the class ID to the column that contains your buttons.

    Please try this and let me know how it goes.

    Best regards,
    Ariel H.

    0

Please sign in to leave a comment.