What custom css style code i use in my wordpress page that WPForms validation message appears inside the field box.
WPForms validation message appears inside the field box.
To target the "div.wpforms-container-full .wpforms-form label.wpforms-error" you should use the following CSS
div.wpforms-container-full .wpforms-form label.wpforms-error {
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 100%;
padding: 10px;
font-size: 12px;
color: red;
}
Need to make sure that it's not being overridden by any other CSS styles.