
Originally Posted by
monta17
Is there anyway to insert the little black arrows (gifs) that were in the original example
Yes, no problem at all. Just do what's done on the Spry version, adding the arrow as a background image. for example, on the top level links, do something ike this:
Code:
#nav li a {background: url("Spry-UI-1.7/css/Menu/basic/images/ArrowMenuDown.gif") no-repeat right 85px;}
Of course, you should move the background image to a more obvious location, like your images folder, so you'll need to change that file path.
For the other links, remove the » from the HTML and also put in a background image on selected links, perhaps via a special class. E.g.:
Code:
<a class="sub" href="#">Lifts »</a>
Code:
#nav li li a.sub {background: url("Spry-UI-1.7/css/Menu/basic/images/ArrowMenuRight.gif") no-repeat right 50%;}
Also, you'll probably need to add a bit of padding for any links with an arrow to make room for the arrow, which is added in the padding area as a background image.
Bookmarks