So I have a background image: I would like to have a vertical menu of 6 links on the sticky-note and 4 of the links (the middle 4) would show a description on the strip of paper when moused over. Can anyone help me out with the coding here please? Edit: Never mind I figured it out tough stuff.
Just use CSS, something like this. HTML <ul> <li><a href="#">product <span>description of the product</span></a></li> </ul> Code (markup): CSS ul a span {display:none} ul a:hover span {display:block; position:absolute; top:xxx;left:xxx} Code (markup):