Oh, I wasn’t aware of that. I’ll post the code.
Firefox is 9.01 and Chrome is 17.0.963.56 m.
I’ve also tested on the latest version from both browsers (I didn’t have the latest version of Firefox install from where I am posting now.)
Here is the HTML:
<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta name="description" content="HTML5 Template" />
<meta name="keywords" content="HTML5 template" />
<meta name="author" content="HTML5, CSS, Template" />
<meta charset="UTF-8" />
<title>Website Title</title>
<link rel="stylesheet" type="tet/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/styles.css" />
</head>
<body>
<header>
<!-- contains all the items that go in the header like site title and logo -->
<div id="header_area">
<a href="index.html"><img src="images/dummy.png" border="0" class="logo"></a>
</div>
<!-- the site navigation -->
<nav>
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="#">Getting Started</a></li>
<li><a href="#">What We Do</a></li>
<li><a href="#">Get In Touch</a></li>
</ul>
</nav>
</header>
<div id="content">
<h3>Title of Template</h3>
</div>
</body>
</html>
Below is the CSS:
/* default page styles for falcon syndicate */
html {height: 100%;
}
body {background-color: #fff;
height: 100%;
margin: 0;
background-repeat: no-repeat;
background-attachment: fixed;
}
h1 {font-family: "Arial", Verdana, sans-serif; font-size: 30px; color: #2b4d7a; padding: 41px 0px 0px 41px;}
h2 {font-family: "Arial", Verdana, sans-serif; font-size: 24px; color: #2b4d7a; padding: 41px 0px 0px 41px;}
h3 {font-family: "Arial", Verdana, sans-serif; font-size: 18px; color: #2b4d7a; padding: 41px 0px 0px 41px;}
h4 {font-family: "Arial", Verdana, sans-serif; font-size: 16px; color: #2b4d7a; padding: 41px 0px 0px 41px;}
.logo {position:relative;
width: 354px;
height: 60px;
top: 37px;
left: 41px;
}
header {position: relative;
background: #244168;
background-image: -webkit-linear-gradient(top, #1b304d 0%, #2d5282 100%);
background-image: -moz-linear-gradient(top, #1b304d 0%, #2d5282 100%);
background-image: -o-linear-gradient(top, #1b304d 0%, #2d5282 100%);
background-image: -ms-linear-gradient(top, #1b304d 0%, #2d5282 100%);
background-image: linear-gradient(top, #1b304d 0%, #2d5282 100%);
color: #fff;
height: 358px;
}
#header_area {margin-left: auto;
margin-right: auto;
width: 930px;
height: 144px;
background: #2d517d;
background-image: -webkit-linear-gradient(top, #356092 0%, #244268 100%);
background-image: -moz-linear-gradient(top, #356092 0%, #244268 100%);
background-image: -o-linear-gradient(top, #356092 0%, #244268 100%);
background-image: -ms-linear-gradient(top, #356092 0%, #244268 100%);
background-image: linear-gradient(top, #356092 0%, #244268 100%);
border-radius: 0px 0px 10px 10px / 0px 0px 10px 10px;
-moz-border-radius: 0px 0px 10px 10px / 0px 0px 10px 10px;
}
nav {width: 930px;
position: relative;
margin-left: auto;
margin-right: auto;
left: 0px;
top: 0px;
}
/* site navigation */
header nav ul li {float: left;
margin: 0px 25px 0px 0px;
list-style-type: none;
}
header nav ul li a {color: #fff;
line-height: 14px;
font-family: "Arial", Verdana, sans-serif;
font-size: 16px;
font-weight: bold;
text-transform: uppercase;
text-decoration: none;
display: block;
padding: 6px 9px 6px 9px;
}
header nav a.active {color: #fff;
width:auto;
background-color: #2b4e7b;
border-radius: 3px 3px 3px 3px / 3px 3px 3px 3px;
-moz-border-radius: 3px 3px 3px 3px / 3px 3px 3px 3px;
}
header nav a:hover {color: #4681c3;
width:auto;
background-color: #1d375c;
border-radius: 3px 3px 3px 3px / 3px 3px 3px 3px;
-moz-border-radius: 3px 3px 3px 3px / 3px 3px 3px 3px;
}
#content {position: relative;
width: 930px;
height: 200px;
background-color: #fff;
margin-left: auto;
margin-right: auto;
top: -175px;
border-radius: 10px 10px 0px 0px / 10px 10px 0px 0px;
-moz-border-radius: 10px 10px 0px 0px / 10px 10px 0px 0px;
}
And the RESET CSS I am using is posted below, it’s the one by Eric Meyer.
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}