Re: Beginner - Center align button

Solved

How to center align a button in liquid markup?

Mnaabndam
Visitor
2 0 1

Hello, I need someones help adding center alignment to this custom liquid? 

 

<a href="/pages/contact" class="button button--primary">
Contact

Accepted Solution (1)

shellbryson
Shopify Partner
45 2 17

This is an accepted solution.

<div style="text-align: center;">
<a href="/pages/contact" class="button button--primary">Contact</a>
</div>

 The link element needs to be inside a container or paragraph that is centered.

View solution in original post

Replies 2 (2)

shellbryson
Shopify Partner
45 2 17

This is an accepted solution.

<div style="text-align: center;">
<a href="/pages/contact" class="button button--primary">Contact</a>
</div>

 The link element needs to be inside a container or paragraph that is centered.

Mnaabndam
Visitor
2 0 1

Thank you very much!