Hello there, i use virtuemart 3.0.6 / joomla 3.3.6
I have set in the configuration/templates the default number of products per row to 3;
in the frontend i get this weird layout:
a normal row of three products
then a row with a gap of two products and one displayed ok
then a normal row
etc...
have a look:
http://ladyline.com.cy/joomla/index.php/view-all-products/bracelets
if i change the configuration setting to 2 or 4 products per row the problem persists (changes with the order yes but it is still there)
Anyone any ideas please ? Im getting MAD about this flaw
its your templates fault .. not vm
give the div a fixed height so they clear
div.product {
border: 0 none !important;
float: left;
height: 250px;
}
And your Joomla & VirtueMart versions are seriously out of date and should be updated. http://forum.virtuemart.net/index.php?topic=118683.0
Test the updates on a backup copy of the live site first.
Sorry to ask but in which file do i find/put this>? :P
I got kinda lost
doesn't matter.. css works anywhere.. in a css file that doesn't get over written -- template css somewhere
add !important and will always work
div.product {
border: 0 none !important;
float: left;
height: 250px !important;
}
Thanx so much! ;D