How to add a button inside of rich text with latest update

Hi there,

As you already know, Webflow made a massive update about the Rich text.

I want to add a download button inside of rich text for my blog post. I will insert a link.

How can I do this?

I think it is super simple, but lack of code knowledge turns an obstacle to me.

Thanks in advance

Here is a simple code example of a button wrapped in a link. If you required styling other than Webflow’s default, then create a button somewhere, style it with a class, add a class to the button. The link should point to the URI you desire.

When you want to do something custom you need #somecode :wink:

<a href="//somelink">
  <button type="button" class="w-button yourclass">
    Click Me
  </button>
</a>
7 Likes

Thank you, I see you everywhere on here and I really appreciate your input.

2 Likes