Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #274724

    Hi All,

    Is there a way to have the content element “button” not be a link? If I change the link setting to manual and live it blank, it still links to a dead page rather than not being a link at all.

    Also, is there an easy way to control the transparency of the button? Without using css for it?

    I provided a link for the moderators to see, I’m referring to the two middle images with button text floating over them.

    #274735

    Hi!

    You need to use CSS for both fixes, first enable this, set a class to that button and finally add this to the Quick CSS:

    .button_custom a{
    pointer-events: none;
    background: rgba(0, 0, 0, 0.4);
    }

    Cheers!
    Josue

    #275412

    Hi Josue,

    This helped a lot, thanks! I’m running into an issue with the rgba and the transparency though. I have it set at (68, 68, 68, 0.5), but it is still solid for me. I’m using both Firefox and Chrome to check the CSS.

    I’ve tried the opacity setting, but that makes both the background and the text fade. Am I missing something small?

    #275416

    Hey!

    You need to target the link element inside .custom_button, this will do it:

    .button_custom a {
        background: rgba(68, 68, 68, 0.5) !important;
    }

    Regards,
    Josue

    #275423

    Perfect! Thanks!

    #275428

    You are welcome, always glad to help :)

    Regards,
    Josue

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Removing link from Buttons’ is closed to new replies.