SOLVED

Forms 2.0 Formatting Question

Go to solution
Karen_Black
Level 5

Forms 2.0 Formatting Question

Is there any way to move the required asterisk, to after the label, rather than before?

Tags (1)
1 ACCEPTED SOLUTION

Accepted Solutions
Robb_Barrett
Marketo Employee

Re: Forms 2.0 Formatting Question

I take that back.

Put

.mktoAsterix {display: none !important;}

in your CSS.  That'll override the default.

Robb Barrett

View solution in original post

3 REPLIES 3
Robb_Barrett
Marketo Employee

Re: Forms 2.0 Formatting Question

You'd have to put in code for

<style>

.mktoAsterix {display: none;}

</style>

In your HTML, as close to the beginning of the HTML as possible, then you can change the label in the Rich Text editor.

Robb Barrett
Robb_Barrett
Marketo Employee

Re: Forms 2.0 Formatting Question

I take that back.

Put

.mktoAsterix {display: none !important;}

in your CSS.  That'll override the default.

Robb Barrett
Casey_Grimes
Level 10

Re: Forms 2.0 Formatting Question

Robb is absolutely correct, but as a minor side note you can also place the override on .mktoAsterix in your form's custom CSS if you're looking to keep the styling on some forms but not others, etc.