Hi there I've been fiddling around with your tags 2 page theme and I was wondering (as I can't access the drop down menu tutorial anymore) if you had any other tutorials on how to add a drop down option into the page itself? sorry if I'm not making much sense!
Yeah sure! I have my own dropdown script as well, so I would be happy to help you out.Â
I originally used acuiteâs script, but at one point it wasnât working for something that I needed so I made my own! Okay here we go
Here is my script:
<br />$(document).ready(function(){<br /> Â Â $(â.titleâ).click(function(){<br /> Â $(this).next(â.menuâ).slideToggle( 400 );<br />});<br />});
Just paste this code into your theme and replace .title and .menu with what your own title/dropdown menu are called
If you would like to change how fast the dropdown menu appears then just change â400â
If youâd like me to explain how it works, feel free to ask :)










