I would like to disable the link that leads to the user settings. Only the link linked to the username at the top of the menu. For mobile devices this is a problem as it is very close to the icon that expands the menu.
Hi! Instead of doing that, you can set to expanded state that submenu defaultly, when a user click on the profile menu:
/* Expand submenu on mobile */
@media only screen and (max-width: 47.99em)
{.sub-menu.hp-menu.hp-menu--user-account{display: flex!important; flex-direction: column;}}
or just place a little more space between the X button and the menu elements:
.header-navbar__burger>ul {
padding: 3.5rem 2rem;
}
1 Like
@Fabricator It worked out! Thanks for your help.
2 Likes
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.