Add Clickable "Buttons" to Your Content Fields

HTML Editor

Screenshot 2025-05-21 at 10.20.05 AM.pngHTML (HyperText Markup Language) is the code used to structure content on the web. It tells the browser what is a heading, paragraph, link, image, and more. To open the HTML editor on your content field, click the </> button (circled in orange in the image above.

Click here to learn more about using HTML with Involve.

Buttons

Buttons are a fun way to add visual interest and make a link stand out. The button code creates a rounded square that visitors can click, just like a regular link—but styled to look like a button.

For example:

<a href="https://example.com" class="btn">Click Here</a>
  • <a> is the tag for a link.
  • href="" is where you put the link’s destination.
  • class="btn" applies the button style to the link.

This turns a plain text link into a styled button that’s easier to notice and click.

 

Quick Colors

We provide the following quick color buttons to easily copy and paste into your HTML editor. 

User-uploaded Image

 

To insert a default button color. 

  1. Open the HTML editor </> in your content field.
  2. Copy and paste the code into your HTML editor </>.
  3. Replace LINK with the link to your desired website.
  4. Replace the bolded word with the text you want displayed on your button. For example, replace Default with Click Here to make your button read "Click Here."

1. Screenshot 2025-05-21 at 9.24.44 AM.png  <a href="LINK" class="btn btn-default">Default</a>

2. Screenshot 2025-05-21 at 10.47.12 AM.png <a href="LINK" class="btn btn-primary">Primary</a>

3. Screenshot 2025-05-21 at 9.24.53 AM.png <a href="LINK" class="btn btn-success">Success</a>

4. Screenshot 2025-05-21 at 9.24.57 AM.png <a href="LINK" class="btn btn-info">Info</a>

5. Screenshot 2025-05-21 at 9.25.02 AM.png <a href="LINK" class="btn btn-warning">Warning</a>

6. Screenshot 2025-05-21 at 9.25.05 AM.png <a href="LINK" class="btn btn-danger">Danger</a>

 

Customizing Colors

You can customize colors in a button by adding style="" into the code. Inside of the quotes, you can add what you are looking to customize.

Insert the follow code into your button to update the button color and text color.

style="background-color:purple;color:white;"

Screenshot 2025-05-21 at 9.48.03 AM.png

Here's an example of the code that created the button displayed above:

<a href="LINK" class="btn" style="background-color:purple; color:white;">Button name</a>

Screenshot 2025-05-21 at 9.47.35 AM.png

Here's an example of the code that created the button displayed above using HEX codes:

<a href="LINK" class="btn" style="background-color:#ffb7cc;color:#002454;" >Button name</a>

 

To insert a custom color button. 

<a href="LINK" class="btn" style="background-color:purple; color:white;">Button name</a>

  1. Open the HTML editor </> in your content field.
  2. Copy and paste the code above into your HTML editor </>.
  3. Replace LINK with the link to your desired website.
  4. Replace the bolded background color with the color or HEX code you want displayed on your button.
  5. Replace the bolded color with the color or HEX code you want displayed on your button text.

 

Customizing Size

You can change the size of a button by adjusting the "class" of the button.

  • class="btn btn-lg" makes a large button

  • class="btn" is the default button size

  • class="btn btn-sm" makes a small button

  • class="btn btn-xs" makes an extra-small button

     

 

Example of the code below:

<a href="LINK" class="btn btn-lg" style="background-color:purple; color:white;">Large Button</a> <a href="LINK" class="btn" style="background-color:purple; color:white;">Default Button</a> <a href="LINK" class="btn btn-sm" style="background-color:purple; color:white;">Small Button</a> <a href="LINK" class="btn btn-xs" style="background-color:purple; color:white;">X-Small Button</a>

1. Screenshot 2025-05-21 at 9.51.50 AM.png <a href="LINK" class="btn btn-lg" style="background-color:purple; color:white;">Large Button</a>

2. Screenshot 2025-05-21 at 9.51.44 AM.png <a href="LINK" class="btn" style="background-color:purple; color:white;">Default Button</a>

3. Screenshot 2025-05-21 at 9.51.55 AM.png <a href="LINK" class="btn btn-sm" style="background-color:purple; color:white;">Small Button</a>

4. Screenshot 2025-05-21 at 9.52.00 AM.png <a href="LINK" class="btn btn-xs" style="background-color:purple; color:white;">X-Small Button</a>

Was this article helpful?
0 out of 0 found this helpful
Have more questions? Submit a request

Comments

0 comments

Please sign in to leave a comment.