i tried to understand as best i could and this is what i came up with:
Code:
<html>
<head>
<style type="text/css">
#nav a{font-size: 25px; color: blue; padding: 10px;}
#nav a:link{color: blue; text-decoration: none; background-color: tranparent}
#nav a:hover{color: blue; text-decoration: none; background-color: transparent}
#nav a:active{color: white; text-decorations: none; background-color: blue }
ul{list-style-type:none; }
li{margin-top: 20px; margin-bottom: 20px}
</style>
</head>
<body>
<div id="nav">
<ul>
<li><a href="#">Link 1</a></li>
<li><a href="#">Link 2</a></li>
<li><a href="#">Link 3</a></li>
</ul>
</div>
</body>
</html>
you don't need to provide a link but if you can post your source code like i did it would be very helpful.
Bookmarks