The top line is controlled by the default phrase.

The bottom line check out:

Style Properties -> [XB] Sidebar, options right there.

You could do a little animation, you'd need to tweak it a little:

Code:
.XenBase #SignupButton .inner
{
   background:red;
   animation:myfirst 5s;
   -moz-animation:signupnow 5s infinite;
   -webkit-animation:signupnow 5s infinite;
}
 @-moz-keyframes signupnow /* Firefox */
{
   0%  {background:red;}
   50%  {background:yellow;}
   100%  {background:red;}
}
@-webkit-keyframes signupnow /* Safari and Chrome */
{
   0%  {background:red;}
   50%  {background:yellow;}
   100%  {background:red;}
}

Put that in extra.css
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back