Issue
When I hover over the dropdown in my navbar, the mouse changes to the text pointer instead of the hand pointer that should show for a link.
Here's my html:
<ul class="nav">
<li class="active"><%= link_to 'Home', root_path %></li>
<li><a href="#">Forums</a></li>
<li class="dropdown">
<a data-target="#" class="dropdown-toggle" data-toggle="dropdown" role="button">
World vs. World
<b class="caret"></b>
</a>
<ul class="dropdown-menu" role="menu" aria-labelledby="dLabel">
<li><%= link_to 'Current Match', current_match_path %></li>
<li><%= link_to 'All NA Matches', wvw_path %></li>
</ul>
</li>
</ul>
Anybody know how I can fix this?
Solution
We're missing your CSS, but I would go for a simple cursor: pointer
:
.dropdown-menu li:hover {
cursor: pointer;
}
Answered By - zessx
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.