[WSG] p tag

2006-01-11 Thread Todd Gleaton
Hello All, I am using the p align='justify' to justify my text. I am getting a huge break between the picture above and where the text starts with the tag mentioned above. What is the best way to rid the white space? I've seen this problem a lot but have come to no conclusive way of

Re: [WSG] p tag

2006-01-11 Thread Juergen Auer
Hello Todd, the idea 0 (I had to learn) is: Add padding:0; margin:0 Then see, if the problem exists again. Regards Juergen Auer Jürgen Auer, www.sql-und-xml.de Web-Datenbanken zum Mieten Friedenstr. 37, 10 249 Berlin Tel.: (030) 420 20 060 Fax:

RE: [WSG] p tag

2006-01-11 Thread Ted Drake
Of Todd Gleaton Sent: Wednesday, January 11, 2006 11:16 AM To: wsg@webstandardsgroup.org Subject: [WSG] p tag Hello All, I am using the p align='justify' to justify my text. I am getting a huge break between the picture above and where the text starts with the tag mentioned above

Re: [WSG] p tag

2006-01-11 Thread Brian Cummiskey
Todd Gleaton wrote: Hello All, I am using the p align='justify' to justify my text. I am getting a huge break between the picture above and where the text starts with the tag mentioned above. What is the best way to rid the white space? I've seen this problem a lot but have come to no

Re: [WSG] p tag

2006-01-11 Thread Svip
Well first of all, you should use CSS instead of your attribute: p { text-align: justify; } The issue you are talking about is the margin of the p tag. You can remove it by adding margin:0; to the CSS above, however, I strongely suggest you not to. Signed, Svip - sviip.dk On 11/01/06, Todd