Hello
I am using this module to place primary links in content top region of waffles theme.
I tried to replace default html li icons with custom image through "list-style-image" rule. It works great for menus in sidebar-first region but it doesn't work for content-top. So I suppose it's a conflict of this module, or somehow the theme is tricking me.
I have used the same code both for sidebar-first and content-top regions.
#content-top ul li{
list-style-image:url('images/bullet.png') !important;
}
#sidebar-first ul li{
list-style-image:url('images/bullet.png') !important;
}
but only the second one works.
Any ideas?