This is the html that renders when a customer fails to enter in a required data field:
Code: Select all
<p>
<table class="thankyou_err" border="1" cellpadding="5" cellspacing="0">
<tr>
<td class="thankyou_err" bgcolor="#FFFFCC">
<img src="https://--------------.com/store/shopsite-images/en-US/msg/warning-yellow.gif" width="30" height="29">
</td>
<td class="thankyou_err" bgcolor="#FFFFCC">
Need to make a selection for <b>Age Verification: Year</b>.
<p>
</td>
</tr>
</table>
<p>
Code: Select all
table.thankyou_err {
text-align: center;
font-size: 11px;
font-style: normal;
font-family: Verdana, Helvetica, Arial;
border: 1px #444444 dotted;
color: #FF0000;
}
td.checkout_err, td.thankyou_err {
color: #FF0000;
font-size: 11px;
font-style: normal;
background-color: #eeeeee;
}
Is there a way to fully edit the properties of this table? If so, please please tell me where to find the style sheet or configuration for this warning table.
Thanks!!!
P.S. I'd love to change the wording "Need to make a selection for..." as it's a poorly formed sentence. If anything, it should say "Please make a valid selection for..."
...