When adding a bullet image to each navigation li element, the typical method involves using the background property.
However, if we want to include a background change as well, it is necessary to ensure our anchors inside li have "display:block;" set.
Issue: After applying "display:block" to our element and setting a background color, the bullet disappears.
What is the optimal approach for creating a menu that: Changes background color when hovered over by the user, without losing the bullet?
Update: Please refer to the following code snippet: http://jsfiddle.net/4PUFa/1/
Thank you. Regards.