Dropdown menu does not work on touch

0

I have the following problem I made this site but accessing it on the mobile and clicking on the menu it expands to a dropown in the tab what we offer and when I click on a link it does not work it simply selects the link below it is worth remembering that in the desktop version it works normally the error is when I use a mobile device and use ultilizo touch bootstrap there is some way to solve this

    
asked by anonymous 04.10.2016 / 21:00

1 answer

2

Try to add this goal in the header of your code:

<meta name="viewport" content="width=device-width, initial-scale=1.0">

If it still does not work, try to find the file bootstrap.min.js, and find the text:

"ontouchstart"

and replace with:

"disable-ontouchstart"

How to say on this link

    
04.10.2016 / 21:03