View Single Post
  #3 (permalink)  
Old 17-12-2007, 07:31 AM
philjohns's Avatar
philjohns philjohns is online now
Established Member
 
Join Date: Oct 2007
Location: Ivybridge, Plymouth
Gender: Male
Posts: 547
Default

Im off to school now but this is the css code of that page:

Code:
#page-container {
	width: 945px;
	height: 545px;
	margin: auto;
	background: url(images/background.gif);
	background-repeat: no-repeat;
	font-family: sans-serif;	
}

html, body {
	margin: 5px;
	padding: 0px;
}

#header {
	width: 830px;
	height: 60px;
	margin: auto
}

#main-nav {
	width: 830px;
	height: 25px;
	margin: auto;
	padding-top: 3px;
}

#content-container {
	width: 830px;
	margin: auto;
}

#left-column {
	background: red;
	float: left;
	width: 275px;
	height: 380px;
	font-size: 80%
}

#center-column {
	background: yellow;
	margin-left: 275px;
	width: 275px;
	height: 380px
}

#right-column {
	background: green;
	margin-left: 555px;
	width: 275px;
	height: 380px
}

#footer {
	width: 830px;
	height: 30px;
	margin: auto;
	font-size: 70%
}

a:link {
color: #666666;
text-decoration: none;
}

a:visited {
color: #333333;
text-decoration: none;
}
Reply With Quote