Currently, I am working on a website where the main menu navigation is designed using the list-style
property to separate each menu item. In Firefox, everything appears as intended with small circles between each menu item. However, when viewed in Chrome, the circles seem to be positioned behind the menu items themselves. I'm unsure if this issue is related to my styling choices or potentially a bug specific to Chrome.
To access the site, please click on the following link:
While I won't include all of my CSS code due to it being part of a Joomla template and thus quite lengthy, here is the additional CSS that may be relevant:
#menubar {
height: 25px;
}
.menu, .menu ul {
list-style: circle outside none;
margin-left: 20px;
}
.menu-dropdown li.level1 {
height: 18px;
padding: 0 32px 0 15px;
}
.menu-dropdown a.level1 > span, .menu-dropdown span.level1 > span {
line-height: 25px;
}
.menu-dropdown li.level2 {
list-style: none outside none;
}
If providing a link to the main menu.css file would be helpful, I can certainly do so. Any guidance or advice on how to resolve this issue would be greatly appreciated, as I am currently struggling to understand why this discrepancy is occurring.