How do I create a simple drop menu for/on a mobile app?

Joined
Aug 22, 2025
Messages
12
Reaction score
0
Hello.

Could I please just ask, how I would go about creating a simple drop menu for a mobile app?

Working with an html template, the coding for the bottom bar, has 3 options. One is home, second is a menu (i've included below), and the third is a search button.

I'm just working on the menu button:-


Code:
<!-- mobile bottom bar -->
<div class="mobile_bottombar d-block d-lg-none">
        <div class="header_icon">
                 <a href="javascript:void(0)" class="icon_wrp text-center open_category" id="mobile_menwrap">
                           <span class="icon">
                                  <i class="icon-list-ul"></i>
                           </span>
                          <span class="icon_text">Menu</span>
                   </a>
         </div>
 </div>

I'd be grateful if anyone knows how to create a simple drop menu.

Thank You.
 
Joined
Apr 25, 2017
Messages
272
Reaction score
36
Try place this right after your bottom bar (or anywhere near the end of <body>):

Code:
<!-- Mobile dropdown menu -->
<div class="mobile_menu" id="mobile_menu">
<ul>
<li><a href="/home">Home</a></li>
<li><a href="/profile">Profile</a></li>
<li><a href="/settings">Settings</a></li>
<li><a href="/logout">Logout</a></li>
</ul>
</div>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,348
Messages
2,571,452
Members
48,795
Latest member
Lonell Lee

Latest Threads

Top