Reputation: 57
I am facing problems with horizontal scrolling menu into my website.
I used the code of w3schools for this navbar. The problem is that it does not applies to the nav menu. Therefore, the scroll effect is missing both on PC and Mobile version.
Here is how nav menu looks like:
Upvotes: 0
Views: 254
Reputation: 86
Remove the display: block
style from your .active
class.
The scrollbar does not appear because it fits inside without the need of a scrollbar. Set a max-width
style to the parent element to get the scrollbar
Upvotes: 1