I am outputting a list of products in Magento, as a simple list wrapped in a table.
As this list can get quite long (100 products+), I've used the ideas from here to automatically split the table into two, to help with readability etc.
#container {
column-count:2;
-moz-column-count:2;
-webkit-column-count:2;
}
However, this method just flows the table into 2 columns. Does anyone know how I can get the table header to also repeat in the second column?
Using the linked answer, you can see this fiddle which shows where I am at: http://jsfiddle.net/J3VB5/51/
column
convention. – Windsor