Forum Moderators: not2easy
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=8" />
<!-- Forced IE to use IE8 mode -->
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<title>SomePage</title>
<style type="text/css">
body {
font-family: Verdana, sans-serif;
}
#header {
background-color: #00aecb;
width: 960px;
height: 143px;
margin: 0 auto;
}
div#mainMenu {
position: relative;
top: 119px;
right: -517px;
width: 442px;
}
#mainMenu ul {
padding: 0;
}
#mainMenu li {
display: inline;
}
#mainMenu li a:link, #mainMenu li a:visited {
color: white;
background-color: #39892F;
text-align: center;
padding: 6px;
text-decoration: none;
}
#mainMenu li a:hover {
background-color: #B0D0AC;
color: black;
font-weight: normal;
}
#mainMenu li a.current {
text-decoration: underline;
font-weight: normal;
}
</style>
</head>
</head>
<body>
<div id="outerDiv">
<div id="header">
<div id="logo">
</div>
<div id="mainMenu">
<ul>
<li><a href="index.html" class="current">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="testimonials.html">Testimonials</a></li>
<li><a href="techspecs.html">Tech Specs</a></li>
<li><a href="http://www.somelink.com">Login</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=8">
<!-- Forced IE to use IE8 mode -->
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<title>SomePage</title>
<style type="text/css">
body {
font-family: Verdana, sans-serif;
}
#header {
background-color: #00aecb;
width: 960px;
height: 143px;
margin: 0 auto;
}
div#mainMenu {
position: relative;
top: 119px;
right: -517px;
width: 442px;
}
#mainMenu ul {
/* list-style: none; */
padding: 0;
}
#mainMenu li {
display: inline;
/* float: left;
margin: 4px;
padding: 0; */
}
#mainMenu li a:link, #mainMenu li a:visited {
color: white;
background-color: #39892F;
text-align: center;
padding: 6px;
text-decoration: none;
}
#mainMenu li a:hover {
background-color: #B0D0AC;
color: black;
font-weight: normal;
}
#mainMenu li a.current {
text-decoration: underline;
font-weight: normal;
}
</style>
</head>
<body>
<div id="outerDiv">
<div id="header">
<div id="logo">
</div>
<div id="mainMenu">
<ul>
<li><a href="index.html" class="current">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="testimonials.html">Testimonials</a></li>
<li><a href="techspecs.html">Tech Specs</a></li>
<li><a href="http://www.somelink.com">Login</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>
I did notice that the issue goes away if I change the font to Arial. But I'm required to use Verdana for the design. Any ideas?