List Style for Dropdown
Toggle contextual overlays for displaying lists of links and more with the Bootstrap dropdown plugin. Our exclusive link list style for dropdown that give you more power.
Dropdown Style
Use .link-check class on ul to get styles shown in card below.
Code Example
    <div class="dropdown">
      <a class="btn btn-primary dropdown-toggle" href="#" type="button" data-bs-toggle="dropdown">Dropdown button</a>
      <div class="dropdown-menu">
        <ul class="link-list-opt">
          <li><a href="#"><span>Profile Settings</span></a></li>
          <li><a href="#"><span>Notification</span></a></li>
          <li><a href="#"></em><span>Another action</span></a></li>
          <li><a href="#"></em><span>Something else here</span></a></li>
        </ul>
      </div>
    </div>
  
                                    | Class Reference | Details | 
|---|---|
| .dropup | Trigger dropdown menus above elements by adding .dropupto the parent element. | 
| .dropright,.dropleft | Trigger dropdown menus at the right/left of the elements by adding .dropright|.dropleftto the parent element. | 
| .dropdown-menu-end | Add .dropdown-menu-endto a.dropdown-menuto right align the dropdown menu.Note: By default, a dropdown menu is automatically positioned 100% from the top and along the left side of its parent. | 
| .dropdown-menu-{size} | Use {size}asxl, lg, md, sm, xs, xxsto.dropdown-menufor controling the width. | 
Example 1 - Option Style
Use .link-list-opt class on ul to get styles shown in card below.
With Border
- 
                                                    Default
                                                    
- 
                                                    Selected / Actived
                                                    
- 
                                                    With Icon
                                                    
- 
                                                    Preview
                                                    
Code Example
    <ul class="link-list-opt">
        <li><a href="#"><em class="icon ni ni-setting"></em><span>List Action</span></a></li>
        <li><a href="#"><em class="icon ni ni-notify"></em><span>Another Action</span></a></li>
        <li><a href="#"><em class="icon ni ni-activity-alt"></em><span>More Action</span></a></li>
    </ul>
  
                                    Without Border
- 
                                                    Default
                                                    
- 
                                                    Selected / Actived
                                                    
- 
                                                    With Icon
                                                    
- 
                                                    Preview
                                                    
Code Example
    <ul class="link-list-opt no-bdr">
        <li><a href="#"><em class="icon ni ni-setting"></em><span>List Action</span></a></li>
        <li><a href="#"><em class="icon ni ni-notify"></em><span>Another Action</span></a></li>
        <li><a href="#"><em class="icon ni ni-activity-alt"></em><span>More Action</span></a></li>
    </ul>
  
                                    With Separator
- 
                                                    Default
                                                    
- 
                                                    Selected / Actived
                                                    
- 
                                                    With Icon
                                                    
- 
                                                    Preview
                                                    
Code Example
    <ul class="link-list-opt no-bdr">
        <li><a href="#"><em class="icon ni ni-setting"></em><span>Action Settings</span></a></li>
        <li><a href="#"><em class="icon ni ni-notify"></em><span>Push Notification</span></a></li>
        <li class="divider"></li>
        <li><a href="#"><em class="icon ni ni-activity-alt"></em><span>Login Activity</span></a></li>
    </ul>
  
                                    | Class Reference | Details | 
|---|---|
| .active | Use activeclass withatag for active style | 
| .no-bdr | Use no-bdrclass withultag for borderless list style | 
| .divider | Use dividerclass with blanklitag to get a divider. | 
Example 2 - Plain Style
Use .link-list-plain class on ul to get styles shown in card below.
With Border
- 
                                                    Default
                                                    
- 
                                                    With Icon
                                                    
- 
                                                    Compact / Small
                                                    
- 
                                                    Preview
                                                    
Code Example
    <ul class="link-list-plain">
        <li><a href="#"><em class="icon ni ni-setting"></em><span>Action Settings</span></a></li>
        <li><a href="#"><em class="icon ni ni-notify"></em><span>Push Notification</span></a></li>
        <li><a href="#"><em class="icon ni ni-activity-alt"></em><span>Login Activity</span></a></li>
    </ul>
  
                                    Without Border
- 
                                                    Default
                                                    
- 
                                                    With Icon
                                                    
- 
                                                    Compact / Small
                                                    
- 
                                                    Preview
                                                    
Code Example
    <ul class="link-list-plain no-bdr">
        <li><a href="#"><em class="icon ni ni-setting"></em><span>Action Settings</span></a></li>
        <li><a href="#"><em class="icon ni ni-notify"></em><span>Push Notification</span></a></li>
        <li><a href="#"><em class="icon ni ni-activity-alt"></em><span>Login Activity</span></a></li>
    </ul>
  
                                    With Separator
- 
                                                    Default
                                                    
- 
                                                    With Icon
                                                    
- 
                                                    Mix Uses
                                                    
- 
                                                    Preview
                                                    
Code Example
    <ul class="link-list-plain no-bdr">
        <li><a href="#"><em class="icon ni ni-setting"></em><span>Profile Settings</span></a></li>
        <li><a href="#"><em class="icon ni ni-notify"></em><span>Notification</span></a></li>
        <li class="divider"></li>
        <li><a href="#"><em class="icon ni ni-activity-alt"></em><span>Log out</span></a></li>
    </ul>
  
                                    Multiple Column
- 
                                                    3 Column
                                                    
- 
                                                    4 Column
                                                    
- 
                                                    Preview
                                                    
Code Example
    <ul class="link-list-plain li-col3x text-center">
        <li><a href="#">Jan</a></li>
        <li><a href="#">Feb</a></li>
        <li><a href="#">Mar</a></li>
        <li><a href="#">Apr</a></li>
        <li><a href="#">May</a></li>
        <li><a href="#">Jun</a></li>
    </ul>
  
                                    | Class Reference | Details | 
|---|---|
| .no-bdr | Use no-bdrclass withul.link-list-plaintag for borderless list style.Note: This class will not work for .li-{col}styling. | 
| .divider | Use dividerclass with blanklitag to get a divider. | 
| .sm | Use smclass withul.link-list-plainfor compact style. | 
| .li-{col} | Use {col}ascol2x, col3x, col4xwithul.link-list-plainlist for column based list. | 
Example 3 - Tidy Style
Use .link-tidy class on ul to get styles shown in card below.
- 
                                                    Default
                                                    
- 
                                                    Without Border
                                                    
- 
                                                    Compact / Small
                                                    
- 
                                                    Preview
                                                    
Code Example
    <ul class="link-tidy">
        <li>
            <div class="custom-control custom-control-sm custom-checkbox">
                <input type="checkbox" class="custom-control-input" checked="" id="cdp1-bl">
                <label class="custom-control-label" for="cdp1-bl">Balance</label>
            </div>
        </li>
    </ul>
  
                                    | Class Reference | Details | 
|---|---|
| .no-bdr | Use no-bdrclass withul.link-tidytag for borderless list style. | 
| .sm | Use smclass withul.link-tidyfor compact style. | 
Example 4 - Menu Style
Use .link-list-menu class on ul to get styles shown in card below.
- 
                                                    Default
                                                    
- 
                                                    Active Link
                                                    
- 
                                                    With Divider
                                                    
- 
                                                    Preview
                                                    
Code Example
    <ul class="link-list-menu">
        <li class="active"><a href="#"><span>Account Settings</span></a></li>
        <li><a href="#"><span>My Account</span></a></li>
        <li><a href="#"><span>Sign out</span></a></li>
    </ul>
  
                                    | Class Reference | Details | 
|---|---|
| .active | Use activeclass withlitag for active style. | 
| .divider | Use dividerclass with blanklitag to get a divider. | 
Example 5 - with Heading
Use .link-check class on ul to get styles shown in card below.
- 
                                                    Default
                                                    
- 
                                                    Selected
                                                    
- 
                                                    With Icon
                                                    
- 
                                                    Preview
                                                    
Code Example
    <ul class="link-check">
        <li><span>Show</span></li>
        <li class="active"><a href="#">10 Items</a></li>
        <li><a href="#">20 Items</a></li>
        <li><a href="#">50 Items</a></li>
    </ul>
    <ul class="link-check">
        <li><span>Order By</span></li>
        <li class="active"><a href="#">DESC</a></li>
        <li><a href="#">ASC</a></li>
    </ul>
  
                                    | Class Reference | Details | 
|---|---|
| .active | Use activeclass withlitag for active style | 
| .divider | Use dividerclass with blanklitag to get a divider.Alernately you can use two ulset with.link-checkclass | 
 
                             
                             
                         
                                                             
                                                                 
                                                                
                                                             
                                             
                                                         
                                                         
                                                         
                                                         
                                     
                                     
                                     
                                     
                                     
                                     
                                     
                                     
                                     
                                     
                                     
                                     
                                    