Required fields in form with no * | Community
Skip to main content
April 23, 2014
Question

Required fields in form with no *

  • April 23, 2014
  • 5 replies
  • 2022 views
Has anyone created a form that has required fields, although does not display the red *?
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

5 replies

Level 4
April 24, 2014
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?
April 24, 2014
the form is on a test landing page for now - http://info.scmworld.com/TestBlog.html


Edward_Masson
Level 10
April 24, 2014
Your form shows 5 required fields with the red star
Level 4
April 25, 2014
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.


January 7, 2015
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;}