http://info.stanjohnsonco.com/2015-ICSC-RECon-Vegas.html
Form looks great in desktop view, but when I switch to mobile if aligns to the right instead
Here is the style that is applying but I can't figure out how to turn it off - suggestions?
Solved! Go to Solution.
#bodyId .mktoForm .mktoButtonRow { display:block; text-align:right; }
To fix this, you simply need to have your desktop version of mktoButtonRow be text-align: left !important rather than left (or fix the mobile-specific error.)
#bodyId .mktoForm .mktoButtonRow { display:block; text-align:right; }
To fix this, you simply need to have your desktop version of mktoButtonRow be text-align: left !important rather than left (or fix the mobile-specific error.)
html #bodyId .mktoForm .mktoButtonRow { display:block; text-align:left; }