I resolved it! I use js to turn of the autocomplete; inserted it in the footer. Used css to attain he borders.
CSS:
.woocommerce ul.products li.product {
border: 1px solid #ccc;
box-sizing: border-box;
padding: 15px;
height:450px;
}
js
$(document).ready(function() {
$(“:input”).attr(“autocomplete”,”off”);
});