简体   繁体   English

移动网站的双击链接

[英]Double Tap link for mobile site

I have a problem with some link in the upper menu of the account and the language selection of this site: shop.castorfashion.it . 我在帐户上方菜单中的某些链接以及此站点的语言选择方面存在问题: shop.castorfashion.it

When viewed from a mobile device (both android and ios ) menus need to be tapped twice to work. 从移动设备( androidios )查看时,需要点按两次菜单才能工作。 I can't find a solution to solve the problem. 我找不到解决问题的解决方案。

The site was created using prestashop . 该站点是使用prestashop创建的。

  • Account menu: 帐户菜单:

    帐户菜单

  • Languages menu: 语言菜单:

    语言菜单

Thank you. 谢谢。

I just tried your site on my iPad and the double tab comes from the hover style. 我刚刚在iPad上尝试了您的网站,双标签来自悬停样式。 You can remove it with media queries. 您可以使用媒体查询将其删除。

@media only screen and (min-width: 1000px) { 
    #topbar a:hover { 
        color: #79c753; 
    } 
}

You still have som main hover styles in your site. 您的站点中仍有主要的悬停样式。

截图

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM