Chrisab508
01-31-2004, 01:31 PM
okay, so i have 4 divs, one is a header and it has a logo, another is a content one with all the content, another is a sidebar with links, and lastly a footer one.
okay, so my problem is, I'm having trouble getting them all ligned up, I've gotten them pretty well ligned up, but if i resize the browser window, everything gets REALLY messed up, so i dno what to do
Code:
HTML:
<html>
<head>
<link rel="stylesheet"
type="text/css" href="stylesheet4.css" />
</head>
<div id="header">
<img src="titlebar.jpg" ALt= "titlebar">
</div>
</div>
<div id="sidebar">
<a href="http://www.csnation.net"> CsNation </a><br><br>
<a href="http://www.webmonkey.com"> webmonkey </a><br><br>
<a href="http://www.alistapart.com"> A List Apart (ALA) </a><br><br>
</div>
</body>
<div id="content">
<body>
<p class ="margin">
main content here main content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content here
</P>
</div>
<div id="footer">
<a href="mailto:email here">Contact Me</a>
</html>
and CSS:
body {background-color: #999999}
}
body {
margin: auto;
text-align: center;
}
#content {
float: left;
width: 576px;
text-align: left;
border: 1px solid #000
padding-right: 10px;
padding-left: 10px;
padding-top: 10px;
padding-bottom: 10px;
background-color: #FFF;
}
#header {
width: 576px;
}
#footer {
width: 576px;
border: 1px solid #000
padding-right: 10px;
padding-left: 10px;
padding-bottom: 10px;
background-color: #ccccff;
}
#sidebar {
float: left;
width: 100px;
border: 1px solid #000;
padding-RIGHT: 10px;
PADDING-LEFT: 10px;
PADDING-BOTTOM: 10px;
padding-top: 1em;
HEIGHT: 100px;
background-color: #ccccff;
margin-left: 88px;
margin-top: 0;
}
if you go onto a list apart web site, and resize your browser, nothing gets messed up.
Thanks!!
okay, so my problem is, I'm having trouble getting them all ligned up, I've gotten them pretty well ligned up, but if i resize the browser window, everything gets REALLY messed up, so i dno what to do
Code:
HTML:
<html>
<head>
<link rel="stylesheet"
type="text/css" href="stylesheet4.css" />
</head>
<div id="header">
<img src="titlebar.jpg" ALt= "titlebar">
</div>
</div>
<div id="sidebar">
<a href="http://www.csnation.net"> CsNation </a><br><br>
<a href="http://www.webmonkey.com"> webmonkey </a><br><br>
<a href="http://www.alistapart.com"> A List Apart (ALA) </a><br><br>
</div>
</body>
<div id="content">
<body>
<p class ="margin">
main content here main content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content heremain content here
</P>
</div>
<div id="footer">
<a href="mailto:email here">Contact Me</a>
</html>
and CSS:
body {background-color: #999999}
}
body {
margin: auto;
text-align: center;
}
#content {
float: left;
width: 576px;
text-align: left;
border: 1px solid #000
padding-right: 10px;
padding-left: 10px;
padding-top: 10px;
padding-bottom: 10px;
background-color: #FFF;
}
#header {
width: 576px;
}
#footer {
width: 576px;
border: 1px solid #000
padding-right: 10px;
padding-left: 10px;
padding-bottom: 10px;
background-color: #ccccff;
}
#sidebar {
float: left;
width: 100px;
border: 1px solid #000;
padding-RIGHT: 10px;
PADDING-LEFT: 10px;
PADDING-BOTTOM: 10px;
padding-top: 1em;
HEIGHT: 100px;
background-color: #ccccff;
margin-left: 88px;
margin-top: 0;
}
if you go onto a list apart web site, and resize your browser, nothing gets messed up.
Thanks!!