• Hi, how can a create a link using customizrs buttons,
    here is the code.

    <button class="btn btn-large btn-block" type="button">Block level button</button>

    I want to add a hyperlink to the code and any suggestions would be greatly appreciated.

Viewing 1 replies (of 1 total)
  • Did you try wrapping the button in an anchor tag?

    <a href="https://google.com"><button class="btn btn-large btn-block" type="button">Block level button</button></a>

    You’ll probably want to style the anchor tag a little differently for the button versus other links by assigning it a class and adding a CSS rule for it. You can also add an onclick function via JavaScript, but the anchor tag is easier.

Viewing 1 replies (of 1 total)
  • The topic ‘Create a link using Customizr buttons’ is closed to new replies.