Add "Learn More" button in BoldGrid

Avatar
  • updated
  • Answered

I need to add a series of different buttons like learn more, contact us today etc. and then link those bottons to a page on my site. How do I add buttons to my site in boldgrid

Avatar
brianmagento
You can try this code to create a learn more button using html/css, I'm using that code on my site.
=====================
.btn {
background: #3498db;
background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
background-image: -moz-linear-gradient(top, #3498db, #2980b9);
background-image: -ms-linear-gradient(top, #3498db, #2980b9);
background-image: -o-linear-gradient(top, #3498db, #2980b9);
background-image: linear-gradient(to bottom, #3498db, #2980b9);
-webkit-border-radius: 28;
-moz-border-radius: 28;
border-radius: 28px;
font-family: Arial;
color: #ffffff;
font-size: 20px;
padding: 10px 20px 10px 20px;
text-decoration: none;
}

.btn:hover {
background: #3cb0fd;
background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
text-decoration: none;
}
=======================
Avatar
Scott
Hello, Thank you for your question on how to add a button to your BoldGrid site. While the editor does not currently have a method to add a button. You can add the text below to your page (using the Text tab in the editor): <p class="p-button-primary"><a class="button-primary" href="htttp://link.example.com">Learn More</a> Kindest Regards, Scott M