I have a table and need 2 rows merged horizontally, come somebody help me do this i seem to be having some difficulties. Here is my source and a screen attached. The green line in the image is where i want to split the cell. Thanks
I'd be glad to help but I'm confused as to what you're trying to do. You say: I have a table and need 2 rows merged horizontally but then you sayThe green line in the image is where i want to split the cell
If the look you're going for is what I've circled in the attached picture then here's the code you need to change <th rowspan="1.5"> on line 25 to <th rowspan="2"> and then change <td> on lines 26-34 to <td rowspan="2" > last thing is you need to add is:
<tr>
<td height="whatever height you want here"></td>
</tr>
If the look you're going for is what I've circled in the attached picture then here's the code you need to change <th rowspan="1.5"> on line 25 to <th rowspan="2"> and then change <td> on lines 26-34 to <td rowspan="2" > last thing is you need to add is:
<tr>
<td height="whatever height you want here"></td>
</tr>
after the </tr> on line 35
hope this helps.
Exactly what i needed, Thank you i appreciate it alot.