Pretty simple template:
<html>
<head>
<link href="styles.css" type="text/css" rel="stylesheet"/>
</head>
<body>
<div id="container">
<div id="header">
<h1> <img src="img/lightbulbheader.jpg"> </h1>
</div>
<div id="body">
<div class="post">
<span class="title"><p><a href="hehehehe">Consider the Audiobook.</a></p></span>
<span class="text"><p>As far as life advice, I stumbled upon this yesterday and it has followed me since, begging me to put it into practice without any real advice in that regard: Dumb silly dumb Dumb silly dumb Dumb silly dumb Dumb silly dumb Dumb silly dumb Dumb silly dumb Dumb silly dumb Dumb silly dumb Dumb silly dumb Dumb silly dumb Dumb silly dumb </p></span>
<span class="metadata">By: Scott | Comments (x) </span>
</div>
</div>
<div id="footer">
<span class="tagcloud">
TAG CLOUD <br/>
TAG CLOUD <br/>
TAG CLOUD <br/>
TAG CLOUD <br/>
TAG CLOUD <br/>
TAG CLOUD <br/>
</span>
</div>
</body>
Simple style sheet:
#body{
width: 100%;
font-family: Arial, Helvetica;
color: #000;
}
#container{
width: 100%px;
margin: 0 auto;
}
#header{
width: 100%;
border-bottom: dashed 2px;
text-align: center;
}
.post{
width:480px;
margin: 0 auto;
}
.title{
font-size: 20px;
text-align: center;
}
.title a{
color: #000;
text-decoration: none;
}
.title a: hover{
color: #A2A2A2;
}
.text{
width:480px;
margin: 0 auto;
font-size: 9pt;
text-align: center;
}
.metadata{
text-align: left;
font-size: 8pt;
}
#footer{
text-align: center;
width: 100%;
background: transparent #eff3f4 url('img/graywhitefooter.gif') repeat-x scroll 0 0;
}
.tagcloud{
width: 480px;
float:left;
background:transparent;
}
PROBLEM: The .tagcloud span OVERWRITES the background of FOOTER even when set to transparent. Any thoughts? I feel stupid.