0

I'm a beginner in CSS and I can't google the solution to the design challenge I have. I would like to have a CSS horizontal menu like this

(entry1) (entry2) (entry3)

, where "(" and ")" are images. I'd also like to change those () images on mouse over.

I'd be extremely grateful for any tip.

Best regards, Kuba

1 Answers1

0

In your CSS :

.menu li a{
background:transparent url("images/seperator.gif") right no-repeat;
}

change .menu and "images/seperator.gif" with yours

matzone
  • 5,703
  • 3
  • 17
  • 20