No

Let me see if I can walk you through this:
1. Add these 4 classes to skin1.css. Just cut and paste this code:
.welcome:link {color: #000000; text-decoration: none;}
.welcome:hover {color: #000000; text-decoration: none;}
.welcome:active {color: #000000; text-decoration: none;}
.welcome:visited {color: #000000; text-decoration: none;}
Replace the color number with whatever color you want for each state (active, link, hover, visited). You can also set the text decoration to underline or bold if you want.
2. Now add the class 'welcome' to your links in the code you are using for your welcome template. For example, a link should look like this:
Link
Make sense?