Search code examples
phphtmlcsswordpressalignment

How do I position this button in center?


How do I position this button

img

in the center of this page?


Solution

  • This rule in your css is responsible:

    .thim-sc-button.home-6-top {
       text-align:left; 
       display:inline-block; 
       margin-right:18px;
    }
    

    You can remove the home-6-top class from your button element to center it or just remove the text-align and display properties to keep the margin.