Reputation: 647
I would like to separate "number of pieces" from "price of the article" in the "nouveaux puzzles" box at http://www.puzzles-et-jeux.com with either a space between them or a line break. The proprietary code generating the catalog lists [##box_complement?champ=NOUVEAUTES&nb_products_affiche=4&nb_products=4&dimension=200x200&fields=designation;famille;prix] and I don't think it can be modified, but there might be a way to change it within the CSS. Thank you
Upvotes: 0
Views: 3609
Reputation: 128791
Space between:
span.famille { margin-right:5px; }
Line break:
span.famille { display:block; }
Upvotes: 1