I'm currently using the following CSS to center the submit button, however it appears only to work on a desktop view, not when adapted for mobile:
/*Centers the Submit Button*/ div.btn-wrapper {display:block} .Submit {display:block;margin:auto}
Is there any code that could be used to center it on both desktop AND mobile? I'm already using some @media attributes to use certain CSS depending on the pixel width of the display, if that makes it any easier. Thanks!