Ok, I'm in a bit of a panic. I accidentally deleted a website I had finished for work and with no luck using forensic tools I'm having to do the whole thing over again from scratch without pay. Problem is I'm having a bit of trouble remember some of the things I did. For example I can't remember how I got this text to indent inside of "#content" in my css without shrinking content inside the layout causing my background to show through. Here's what I have:
CSS:
CODE
body {
background-color: #330099;
}
#wrapper {
text-align: left;
margin: 0px auto;
padding: 0px;
border:0;
width: 925px;
background: url("/path/to/your/background_cols.gif") repeat;
}
#header {
margin: 0 0 0px 0;
}
#side-a {
float: left;
width: 150px;
height: 700px;
background: #3300FF;
}
#side-b {
float: right;
width: 150px;
height: 700px;
background: #3300FF;
}
#content {
text-indent: 3px;
float: left;
width: 67%;
height: 700px;
background: #FFFFFF;
}
#footer {
clear: both;
background: #A2A2A2;
}
HMTL:
CODE
<!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=iso-8859-1" />
<LINK REL=StyleSheet HREF="smoStyle.css" TYPE="text/css" />
<title>Untitled Document</title>
</head>
<body>
<div id="wrapper">
<div id="header">
<img src="images/smom_header.jpg" />
</div>
<div id="container">
<div id="side-a">
</div>
<div id="content">
<h2>text,text,text,text,text,text,text,text,text,text,text,</h2>
<img src="images/bishop_05.jpg" align="right"/>
text,text,text,text,text,text,text,text,text,text,text,<br />
<hr />
text, text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,<br /><br />
text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,text,
text,text,text,text,text,text,text,text,text,text,text,text,
</div>
<div id="side-b">
</div>
</div>
<div id="footer">
FOOTER
</div>
</div>
</body>
</html>
The colors are awful cause I'm not finished. Any help would be a God send!