Hello.
ive successfully removed certain sub-menus from my buddypress on desktop using the following code:
.x-brand:hover {
text-decoration: none;
}
body .sub-menu .menu-item-buddypress-navigation:nth-child(1) {
display: none
}
body .sub-menu .menu-item-buddypress-navigation:nth-child(2) {
display: none
}
body .sub-menu .menu-item-buddypress-navigation:nth-child(3) {
display: none
}
body .sub-menu .menu-item-buddypress-navigation:nth-child(4) {
display: none
}
It looks like this:
But the code doesnt work for mobile… what can i do to my code so it also deletes certain sub menus from mobile? It currently looks like this:
Thank you. Again, i need the mobile version to look like the desktop.
Thank you!