XF 2.2 Menu open style prop questions

Dixie McCall

Well-known member
Hello again, 🙃

I have two questions regarding Pop Up menu style properties. I'm trying to create a round navigation style and having a hard figuring out how to:

1. Make the TOP of the pop up menu button round like the main nav buttons. It is currently showing flat on hover. I have the corner radius set in Freeform CSS box but it is only rendering 3 sides as rounded.

2. Drop down menu left upper corner is still rendering squared but I have rounded all the corners of this in css.

Please see attached and thank you!
 

Attachments

  • Screenshot (1009)_LI.webp
    Screenshot (1009)_LI.webp
    5.8 KB · Views: 4
Solution
D
Hover or open ?
You can try this when the tab is opened
Less:
.p-nav-list .p-navEl.is-menuOpen {
    border-radius: 8px;
}
Less:
.menu--structural.menu--left .menu-content {
    border-top-left-radius: 8px;
}
Add !important if needed.
 
Hover or open ?
You can try this when the tab is opened
Less:
.p-nav-list .p-navEl.is-menuOpen {
    border-radius: 8px;
}
 
Solution
Back
Top Bottom