So I have a table.
First thing I want to do is put some space between two rows of the table. I tried inserting a <br /> in between the two <tr> elements, but that only put space above the ENTIRE table (don’t know why).
Second thing I want to do is center a picture in a column so it lines up in the middle of the text in the column below it. I tried placing an align=center on the <td> element to no avail.
Have you tried changing the CSS for the table rows and possibly adding a :
padding-bottom: x px;ormargin-bottom: x px;to gain the space that you would like in the table.Also – I believe that you would need your
"align=center"property to be a"text-align: center".