PDA

View Full Version : Alert/Warning font style & color


stevetapp
03-30-06, 08:30 AM
Does anyone know how to edit the font style/color of the alert/warning text that appears if you didn't properly complete a form during checkout? For instance, if you hit "Continue" before entering your email address in the Customer Info area, a warning apears on the page stating you need to do so before proceeding.

Anyone?

ILoveHostasaurus
03-30-06, 08:50 AM
In the store admin, click on Pages and then edit the "OCST Checkout: Customer Information" page. Once you're editing that page, click the "Customer Fields" tab. In that box, you'll see things like:


<mvt:item name="fonts" param="body_font">
<mvt:if expr="NOT g.ShipFirstName_Invalid">
<b>First Name:</b>
<mvt:else>
<font color="red">
<b>First Name:</b>
</font>
</mvt:if>
</mvt:item>


You can just replace the <font color=red> tags with your own, etc.

stevetapp
03-30-06, 09:00 AM
Damn, I should have seen that before. Thanks bud!