|
This field is optional. If you fill it in it will add CLASS="class" to the link tag. You can use this if you want their style to be seperate from different links. You will need to add the following tag inbetween HEAD /HEAD tags on your page, then create a CSS stylesheet (see below).
STEP 1
set CLASS option to "toplist"
STEP 2
Add this line (replace () with <>) inbetween your HEAD /HEAD tags:
(LINK REL="stylesheet" href="style.css" type="text/css")
STEP 3
Upload style.css and include this segment:
a.toplist:link { color: #F76B00; text-decoration: none; font-weight: bold;}
a.toplist:visited { color: #F76B00; font-weight: bold;}
a.toplist:active { color: #FFFFFF; text-decoration: underline; font-weight: bold;}
a.toplist:hover { color: #000000; text-decoration: underline; font-weight: bold;}
|