Hi
Please open components/com_virtuemart/themes/ja-zeolite/theme.css file, add following code to the end of file:
.vm-product-img a {
float: left;
}
– In this file, find following code:
.next_page {
background: url( 'images/next_16x16.png' ) no-repeat right;
padding-right: 30px;
line-height: 20px;
float: right;
width: auto;
font-weight: bold;
}
.previous_page {
background: url( 'images/previous_16x16.png' ) no-repeat left;
padding-left: 30px;
line-height: 20px;
float: left;
width: auto;
font-weight: bold;
}
and change to:
.next_page {
background: url( 'images/next_16x16.png' ) no-repeat right;
padding-right: 30px;
line-height: 20px;
float: right;
width: 45%;
font-weight: bold;
}
.previous_page {
background: url( 'images/previous_16x16.png' ) no-repeat left;
padding-left: 30px;
line-height: 20px;
float: left;
width: 45%;
font-weight: bold;
}