I crack Photoshop!
Posts: 3
30 credits Members referred : 0
« on: Feb 10, 2008, 02: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: 5779
46271 credits Members referred : 3
Just another rainy day
Posts: 1
6 credits Members referred : 0
« Reply #2 on: Apr 10, 2008, 07: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>
Bill Gates is my home boy
Gender:
Posts: 710
4449 credits Members referred : 2
« Reply #3 on: Apr 10, 2008, 08: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?