Having trouble with my anchor tag inside a div that should act as a popup. The anchor is clickable but doesn't always navigate to the URL in href. I can't figure out what's causing this intermittent issue. Any assistance would be greatly appreciated.
.button {
display: block;
width: 360px;
margin-top: 1em;
padding: 1em;
border: none;
border-radius: 0.25em;
text-align: center;
text-transform: uppercase;
font-size: 1em;
font-weight: bold;
}
a.button:hover, .ff-form button:hover,
.ff-form input[type="reset"]:hover,
.ff-form input[type="button"]:hover,
.ff-form input[type="submit"]:hover {
-webkit-transition: 0.4s;
-moz-transition: 0.4s;
-o-transition: 0.4s;
transition: 0.4s;
}
<div class="footer">
<a class="button" href="http://iffi.shop.com/cart">GO TO BASKET</a>
</div>