06-01-2021, 10:22 PM
(This post was last modified: 06-01-2021, 10:25 PM by remkonoteboom.)
This is an example of what we use:
Code:
<div class="dropdown">
<button class="btn bmd-primary dropdown-toggle" type="button" id="user_dropdown" data-toggle="dropdown" aria-haspopup="false" aria-expanded="false">
<i class="fa fa-user" style="font-size: 1.1rem;"> </i> PROFILE
</button>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="user_dropdown">
<button class="dropdown-item" type="button">Change Password</button>
<button class="dropdown-item" type="button">Profile</button>
<button class="dropdown-item" type="button">Sign Out</button>
</div>
</div>