Skip to content

Dropdowns not working #9

@sutherland007

Description

@sutherland007

I was checking the code of the dropdowns and it's showing like this

<li class="has_nested" id="example">
<a href="#">Example</a>           
   <ul>
       <li id="model1"><a href="/admin/">Model1</a></li>
       <li id="model2"><a href="/admin/alumno_induccions">Model2</a></li>
     </ul>
 </li>

So, it should be like this:

<li class="dropdown" id="example"> <-notice the class
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button">Example</a> <-- added css class, data-toggle and role          
   <ul class="dropdown-menu"> <-- notice the class
       <li id="model1"><a href="/admin/">Model1</a></li>
       <li id="model2"><a href="/admin/alumno_induccions">Model2</a></li>
     </ul>
 </li>

But I only modified that using the web inspector, How can I make permanent?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions