Forms 2.0 Formatting Question | Community
Skip to main content
Level 5
March 30, 2016
Solved

Forms 2.0 Formatting Question

  • March 30, 2016
  • 2 replies
  • 1849 views

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

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Robb_Barrett

I take that back.

Put

.mktoAsterix {display: none !important;}

in your CSS.  That'll override the default.

2 replies

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_BarrettAccepted solution
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.