Find the image: vm-cart-bg.gif and button-viewcart.gif and put them in the images folder.
Add this to the template_css.css file at bottom:
#ja-vm-cart {
color: #FFFFFF;
width: 243px;
margin: 0px;
padding-left: 20px;
position: absolute;
top: 0px;
right: 0px;
background: url(../images/vm-cart-bg.gif) top right no-repeat;
}
#ja-vm-cart div.moduletable h3 {
margin: 10px 0px 0px -70px;
padding: 0;
text-transform: uppercase;
background: none;
border-top: none;
text-align: center;
}
#ja-vm-cart div.moduletable a {
display: block;
width: 100px;
height: 19px;
margin: 5px 0 0 0;
text-indent: -2000px;
background: url(../images/button-viewcart.gif) top right no-repeat;
outline: none;
}
#ja-vm-cart br {
display: none;
}
Find this in the index.php
<?php if (mosCountModules('user4')) { ?>
<div id="ja-search" class="ja-transbg">
<?php mosLoadModules('user4', -1); ?>
</div>
<?php } ?>
And replace it with this:
<?php if (mosCountModules('user4')) { ?>
<div id="ja-vm-cart" class="ja-transbg">
<?php mosLoadModules('user4', -2); ?>
</div>
<?php } ?>
Try that first and if it does not work please let me know?