SOLVED

Switch positioning of Form Elements

Go to solution
Anonymous
Not applicable

Switch positioning of Form Elements

Hi Guys.

Do you know a CSS code that can switch the position of the Submit button. I would like to swicth the position my checkbox and Submit button. Thanks!

0EM50000000Rtjt.jpg
Please see the link of my page http://ins.accenture.com/TEST2_InsuranceRegPage.html. Thanks!

Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
Anonymous
Not applicable

Re: Switch positioning of Form Elements

.mktoButtonRow {
    top: -45px;
}

.mktoForm .mktoLogicalField {
    top: 50px;
    position: absolute;
}

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Re: Switch positioning of Form Elements

.mktoButtonRow {
    top: -45px;
}

.mktoForm .mktoLogicalField {
    top: 50px;
    position: absolute;
}
Anonymous
Not applicable

Re: Switch positioning of Form Elements

Thanks Josh! This work perfectly!