News:

Looking for documentation? Take a look on our wiki

Main Menu

Problem in product number per row

Started by NIkcyp, November 30, 2015, 20:34:16 PM

Previous topic - Next topic

NIkcyp

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

GJC Web Design

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;
}
GJC Web Design
VirtueMart and Joomla Developers - php developers https://www.gjcwebdesign.com
VM4 AusPost Shipping Plugin - e-go Shipping Plugin - VM4 Postcode Shipping Plugin - Radius Shipping Plugin - VM4 NZ Post Shipping Plugin - AusPost Estimator
Samport Payment Plugin - EcomMerchant Payment Plugin - ccBill payment Plugin
VM2 Product Lock Extension - VM2 Preconfig Adresses Extension - TaxCloud USA Taxes Plugin - Virtuemart  Product Review Component
https://extensions.joomla.org/profile/profile/details/67210
Contact for any VirtueMart or Joomla development & customisation

jenkinhill

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.
Kelvyn
Lowestoft, Suffolk, UK

Retired from forum life November 2023

Please mention your VirtueMart, Joomla and PHP versions when asking a question in this forum

NIkcyp

Sorry to ask but in which file do i find/put this>? :P
I got kinda lost

GJC Web Design

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;
}
GJC Web Design
VirtueMart and Joomla Developers - php developers https://www.gjcwebdesign.com
VM4 AusPost Shipping Plugin - e-go Shipping Plugin - VM4 Postcode Shipping Plugin - Radius Shipping Plugin - VM4 NZ Post Shipping Plugin - AusPost Estimator
Samport Payment Plugin - EcomMerchant Payment Plugin - ccBill payment Plugin
VM2 Product Lock Extension - VM2 Preconfig Adresses Extension - TaxCloud USA Taxes Plugin - Virtuemart  Product Review Component
https://extensions.joomla.org/profile/profile/details/67210
Contact for any VirtueMart or Joomla development & customisation

NIkcyp