How can I make them stay?
I am encountering an issue with my list. As soon as I apply li
display: inline-block;
, the custom list decorators I set up disappear.
Is there a CSS solution to preserve my list decorators when the list is displayed horizontally, or are list decorators only intended for use with vertical lists? Instead of adding an image next to each list entry, I prefer handling this in CSS for simplicity's sake.
.first-page-menu-list {
list-style-image: url('../graphics/list-style-image.png');
list-style-position: inside;
text-transform: uppercase;
}