Reputation: 11
I am finishing up a WordPress website (https://saltypack.com.au/) that I made using the theme Neve. The last issue I am having is for the hamburger mobile Menu, I have "Services" as a dropdown menu and there is no Services page. On desktop, you can hover "Services" and the dropdown appears. On mobile, you have to click the arrow icon for the dropdown to appear and clicking "Services" does nothing. I want both the arrow and "Services" to be clickable.
Upvotes: 0
Views: 766
Reputation: 41
Set the .caret-wrap
to be:
width: 100%;
position: absolute;
Then set .caret svg
to be:
margin-left: auto;
Upvotes: 1