Once you mastered our Email builder, you might want to tweak your email or landing page templates even more.

A simple HTM trick will help you to create the button of your dreams.

Go to your email builder and choose the text block:

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/ca9406b4-5f57-4600-ac84-00b80bfc5916/drag_text_block.png

Now you can edit the freshly added block by clicking on the Code View:

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/10920d69-0b3a-43e0-9b52-77d45a4b18fb/click_on_codeview.png

The text will turn into code, and this is where you can change colors and shape your button with a minimal HTML knowledge.

As first, let's copy the following code in, and I'll explain you each part. In no time you'll be a HTML magician. Here is the code:

<a class ="mobile-button" href="#" style="-webkit-text-size-adjust-100%;-ms-text-size-adjust:100%;font-site:16px; font-family: Helvetica, Arial, sans-serif; text-decoration: none; color: #ffffff; border-radius: 3px;padding: 15px 25px;border: 1px solid #256F9C; display: inline-block;background-color: #256F9C" target="_blank">Learn more&nbsp;</a>

Once you copied the code, you have to click on the Code View button again for the changes to take effect.

Now let's see which part of the code changes our button and how:

Underline

<a class ="mobile-button" href="#" style="-webkit-text-size-adjust-100%;-ms-text-size-adjust:100%;font-site:16px; font-family: Helvetica, Arial, sans-serif; text-decoration: underline; color: #ffffff; border-radius: 3px;padding: 15px 25px;border: 1px solid #256F9C; display: inline-block;background-color: #256F9C" target="_blank">Learn more&nbsp;</a>

By changing text-decoration: none to text-decoration: underline, you can underline your link. Looks like this:

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/53e51509-2ac7-4811-aa66-b73020bc6611/underline.png

Background Color

<a class ="mobile-button" href="#" style="-webkit-text-size-adjust-100%;-ms-text-size-adjust:100%;font-site:16px; font-family: Helvetica, Arial, sans-serif; text-decoration: underline; color: #ffffff; border-radius: 3px;padding: 15px 25px;border: 1px solid #256F9C; display: inline-block;background-color: #eb4034" target="_blank">Learn more&nbsp;</a>

By changing the value of your background color you can change the color of the button:

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/2a2e5457-1b4d-4f06-9e98-8807627be448/background-color.png

Okay, but where do I get that hexadecimal number after the # sign from?

Glad you asked. You can just type 'colorpicker' into Google, and it will give you a full featured color picker where you can choose a color you like, and you'll get the HEX code in return.

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/6116c50d-1fe5-4420-80a3-a4c7fd89a4f4/colorpicker.png

Font Size

<a class ="mobile-button" href="#" style="-webkit-text-size-adjust-100%;-ms-text-size-adjust:100%;font-site:40px; font-family: Helvetica, Arial, sans-serif; text-decoration: none; color: #ffffff; border-radius: 3px;padding: 15px 25px;border: 1px solid #256F9C; display: inline-block;background-color: #eb4034" target="_blank">Learn more&nbsp;</a>

By changing font size, you can make the font bigger. Looks like this:

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/91be6a78-bf65-4b64-b324-410105bc485c/larger_font.png

Font Color