Dropdown Coding - Will not collapse!

Afternoon everyone!

Just need a little bit of help with some coding.

Trying to create a dropdown directory list of photo galleries, which only appears on Mobile devices (Thanks Hide!)

The list contains links that take you to the relevant page with the photos.

However, I cannot get it to collapse once you press it to open.

The webpage is as follows: - In order to view the button, you must view it on a "Medium or Small" screen.

http://marleys2019.weebly.com/photo-gallery.html

The code I'm using is as follows;

<style>
.wcustomhtml
{
overflow: visible !important;
}
.dropbtn {
background-color: #a1a1a1;
color: white;
min-width: 250px;
padding: 16px;
font-size: 16px;
border: none;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 250px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {background-color: #ddd;}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {background-color: a1a1c1;}
</style>
<div class="dropdown">
<button class="dropbtn">Photo Galleries</button>
<div class="dropdown-content">
<a href="http://marleys2019.weebly.com/new-truck.html">Truck Fitout</a>
<a href="http://marleys2019.weebly.com/2009-christmas.html">09 Xmas Party</a>
<a href="http://marleys2019.weebly.com/40-years.html">40Yrs Surprise</a>
<a href="http://marleys2019.weebly.com/hope-valley-opening.html">Hope Valley Opening</a>
</div>
</div>

Can anyone please help me with what I'm missing?! I just need it to collapse when you press it again.

Many thanks in advance!

394 Views
Message 1 of 4
Report
3 REPLIES 3
Square

Hi @Tyefoods Thanks for the detailed post. Smiley Happy I won't be able to help out, unfortunately, but I'm sure we have a user or two on here that can. 

382 Views
Message 4 of 4
Report

Thank you Bernadette Smiley Happy

Can anyone please assist me, been trying on and off for two weeks, and can already feel my hair line receeding!

359 Views
Message 4 of 4
Report

I'm not sure you can make it expand and collapse without using jQuery. One thing you could try instead is using the tabs or accordion app within the hide app element. Those are expandable elements and you won't need to do any special coding to use them.

355 Views
Message 5 of 4
Report
This thread has been archived and locked. Please start a new thread if you would like to continue the conversation.