Archived topic
center align a button
1 reply · Started by Jamie on December 30, 2017
Hi I've used the below css and code to add a button to a page:
css: `.button.sun-flower,
.button.sun-flower:visited {
background: #0ebeea;
color:#FFF;
}
.button.sun-flower:hover,
.button.sun-flower:active {
background: #0ebeea;
color:#FFF;`
html: <a href="URL FOR YOUR BUTTON">Click here to order your Itinerary!</a>
What do i add to either of these to make it so the button is centered?
Thanks!
Jamie
You can put it inside a centered paragraph:
<p style="text-align: center"><a class="button" href="#">Your button</a></p>