In /CSS/layout_blue.css, change:
Code:
#navbar a:link {
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
letter-spacing: 2.3pt;
font-size: 14px;
color: #BBB;
text-decoration: none;
padding-top:5px;
padding-bottom: 5px;
border: 1px dashed #212121;
}
#navbar a:visited {
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
letter-spacing: 2.3pt;
font-size: 14px;
color: #BBB;
text-decoration: none;
padding-top:5px;
padding-bottom: 5px;
border: 1px dashed #212121;
}
To:
Code:
#navbar a:link, #navbar a:visited {
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
letter-spacing: 2.3pt;
font-size: 14px;
color: #BBB;
text-decoration: none;
padding-top:5px;
padding-bottom: 5px;
border: 1px dashed #212121;
height: 0px;
}
I highlighted what I changed to make it work, and you'll notice I combined the a:visited, and a:link because they were the same thing. From what I figured out, you had to give the link a height, so I gave it 0px (it will auto-extend if needed).
Bookmarks