Gentlemen;
This forum has been such a great help and I've learned so much from those who responded. Thank you.
Now that I have my site looking like I planned, I'm being bitten by the IE (5,6,7) positioning problems. I've read through many discussion and the tutorials on this subject and tried many of the suggestions. But without success.
I am hoping that someone familiar with this can peruse my class snippets below and be able to easily see what I am missing (as many of you have in the past).
If you would be so kind to do so, a tired and frustrated develop would be greatly appreciative!
css classes in the order they are displayed:
/* Main Site Declarations */
html, body {
height: 100%;
margin: 0;
padding: 0;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
text-align: center;
color: #4c5e2a;
}
/* Overall Page Container */
.container {
width: 970px;
min-height: 100%;
position: relative;
margin: auto;
background: #fff url(pix/TILE.jpg) top repeat;
border: 1px solid #4c5e2a;
}
/* Common Page Heading Declarations */
.heading {
position: relative;
width: 100%;
height: 60px;
margin: 0;
text-align: left;
background-color: #4c5e2a;
}
/* Main Page Content Area */
.main {
position: relative;
height: 100%;
margin: 0 142px 0 142px;
padding: 10px 10px 20px 10px;
}
/* Definition of Left Columns w/nav buttons */
.left-col {
position: absolute;
top: 60px;
width: 140px;
background-color: #4c5e2a;
height: auto;
}
/* Common Right Column content */
.right-col {
position: absolute;
top: 90px;
margin-left: 828px;
width: 142px;
height: 100%;
}
/* Common Page Footing Declarations */
.footing {
position: absolute;
bottom: 0;
border-top: 1px solid #666;
padding-top: 1em;
font-size: x-small;
text-align: center;
width: 100%;
clear: both;
display: block;
height: 20px;
}
Let's hope that someone sees something blatantly obvious.
Thanks
This forum has been such a great help and I've learned so much from those who responded. Thank you.
Now that I have my site looking like I planned, I'm being bitten by the IE (5,6,7) positioning problems. I've read through many discussion and the tutorials on this subject and tried many of the suggestions. But without success.
I am hoping that someone familiar with this can peruse my class snippets below and be able to easily see what I am missing (as many of you have in the past).
If you would be so kind to do so, a tired and frustrated develop would be greatly appreciative!
css classes in the order they are displayed:
/* Main Site Declarations */
html, body {
height: 100%;
margin: 0;
padding: 0;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
text-align: center;
color: #4c5e2a;
}
/* Overall Page Container */
.container {
width: 970px;
min-height: 100%;
position: relative;
margin: auto;
background: #fff url(pix/TILE.jpg) top repeat;
border: 1px solid #4c5e2a;
}
/* Common Page Heading Declarations */
.heading {
position: relative;
width: 100%;
height: 60px;
margin: 0;
text-align: left;
background-color: #4c5e2a;
}
/* Main Page Content Area */
.main {
position: relative;
height: 100%;
margin: 0 142px 0 142px;
padding: 10px 10px 20px 10px;
}
/* Definition of Left Columns w/nav buttons */
.left-col {
position: absolute;
top: 60px;
width: 140px;
background-color: #4c5e2a;
height: auto;
}
/* Common Right Column content */
.right-col {
position: absolute;
top: 90px;
margin-left: 828px;
width: 142px;
height: 100%;
}
/* Common Page Footing Declarations */
.footing {
position: absolute;
bottom: 0;
border-top: 1px solid #666;
padding-top: 1em;
font-size: x-small;
text-align: center;
width: 100%;
clear: both;
display: block;
height: 20px;
}
Let's hope that someone sees something blatantly obvious.
Thanks