I tried what you suggested and it just maximised the content to fit the entire screen. This is what I used
<link rel="stylesheet" type="text/css" href="neweb7.css">
<!-- >
<link rel="stylesheet" type="text/css" href="iefix.css">
<!-- >
Then I tried this
<link rel="stylesheet" type="text/css" href="neweb7.css">
<!-- -->
<link rel="stylesheet" type="text/css" href="iefix.css">
<!-- -->
And it put me back to square one again.
I then tried the @import command and it fixed the IE problem but knocked out the Firefox setting.
Here are the two sheets I am using.
neweb7.css
body{
background-color: #E0E0E0;
margin: 0px;
margin-top: 10px;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-size: 0.80em;
margin:0px;
margin-top: 10px;
margin-bottom: 0px;
}
#main {
width: 750px;
padding: 10px;
margin: 0px auto;
background:#BECDC0 url(images/layout/mainBG.gif) top left repeat-y;
border: 1px solid gray;
}
/* url(images/layout/mainBG.gif) top left repeat-y */
#header {
width: 100%;
height: 110px;
background-color: White;
border: 1px solid #6f8878;
}
#logo {
width: 150px;
padding-top: 20px;
float: left;
}
#headImage {
background-color: White;
float: right;
}
#leftContainer {
width: 200px;
float: left;
margin-top: 10px;
}
.nav {
width: 200px;
border: 1px solid #6f8878;
border-top: 3px solid #6f8878;
background-color: #F2F2F2;
text-align: left;
}
ul.navMenu {list-style-type: none; margin: 0px 0px; padding: 10px 15px 10px 10px; Verdana, Arial, Helvetica, sans-serif;}
li.navTitle {
margin: 0px auto;
padding: 0px 2px;
font-weight: bold;
border-style: solid;
border-width: 3px 1px 1px 1px;
border-color: #CCC;
background: #FFF url(images/layout/titlebg.jpg) repeat-y left;
font-size: 0.87em;
width: 100%;
height: 14px;
}
li.navLink {
margin: 0px 0px 0px 10px;
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #F2F2F2;
font-size: 0.87em;
}
.navLink a { color: #629562;}
.navLink a:hover {color: #ff9900;}
#left1 {
width: 180px;
margin: 10px auto;
padding: 10px;
background: #E7F0EE;
border: 1px solid #6f8878;
color: #707070;
text-align: left;
font-size: 0.89em;
float: left;
}
.content {
background:white url("images/layout/boxBG.gif") top right no-repeat;
border: 1px solid #6f8878;
border-top: 3px solid #6f8878;
padding:20px;
text-align: left;
font-size: 95%;
margin-top:10px;
margin-left:250px;
}
.content2 {
background-color: white;
border: 1px solid #6f8878;
padding: 10px 20px;
text-align: left;
font-size: 0.87em;
margin-top:5px;
margin-left:250px;
}
.content3 {
background-color: white;
border: 1px solid #6f8878;
padding: 10px 20px;
padding-top: 0px;
padding-bottom: 5px;
text-align: left;
font-size: 0.87em;
margin-top:10px;
margin-left:250px;
}
.imgBoxL {
width: 200px;
padding: 0px;
text-align: left;
margin-top:5px;
}
.textBoxR {
width: 200px;
padding: 0px;
text-align: left;
margin-top:5px;
float: right;
}
p {color: #707070;}
p.p2 {line-height: 11pt;padding: 10px 0px 0px 0px;margin: 0px 0px 0px 0px; text-align: justify;}
p.p2 a:hover {text-decoration: underline;}
p.p3 {line-height: 10pt;padding: 5px 0px 0px 0px;margin: 0px 0px 0px 0px; text-align: justify;}
p.p3 a:hover {text-decoration: underline;}
a {text-decoration: none; color: #FF9900;}
a:hover { text-decoration: none; color: #8FBC8F;}
h3 {font-size:105%; color:#86777e;font-weight:bold;margin-bottom:0px;border-bottom:1px solid #ccc;}
ul {color: #707070; list-style: square;}
.list1 { line-height: 14pt; }
td { font-size: 0.80em;}
#footer {
width: 100%;
margin-top: 5px;
background-color: #F1F1F1;
border: 1px solid #6f8878;
float: left;
color: #7F7F7F;
font-size: 8pt;
padding: 5px;
clear: both;
}
.valid {
width: 750px;
margin-top: 5px;
color: Gray;
font-size: 0.72em;
clear: both;}
.valid a {text-decoration: none; color: Gray;}
.valid a:hover {text-decoration: underline; color: #5A5A5A;}
iefix.css
#left1 { width: 100%;}
quote:
Update:
I know I had the code wrong above bit I then fixed it and still nothing.