javascript - How Can I Center My Forms Button? -
i'm using cognito form , works well, thing irritates me "submit" button won't center. i've tried , made text boxes above centered, while submit button still on left hand side. don't see many other options this. https://gyazo.com/bd4a143cefe2a0f764a82bd922f92e6f
<div class="cognito"> <script src="https://services.cognitoforms.com/s/kqtsv-uype2bbu47xu3lpw"> </script> <script>cognito.load("forms", { id: "1" });</script></span> </div>
you can add below script before end of span tag.
<script type="text/javascript"> window.onload = function() { document.queryselector(".cognito .c-action").style="text-align: center;float:none;"; }; </script>
Comments
Post a Comment