pk wrote:I am trying to make a 2 line horizontal menu using CSS nested listed instead of using tables tables. It's a list of songs that when you click on the 'play' button under the song's name the song plays. I can make it work by using tables but rather use CSS. Is using nested lists the way to go? If so, I need some help please.
Here is a sample of what I am trying to do...
http://perau.com/practicepage/horimenutest1.html
Thanks
pk
Hi PK
You could do something like this with just html coding
<!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">
<head>
</head>
<body id="shophome">
<div id="header_wrapper">
<div id="header">
<h1>List your songs</h1>
<ul id="navigation">
<li><a href="home.mp3">Song 1</a></li>
<li><a href="song2.mp3">Song 2</a></li>
<li><a href="song3.mp3">Song3</a></li>
</ul>
</div>
</div>
<div id="wrapper">
<div id="content">
<h2>Welcome to the ????? website</h2>
</div>
</div>
</body>
</html>
include these lines in your css
you can change things like font ,colour weight etc
#navigation {margin-top:15px; font-size:1.0em; font-weight:bold; color:#ffffff;}
#navigation li {display:inline; margin-right:6px}
#navigation li a {color:#ffffff}
hope that gives you some help