mzubala / jquery-custom-scrollbar

189 stars 102 forks source link

Does not work when used in unordered/ordered list #54

Open iahnn opened 9 years ago

iahnn commented 9 years ago

I tried this one to customize the main navigation of my website but it does not work or never to work because the list items will get wrapped with div elements.

instead of this:

<ul>
<li>....
<li>....
</ul>

The plugin transform the html structure to this

<ul>
<div>
<li>....
</div>
</ul>

which result to break my navigation.