Its not difficult, but with CSS you get a LOT of control that can be daunting at first.
CSS is Cascading Style Sheets which is what makes your site look the way it looks.
They are found at:
/skins/( YOUR SKIN )/css/
You will find many .css files in that directory you could put a new rule in any of them, but probably skin.css or style.css would be the most logical perhaps just because of the name of the file.
If you added a class called
'widget_header_links' that would be a descriptive name to use, you could use anything eg:
'galan_gal' but it would be easy to forget the association to what it controls.
so your links would then become:
<a href="(the link location)" class="widget_header_links">View More</a>
Then in your css you define whatever you want that class to look like:
/skins/( YOUR SKIN )/css/site.css
.widget_header_links{
color: pink;
}
And they would all be pink.
.widget_header_links{
color: pink;
font-weight: bold;
}
and they would be pink and bold.
.widget_header_links{
color: pink;
font-weight: bold;
text-align: right;
}
and they would be pink and bold and aligned to the right............
The tool I use to mess around with CSS before writing a line of code is called "Firebug"
You can see it in action here:
Using firebug with the STYLE tab