I've got a site which has 40 pages that need to get finished. Basically there is one html template, and it needs to get used and adjusted accordingly 40 times with different articles.
Links can be placed using both HTML and CSS. What you want is produced using CSS, sounds like. You'll need to do something like this: #navigation color: (your link color); font-family: (the font you use for your links); font-size: (what size you want your links); and finally what you are looking for is... text-decoration:none The text decoration is the one you want to say whether you want your links underlined or not. Remember to use px to define your font size, and the # to define the link color (e.g - #fff, #000, #444...etc.). ..................................................................................................................