View Single Post
  #9 (permalink)  
Old 10-04-06, 03:48 PM
pkcidstudio's Avatar
pkcidstudio pkcidstudio is offline
Coding Addict
 
Join Date: Nov 2005
Posts: 332
Thanks: 0
Thanked 0 Times in 0 Posts
Code:
/************************ LEFT SIDE COLUMN *****************/
#left {
position:absolute;
margin-left:0px;
	padding: 5px;
	width:18%;
	display: block;
	clear:both;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#CCCCCC;
	font-size: 11px;

	}
	
#left h1, #right h1 {
	font-size:15px;
	padding-top:5px;
	font-family:helvetica, arial, georgia, times, sans-serif;
	border-bottom:1px dotted #c4c4c4;
}

#left p {
	font-size:10px;
	padding-bottom:10px;
	margin-top:-3px !important; /*****  FIREFOX  *****/
	margin-top:-14px;			 /***** INTERNET EXLORER *****/
	color:#404040;
}	
/************************** MAIN CONTENT IN MIDDLE ******************/

#middle {
position:absolute;
	clear:none;
 margin-left:250px;
	width:54%;
	line-height:1.01em;
	padding-left:3.5%;
	padding-right:3.5%;
}
	
#middle p, p {
	font-size:10px;
	color:#404040;
}

#middle h1 {
	font-family:"Century Gothic", verdana, arial, times, sans-serif;
	font-size:21px;
	font-weight:normal;
	border-bottom:1px solid #c4c4c4;
	padding-bottom:3px;
	margin-top:24px;
}
/***************************  RIGHT COLUMN  *********************/
#right {
position:absolute;
	clear:right;
 margin-left:500px;
	font-size:11px;
	width:18%;
	line-height:1.6em;
}

#right a {
	line-height:2em;
	
}

#right br {
	line-height:0.7em;
}
let me know just go ahead and copy and paste this into place
just tested this works-
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" />
<title>Untitled Document</title>
<link href="test.css" rel="stylesheet" type="text/css" />
</head>

<body>
<div id="left">bla la la</div>
<div id="middle">dsfhldsfjkdklj</div>
<div id="right"><b>dfdsfdsfs</b></div>
</body>
</html>
__________________
learning like everyone else

Last edited by pkcidstudio; 10-04-06 at 03:58 PM.
Reply With Quote