Ok I have a template (html) that works flawlessly on my test apache server, but I copy the html to EE it messes up my padding/margins. So my content is not starting with 0 top padding/margin and its actually pushing down some. Please help
Here is the CSS:
body {
padding: 0;
text-align: center;
min-width: 960px;
background-image: url(images/index_bg.jpg);
background-repeat: repeat-x;
margin: 0px;
}
#centered {
position: relative;
top: 0;
right: 0;
width: 960px;
text-align: left;
overflow:hidden;
padding: 0px;
margin-top: 0;
margin-right: auto;
margin-bottom: 0;
margin-left: auto;
}
#masthead {
background-image: url(images/mastHead.jpg);
background-repeat: no-repeat;
height: 100px;
width: 960px;
margin: 0px;
padding: 0px;
}
Here is the beginning of the HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<link href="master.css" rel="stylesheet" type="text/css" />
<link href="navbar.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="centered">
<div id="header">
<div id="masthead"></div>
