you need some other code as well, that code wont work by itself Broc....
all of this code has to go in the head of each page that contains the menu. the head is at the top of your page Broc it starts with <head> and ends with </head>. this code must go inside those two tags
also, this code creates a vertical menu going down th page like mine, not a horizontal one going across the page. it also display text in the rollover not an image.
in the code above in my previous post... the green tags only need to be used once, one at the top one at the bottom. then you can copy and paste the blue bit as many times as you like for as many menu items as you need mate
WARNING: Publishing in BlueVoda may cause the code not to work. Using the FTP feature will be ok though.
Code:
<style type="text/css">
#menu {
width:100px;
text-align:center;
position:relative;
margin:1em auto;
}
.box {
position:relative;
}
#menu a, #menu a:visited {
font-size: 10px;
font-family: Verdana, Helvetica, sans-serif;
text-decoration:none;
background-color:#fff;
color:#c00;
display:block;
width:88px;
height:16px;
border:1px solid #fff;
padding:5px;
}
* html #menu a, * html #menu a:visited {
width:150px;
height:28px;
w\idth:88px;
he\ight:16px;
}
#menu a span {
display:none;
}
#menu a:hover {
border:1px solid #EEE;
}
#menu a:hover span.left,
#menu a:hover span.right {
font-size: 12px;
font-family: Verdana, Helvetica, sans-serif, font-weight: bold;
display:block;
position:absolute;
height:0;
width:0;
overflow:hidden;
border-top:8px solid #fff;
border-bottom:8px solid #fff;
}
#menu a:hover span.left {
left:5px;
top:5px;
border-left:8px solid #c00;
}
#menu a:hover span.right {
left:87px;
top:5px;
border-right:8px solid #c00;
}
* html #menu a:hover span.left,
* html #menu a:hover span.right {
width:8px;
height:16px;
w\idth:0;
he\ight:0;
}
#menu a:hover span.lk {
display:block;
position:absolute;
left:120px;
top:0;
padding:5px;
width:100px;
background-color:#fff;
color:#000;
border:1px solid #234;
}
</style>