For those coming to this post to find the guy figured it out but did not bother to enlighten the rest of us -- I will provide what I have link and code for how I solved the issue :
I found the answer in the joomla forum :
url = forum.joomla.org/viewtopic.php?p=1710802
be sure to read the thru the thread to get the best code snippet.
Then I had to add the cart button --
so in components/com_virtuemart/themes/default/templates/browse/gk_browse.php
I added:
*****
<span class="browseAddToCartContainer">
<?php echo $form_addtocart ?>
</span>
*****
JUST BELOW HERE :
<p class="clear"><?php echo $product_s_desc ?></p>
<p class="browseProductrating"> <?php echo $product_rating ?> </p>
<p> <a class="button_details" href="<?php echo $product_flypage ?>"><?php echo $product_details ?>...</a> </p>
****ADDED CODE ABOVE HERE****
<br style="clear:both;" />
Hope this helps. It works great!