Skip to main content
Level 5
March 30, 2016
Répondu

Forms 2.0 Formatting Question

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

Ce sujet a été fermé aux réponses.
Meilleure réponse par Robb_Barrett

I take that back.

Put

.mktoAsterix {display: none !important;}

in your CSS.  That'll override the default.

3 commentaires

Robb_Barrett
Level 10
March 30, 2016

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
Robb_BarrettRéponse
Level 10
March 30, 2016

I take that back.

Put

.mktoAsterix {display: none !important;}

in your CSS.  That'll override the default.

Robb Barrett
Casey_Grimes2
Level 10
March 30, 2016

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.