> I am trying to learn how to make them and the JT's web site is confusing me.
If you have a specific question I'd be happy to answer it. I take all of the book feedback very seriously, but if I don't know what a reader's concerns are then I won't be able to take that into consideration for the 2nd edition.
That said; it's really simple, actually. Here's a very condensed version.
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en'>
<head>
<title></title>
<style type='text/css'>
ul {
list-style: none;
background: white;
border: 1px solid rgb(128, 128, 128);
width: 200px;
marign: 0;
padding: 0;
}
ul > li {
position: relative;
padding: 3px;
}
ul ul {
position: absolute;
top: 0;
left: 100%;
display: none;
}
li:hover > ul {
display: block;
}
</style>
</head>
<body>
[list]
<li>
menu
[list]
<li><a href='#'>test</li>
</ul>
</li>
</ul>
</body>
</html>
HTH!
Regards,
Rich
--
[
http://www.smilingsouls.net]
Mail_IMAP: A PHP/C-Client/PEAR solution for webmail
Author: Beginning CSS: Cascading Style Sheets For Web Design