Here's the site - http://ammaris.pl/index.php/en/naszyjniki-produkty
I tried to put the product titles and product details button under the thumbnail, but not knowing a lot about CSS I cannot find that setting. Please help :)
Looks like you are using template overrides, so maybe edit the override template - {yourJoomlatemplate]/html/com_virtuemart/category/default.php - or try using Firebug to learn is css could be used. Or ask the template supplier - http://forum.virtuemart.net/index.php?topic=108212.0
Template overrides are not being used. I managed to get Product Details below, but can't manage the product titles.
.floatright, span.floatright {
clear: both;
float: none;
}
Thank you for the code, but, as I said, I don't have much CSS expertise - please tell me where to put the code.
css works any where .. as long as a subsequent rule doesn't over write it
so suck and see -
if over written just add
.floatright, span.floatright {
clear: both !important;
float: none;
}
Worked like a charm, thanks!