taken from your example randem:
Code:
<div class="menu">
<strong>This Site</strong>
<a href="/">Home</a>
<a href="/fun.php">Poetry Fun</a>
<a href="/members.php">Poets</a>
<a href="/search.php">Search</a>
<a href="/faq.php">FAQs</a>
<a href="/etiquette.php">Etiquette</a>
<a href="/privacy.php">Privacy</a>
<a href="/submissions.php">Submissions</a>
<a href="/links.php">Links</a>
<br />
</div>
i am trying to do something similar (but with a javascript inside the <div>), but i can't really get my head round it yet...
...for instance the positionings of the <div>s 
it's alright to do them individually, and i even managed to put them above each other, but when i try to put them next to each other i seem to do something wrong
this is what an empty template looks like so far:
(bearing in mind that i keep the css somewhere else usually)
Code:
<html>
<head><title>test</title>
<style type="text/css">
<!--
p, body, h1, h2, a, th, td { font-family: Veranda, Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
}
h1 { font-size: 16px;
margin: 10, 10
}
h2 { font-size: 14px;
margin: 0, 20 }
body { margin: 0, 150;
text-align: justify}
p { margin: 10, 10 }
p:first-letter { font-size: 300%;
float: left
}
SPAN { text-transform: uppercase }
a:link, a:visited, a:hover { font-family: Veranda, Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight: bold
}
a:link { color: red;
text-decoration: none
}
a:visited { color: #069;
text-decoration: none
}
a:hover { color: #000000;
text-decoration: underline
}
BODY { background: #66CC99;
margin-top: 0px;
margin-bottom: 0px;
margin-right: 0px;
padding-right: 0px;
padding-bottom: 0px;
SCROLLBAR-FACE-COLOR: #6699CC;
SCROLLBAR-HIGHLIGHT-COLOR: #66cc99;
SCROLLBAR-SHADOW-COLOR: #66cc99;
SCROLLBAR-TRACK-COLOR: #66cc99;
SCROLLBAR-BASE-COLOR: #6699CC;
scrollbar-dark-shadow-color: #66CC99;
scrollbar-3d-light-color: #6699CC
}
something like this here(?):
#nav { height: 100%;
width: 140px; -->body px needs to reduce
background: same as body;
...???;
}
#main { height: 100%;
width: 100%;
float: right;
border-top: 5px solid #69C;
border-left: 15px solid #69C;
border-right: 2px solid #69C;
border-color: #69C;
background: #fff;
margin-bottom: 0px
}
-->
</style>
</head>
<body>
<center>
<font color="red">
|:
<a href="http://www.link1.com">Link1</a>
:|:
<a href="http://www.link2.com">Link2</a>
:|:
<a href="http://www.link3.com">Link3</a>
:|:
<a href="http://www.link4.com">Link4</a>
:|:
<a href="http://www.link5.com">Link5</a>
:|
</font>
</center>
<div id="main">
<center>
<hr width="75%">
<font color="red">
|:
<a href="http://www.link1.com">Link1</a>
:|:
<a href="http://www.link2.com">Link2</a>
:|:
<a href="http://www.link3.com">Link3</a>
:|:
<a href="http://www.link4.com">Link4</a>
:|:
<a href="http://www.link5.com">Link5</a>
:|
</font>
</center>
</div>
</body>
</html>
on the left side, where the body has got 150px before the div starts, i'd like to insert another div, in order to put another javascript based navigation in
i have tried to put one <div> into the other, which didn't work...
...basically i am stuck with the #nav and where to place it
Bookmarks