Try this:
includes/templates/YOUR_TEMPLATE/css/stylesheet.css
.button-top {
width: 25%;
text-align: right;
margin: -10px 0px 0 0;
margin-right: 0px;
padding-top: .2em;
}
That should center the add selected products to cart button vertically for you.
To stretch the 'Displaying 1 (of 18 products)' text:
includes/templates/YOUR_TEMPLATE/css/responsive_default.css
find #productListingTopNumber
and remove #productListingTopNumber from the list
or hide it
width:16%!important;
becomes this:
/*width:16%!important*/;
And you may need to change:
includes/templates/YOUR_TEMPLATE/css/stylesheet.css
find #productListingTopNumber
adjust width: 25%;
Bookmarks