[ad_1]
Try changing the input html tag to a button.
from
<input type="submit" value="Add to cart" class="Add_To_Cart_Button" />
to
<button type="button" value="Add to cart" class="Add_To_Cart_Button">
Add to Card
</button>
and your css file
button.Add_To_Cart_Button {
background-color: #000;
color: #fff;
border: none;
font: inherit;
cursor: pointer;
font-size: 13px;
margin-bottom: 40px;
width: 120px;
-webkit-appearance: none;
border-radius: 0;
}
[ad_2]