Ok figured it out...
Basically changed this...
/* cart buttons */
a.hikashop_cart_button, a.hikashop_cart_button:hover{
background-image:url(../images/button.jpg);
border:1px solid #356AA0;
color:#000000;
font-family:Verdana,Arial,Helvetica,sans-serif;
font-size:11px;
padding:5px 8px;
text-decoration:none;
cursor:pointer;
float:left;
white-space:nowrap;
}
a.hikashop_cart_button:hover{
outline: 2px solid #92C1FF;
}
To this... (basically added the first class, leaving the rest alone)
/* cart buttons */
.hikashop_product_page a.hikashop_cart_button, .hikashop_product_page a.hikashop_cart_button:hover{
background-image:url(../images/add_to_cart_custom.jpg);
background-repeat:no-repeat;
margin-right:-20px;
cursor:pointer;
float:left;
border: none;
width:354px;
height:140px;
}
a.hikashop_cart_button, a.hikashop_cart_button:hover{
background-image:url(../images/button.jpg);
border:1px solid #356AA0;
color:#000000;
font-family:Verdana,Arial,Helvetica,sans-serif;
font-size:11px;
padding:5px 8px;
text-decoration:none;
cursor:pointer;
float:left;
white-space:nowrap;
}
a.hikashop_cart_button:hover{
outline: 2px solid #92C1FF;
}
To remove the "Add to Cart" text... go to the /language/en-GB/en-GB.com_hikashop.ini
Change...
ADD_TO_CART="Add to cart"
To...
ADD_TO_CART=""
Also in the CSS, I had to adjust the width of my left side.
Thanks! Maybe this will help someone else down the road.