dropdpwn menu does not work on touch

Asked

Viewed 54 times

0

I’m in the following trouble I made this website but by accessing it on mobile and clicking on the menu it expands to a dropown on 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 works normally the error is when using a mobile device and ultilizo touch am using bootstrap there is some way to solve this

  • No touch does not exist mouseover then it’s obviously not going to work. It would be good to put a differentiated menu that will be displayed on touch devices, possibly a accordion menu or a select.

1 answer

2


Try adding this meta to your code header:

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

If it still doesn’t work, try to find the bootstrap.min.js file, and find the text:

"ontouchstart"

and replace with:

"disable-ontouchstart"

As it says on this link

Browser other questions tagged

You are not signed in. Login or sign up in order to post.