I'm developing an e-commerce website.
I have 3 tables
- Products (id, name, subcategory_id)
- colors_products(id, color_id, product_id)
- Colors (id, name)
in my add product form (add.ctp):
<?php echo $this->Form->input('Color', array('multiple'=>'checkbox'));?>
I want the checkbox list in horizontal, not vertical. someone please help.