Search code examples
wordpressshortcode

how to move wordpress short code button to the center of the page, please?


this is how short code looks like

[stripe name="My Store" description="My Product" amount="1999" billing="true" shipping="true"]

enter image description here


Solution

  • you can use a div tag:

    <div id="button>"[stripe name="My Store" description="My Product" amount="1999" billing="true" shipping="true"]</div>
    
    <style>
    #button {
    text-align: center;
    margin: auto;
    }
    </style>