Up until yesterday, my links had been working properly. However, I just discovered that if I scroll down the page via mouse or "Page Down", my links cannot be clicked.
It appears to work properly on the mobile versions of Chrome and Firefox, but not their laptop/computer equivalents.
What could be the problem?
header-middle .container .row .col-sm-4 {
padding-left: 0;
}
.product-image-wrapper{
border:1px solid #F7F7F5;
overflow: hidden;
margin-bottom:30px;
}
.single-products {
position: relative;
}
.productinfo{
width: 100%;
height: 265px;
overflow: hidden;
}
.productinfo img{
display: inline-block;
vertical-align: middle;
height: 130px;
width: auto;
overflow: hidden;
}
.productinfo h5{
text-overflow: ellipsis;
word-wrap: break-word;
overflow: hidden;
height: 2.2em;
line-height: 1.1em;
}
.productinfo h2{
color: #FE980F;
font-family: 'Roboto', sans-serif;
font-size: 24px;
font-weight: 700;
}
.add-to-cart {
background:#F5F5ED;
border: 0 none;
border-radius: 0;
color: #696763;
font-family: 'Roboto', sans-serif;
font-size: 15px;
margin-bottom: 25px;
}
<div class="col-sm-4">
<div class="product-image-wrapper">
<div class="single-products">
<div class="productinfo text-center">
<img src="#" alt="#">
<h2>price</h2>
<h5>title</h5>
<a href="#" target=_blank class="btn btn-default add-to-cart">
<i class="fa fa-shopping-cart"></i>
click now
</a>
</div>
</div>
</div>
</div>