Automattic / themes

Free WordPress themes made by Automattic for WordPress.org and WordPress.com.
https://themeshaper.com
GNU General Public License v2.0
862 stars 350 forks source link

Luxury theme crops dropdown menu #3194

Open rickmgithub opened 3 years ago

rickmgithub commented 3 years ago

Steps to replicate

URL: https://awakenstartups.com/ Theme: Luxiry

dcoleonline commented 3 years ago

As a workaround, I applied this CSS to the site for them:

@media (max-width:  1916px){
    .menu li.menu-item-805:hover ul {
        margin-left: -45px;
    }
}

So now it looks like this: image (1)

khristiansnyder commented 3 years ago

Had a report of this in #30421770-hc.

Used CSS to fix:

.menu li:hover ul, .menu li[aria-expanded="true"] ul {
    left: 130px;
}
.menu .nav-arrow {
display: none;
}