April 15, 2015 Change the Border Color for Promotion and Custom Form Fields
Posted at 09:09h
in ShortStack Tips & Tricks
Want to spice up your form fields a bit? Try changing the border color! It's easy, just drop the following CSS into your CSS Editor and choose the color you'd like to use: /*Form/Promotion Form Input Field*/ input, select, textarea{ border-color:#ff00ff; /*Determines color of border*/ border-width: 1px; /*Sets border thickness*/ border-style: solid; /*Styles the border*/ } Check out this Hex Value guide from w3schools.com: https://www.w3schools.com/cssref/css_colors.asp to find the Hex Value...