Home Page › Forums › Porto – AI Powered WordPress Website & Shop Builder › My Account menu dropdown not working properly on mobile › Reply To: My Account menu dropdown not working properly on mobile
Hello, @mrv63,
I understand. Let me explain.
The dropdown icon is inside the anchor tag for “My Account,” which also contains a link, as shown in this screenshot: https://postimg.cc/mhwRFkwM . This causes the link to open when you press the dropdown icon because it is inside the anchor tag. On mobile devices, there’s no hover feature; they interpret your finger tap as a click. This is why the link opens instead of the dropdown—it’s the default behavior on mobile devices and can’t be changed with theme settings or custom CSS.
As an alternative, you can remove the dropdown icon on mobile devices only by using the custom CSS code below:
.wpb_custom_7f1500734455b1eeef6f72f11d417d71.account-dropdown > li.has-sub > a::after {
display: none !important;
}
I hope this clarifies things for you.
Best Regards,
PThemes Team.