How can I add a 'Discover the Watch' button link to my page?

Hello All, I would like to add on the bottom of the text a button “Discover the watch” that link to this page : https://www.manime-watches.com/products/la-f

How can I do it ?

thanks !

  • Switch to the code view and then add a button using the code.
  • Here’s the code to add a button
[Button Text](https://www.manime-watches.com/products/la-f)
  • To make this button look how you want, you can add custom CSS to the link-button class in the Shopify > Themes > Actions > Edit Code > Assets > CSS file (whatever the file name is).
  • Scroll all the way to the end and add custom styles by using the class. For example:
.link-button {
padding-left: 10px;
padding-right: 10px;
padding-top: 5px;
padding-bottom: 5px;
background-color: #000000;
color: #ffffff;
}​

1 Like

Thanks a lot ! Is there a way to change the design of the button and look like the one on the bottom of this page ? : https://www.manime-watches.com/pages/the-story

Please remove existing class and add this class

class=“btn”

1 Like

Thank you !