Required fields in form with no *

Anonymous
Not applicable

Required fields in form with no *

Has anyone created a form that has required fields, although does not display the red *?
Tags (1)
5 REPLIES 5
Calvin_Lam
Level 4

Re: Required fields in form with no *

It should always show the red unless it is overriden by the style sheet.  Can you post your landing page here for us to take a look if it is a publicly accessible page?
Anonymous
Not applicable

Re: Required fields in form with no *

the form is on a test landing page for now - http://info.scmworld.com/TestBlog.html


Edward_Masson
Level 10

Re: Required fields in form with no *

Your form shows 5 required fields with the red star
Calvin_Lam
Level 4

Re: Required fields in form with no *

It is definitely there.  See screenshot below.  If it is not showing in your browser, my guess is that it has something to do with the form locale or your browser locale.

0EM50000000RmwE.jpg
Anonymous
Not applicable

Re: Required fields in form with no *

Amanda C.  I think you were asking how to remove the asterisk right?  Here's one way of hiding the asterisk that I found.  I used custom CSS to change the color to white...

/* Add your custom CSS below */
.mktoForm .mktoRequiredField label.mktoLabel{
      font-weight: normal;
    }
.mktoAsterix {color: #ffffff !important;}