Have a Custom Form or Promotion on your tab? Did you know that you can customize the appearance of the “Thank you for your submission” text that displays after the form is submitted? Well, you can! Here’s some CSS to place in your CSS Editor, with a number of elements you can customize, just pick and choose what you want to use:
form .success p{
color:#ff0ff0; /*Color of the ‘Thank you for your submission’ text*/
font-size:28px; /*Font size of the ‘Thank you for your submission’ text*/
font-family:”Lucida Sans Unicode”, “Lucida Grande”, sans-serif; /*Web-safe font associated with the ‘Thank you for your submission’ text*/
font-weight: bold; /*Weight of the font*/
text-align:center; /*Text alignment of the ‘Thank you for your submission’ text – other options include left and right alignment*/
border:5px solid black; /*Border size, style, and color – this is only for the ‘Thank you for your submission’ section of the form*/
padding:10px; /*Padding around the ‘Thank you for your submission’ text*/
background:#ffff00; /*Background color of the ‘Thank you for your submission’ section of the form*/
}