Could anyone help me with the CSS to fix the required label on a form or point me to some resources? It is not aligning under the field and I would like to change the bold red color. Thanks!
Please provide a URL that's hosting this form.
Thanks Stanford, here is the URL (page is still in production): http://us.msasafety.com/altairgrid
The CSS element you're looking for is here:
.mktoForm .mktoError {
position: absolute;
z-index: 99;
color: #bf0000;
}
You'll want to change it to:
.mktoForm .mktoError {
position: relative;
z-index: 99;
color: #[insert hex code you want here];
}
Also, you can fix the "first name" label stacking by going here:
.mktoForm .mktoLabel {
width: 76px !important;
}
And changing it to:
.mktoForm .mktoLabel {
width: 80px !important;
}
Hope this helps!