I crack Photoshop!
Posts: 3
30 credits Members referred : 0
« on: Feb 10, 2008, 03:21:09 PM »
Hi.
In a table data I have four lines of text each line separated by a <br> The text are different font sizes. The issue I am having is that the lines have space between them above and below. How do I get the lines of text closer together using simple html?
text line 1 | (this space) | text line 2
Regards
I am a metal monkey!
Administrator Community Supporter?
Jedai Sword Master
Gender:
Posts: 7822
39867 credits Members referred : 3
Just another rainy day
Posts: 1
6 credits Members referred : 0
« Reply #2 on: Apr 10, 2008, 08:49:40 PM »
Instead of using <br> tag use the code below. If you want to increase the spacing increase the cellspacing <table cellspacing='0%' cellpadding='0%' border='0%'> <tr><td>Line 1 </td></tr> <tr><td>Line 1 </td></tr> <tr><td>Line 1 </td></tr> <tr><td>Line 1 </td></tr> </table>
I am a fanatic. So?
Gender:
Posts: 584
3633 credits Members referred : 2
« Reply #3 on: Apr 10, 2008, 09:44:05 PM »
While adding a nested table would work, why add the level of complexity it requires when Nickolas' solution is the easier and more favorable one to the search engines?