Create buttons

In addition to customizing existing buttons, you can also create buttons. You need a Business or Enterprise subscription to do this.

  1. Enter the button text you want in the relevant text field for your Riddle.
    enter button text
  2. Hyperlink the text to your website in the rich text editor.
    hyperlink text
    enter hyperlinked site text
  3. Open the HTML option in the rich text editor.
    open html editor
  4. Locate the starting <pp> tag surrounding the text and link you added.
    locate the p tag
  5. Replace <p> with <p class="custombutton">.
    change p tag
  6. Go to Palette, click on customize, scroll down to Custom CSS and click on EDIT.
    go to edit custom css
  7. Copy this custom CSS code and paste it into the grey CSS field:
    .custombutton, .custombutton a:link, .custombutton a:visited, .custombutton a:active {
        background-color: black;
        color: white;
        text-align: center;
        text-decoration: none;
        font-weight: 600;
    }
    
    .custombutton {
        width: 49%;
        padding: 15px;
        border-radius: 40px;
        border: 3px black;
        margin: auto;
    }
    

    copy and paste custom css code
  8. Click on FORMAT CODE and SAVE. Change the colors, font weight, border color, and radius in the code to your liking and save again.
    format and save custom css