I finally got it figured out how to use background images for a vertical CSS menu... I must be a slow learner.
anyway... Could someone tell me the trick to getting some space between each of the menu links?
I'd like them to be separated by about 5px or so.
Thought it would be simple, but not so much...
http://www.hctubs.com/index2.php
And if anyone has a clue as to what I did to offset the slider pics in the center content frame, I'd like to know what it is.
May have something to do with the tables that I'm using on the page under the holder div... but not sure.
I'm not sure exactly what you would need to see, and I don't want to pile this post up with a lot of unnecessary stuff.
Here is the navigation CSS
#navcontainer { width: 250px; }
#navcontainer ul
{
margin-left: 0;
padding-left: 0;
list-style-type: none;
font-family: Arial, Helvetica, sans-serif;
}
#navcontainer a
{
display: block;
padding: 3px;
width: 235px;
height: 35px;
background-image: url('../images/menu_blue.png');
border-bottom: 5px clear;
}
#navcontainer a:link, #navlist a:visited
{
color: #EEE;
text-decoration: none;
}
#navcontainer a:hover
{
background-image: url('../images/menu_green.png');
color: #fff;
}
If there is anything else that would be helpful, please let me know.
Thanks in advance,
Douglas