In my HTML:
<table>
<tr><td>product 1</td><td>image 1</td></tr>
<tr><td>product 2</td><td>image 2</td></tr>
</table>
would look like
+-----------+-------+
| product 1|image 1|
+-----------+-------+
| product 2|image 2|
+-----------+-------+
how do i make it look like:
+----------+---------+
| product 1|product 2|
+----------+---------+
| image1 |image 2 |
+----------+---------+
Without changing the HTML, how can i solve this?
jQuery, CSS, anything would be okay except modifying HTML!
I know this is not how table is used, but i need to change a table that is generated by the php and i can't touch the PHP(in this case)