I want to use an image as a border (which is pretty much a dot repeated) and I want to put this on the bottom and top border on my menu.
Right now it either shows on the top
OR the bottom, but I cannot figure out how to get both.
I have tried:
Code:
#menu a {
display: block;
float: left;
height: 25px;
padding: 9px 30px 0 40px;
background: url(images/img5.gif) repeat-x top, bottom;
text-decoration: none;
text-transform: uppercase;
font-size: 12px;
color: #656973;
}
Code:
#menu a {
display: block;
float: left;
height: 25px;
padding: 9px 30px 0 40px;
background: url(images/img5.gif) repeat-x bottom;
background: url(images/img5.gif) repeat-x top;
text-decoration: none;
text-transform: uppercase;
font-size: 12px;
color: #656973;
}
Is this even possible, I think im about to punch my computer screen :\