How to center a button that i created myself for mobile

Solved
Bahrikaan
Excursionist
34 0 16

Hi,

 

I created a button for a section cause it didnt have one. Now i try to center it but on every different mobile device its not the same. Some are more left the other more right. How can i center this button for all mobile devices.

 

Webshop: https://www.glowinh.com/

 

Schermopname (519).png

Accepted Solution (1)
arunme
Shopify Partner
41 8 13

This is an accepted solution.

@Bahrikaan in your code remove margin-left: 138%; and  width:100% from .button  class and just add below code for a tag, 

 

a{
  display: block;
  text-align: center;
}

 

 

If helpful please Like and Accept Solution.
Ask Me anything related to E-commerce or Shopify Let's connect Linkedin

View solution in original post

Replies 2 (2)
arunme
Shopify Partner
41 8 13

This is an accepted solution.

@Bahrikaan in your code remove margin-left: 138%; and  width:100% from .button  class and just add below code for a tag, 

 

a{
  display: block;
  text-align: center;
}

 

 

If helpful please Like and Accept Solution.
Ask Me anything related to E-commerce or Shopify Let's connect Linkedin
Bahrikaan
Excursionist
34 0 16

Hi Arunme,

 

Thanks alot, couldnt have figured it out without you