Reply To: How do I isolate the rule for the sub-menu and the sub-menu of a sub-menu?

Home Forums Support How do I isolate the rule for the sub-menu and the sub-menu of a sub-menu? Reply To: How do I isolate the rule for the sub-menu and the sub-menu of a sub-menu?

Home Forums Support How do I isolate the rule for the sub-menu and the sub-menu of a sub-menu? Reply To: How do I isolate the rule for the sub-menu and the sub-menu of a sub-menu?

#97572
Tom
Lead Developer
Lead Developer

Hi Emily,

Give this CSS a try:

.sub-menu li {
  list-style-type: disc;
  list-style-position: inside;
}

It will show the bullet points in the sub-menu items.

Ah, the “magic number” for mobile is 768px.

So your media query would be:

@media (max-width: 768px) {

}

Let me know if you need more info 🙂