Re: In Forms 2.0, how can I get a "Yes" / "No" set of radio button to display on one line?

John_Wolf1
Level 3

In Forms 2.0, how can I get a "Yes" / "No" set of radio button to display on one line?

Thanks.
Tags (1)
3 REPLIES 3
Edward_Masson
Level 10

Re: In Forms 2.0, how can I get a "Yes" / "No" set of radio button to display on one line?

That is a good question John, it's bugging me too!
Alok_Ramsisaria
Level 10

Re: In Forms 2.0, how can I get a "Yes" / "No" set of radio button to display on one line?

Hi John,


This requires editing the custom CSS of the form. Though, typically Marketo Forms 2.0 restrict to 7 basic themes, you can still edit it’s custom CSS. Follow these instructions for the same.


Hope this helps!
Alok_Ramsisaria
Level 10

Re: In Forms 2.0, how can I get a "Yes" / "No" set of radio button to display on one line?

We recently came up with below mentioned code to adjust your radio buttons-

.mktoRadioList.mktoHasWidth {
    width: 400px !important;
}
.mktoRadioList input, .mktoRadioList label {
    float: left !important;
}

Hope this willl help!