简体   繁体   English

Href链接不适用于移动视图。 半页href链接有效

[英]Href links are not working on mobile view. Half page href links are working

I have a website www.tellmequotes.com . 我有一个网站www.tellmequotes.com Its working fine over the desktop view but when i check it on my Samsung s3 most of the links are not working. 它可以在桌面视图上正常工作,但是当我在Samsung s3上对其进行检查时,大多数链接都无法正常工作。 If you open the page there are some author images you can click over them if you are on desktop but when its on mobile view it is not working. 如果您打开该页面,则有一些作者图像,如果您在桌面上,则可以单击它们,但是在移动设备上查看时,它不起作用。 I removed the infolinks script but still it is not working. 我删除了信息链接脚本,但仍然无法正常工作。 Site is divided into 2 column that Left side column is creating issue. 网站分为左侧栏创建问题的2栏。

If you scroll down on mobile and when it goes to "Celebrate" point than you will see images are clickable but above images are not. 如果您向下滚动移动设备并转到“庆祝”点,则会看到可单击的图像,而上方的图像则不可。

For a quick solution you can use this class 'authorbox' on devices as you've used it for each box. 为了快速解决方案,您可以在设备上使用此类的“ authorbox”类,就像在每个盒子上一样。

.authorbox {
    position: relative;
    z-index: 5;
}

Use the bootstrap row class to split up your sections. 使用引导程序row类拆分您的部分。

eg 例如

<div id="quotesList">
  <h2 class="bigh2">Trending Authors</h2>
  <div class="row">
    <div class="col-md-12">
      <div class="row">
        <div class="col-md-2 col-xs-6 authorbox text-center"></div>
        <div class="col-md-2 col-xs-6 authorbox text-center"></div>
        <!--etc-->
      </div>
    </div>
  </div>
</div>

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

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