View Full Version : CSS content help


godsgirl5790
08-18-2009, 08:30 PM
I'm still confused about how to get the content links from the left side to open the content into the main area. Here's my layout is that will help.
What code do I use?

<html>
<head>
<LINK href="http://xpraisex.webs.com/style.htm" rel="stylesheet" type="text/css">
<title>Two Column CSS Layout</title>
<style type="text/css">

body
{ margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
padding-left: 0;
padding-right: 0;
}

#menu {
position: absolute;
left: 5px;
padding: 0px;
width: 150px;
}

#content {

margin-left: 200px;
padding: 0px;
margin-right: 15px;
}

</style>
</head>
<body>

<div id="menu">

<br><br>
<b>::Site::</b><br>
<br><br>
<b>::Hostess::</b><br>
<br><br>

</div>


<div id="content">
<br><br><br><br>
Content goes here later
</div>


</body>
</html>

iGeek
08-19-2009, 12:32 AM
You simply add the links and content, save each page, and each page will load with the appropriate content.