Click to See Complete Forum and Search --> : Odd Vertical spacing in text paragraph ?
Launchnet
04-23-2006, 11:15 PM
Need Help. On several of my pages, the last row of text in a paragraph has more vertical spacing than the rest of the paragraph. Any ideas?
You can open my site below and click on the left menu "Business". On the Business page look at the text under "Classic Auto Appraisals" & also "Cal Auto Appraisals". You will see that the last row of text in each paragraph has a different vertical spacing then the rest of the paragraph.
sheepo-designs
04-23-2006, 11:20 PM
To tell you the truth, I wouldnt have noticed if you didnt post this.
Launchnet
04-23-2006, 11:24 PM
I see this happen once in awhile. I have even seen it on other sites. Thanks for looking.
Hi, I've noticed the same thing on my webpages at times.
Something I've seen to settle it as far as I could tell, is putting the coding that edits the text, or the <br> or <p>, not at the end of the line (after the last word), but on the line after it. Since the code isn't disturbed by being on another line (if no other code is in between it), then it still does the trick, but doesn't seem to separate that particular line by making it have a little more vertical spacing . . .
In your case, at the end of each paragraph, your "<b></font>" could be moved to the next line, instead of directly after the last word of the paragraph.
Hope that was helpful, If not, I apologize
ray326
04-24-2006, 08:56 AM
Try coding the page correctly and see what happens. This is wrong.
<a href="jimscaa.htm"><font face="arial" color="#0000ff" size="2"><B>
Classic Auto Appraisals</B></font></a>
<br><font face="arial" color="#b00e00" size="2"><B>
Serving the Oklahoma, Arkansas, Louisiana and North Texas Classic, Custom,
Exotic, Muscle and Antique Car, Truck and Street Rod collecting, buying, selling
and interest communities with professional, dependable and accurate valuations.
We also find and broker these fine vehicles as we have an extensive contact and
interest base of owners, buyers and sellers.</B></font>
This is right.
<h2><a href="jimscaa.htm">Classic Auto Appraisals</a></h2>
<p>Serving the Oklahoma, Arkansas, Louisiana and North Texas Classic, Custom,
Exotic, Muscle and Antique Car, Truck and Street Rod collecting, buying, selling
and interest communities with professional, dependable and accurate valuations.
We also find and broker these fine vehicles as we have an extensive contact and
interest base of owners, buyers and sellers.</p>
slaughters
04-24-2006, 10:22 AM
I have not looked at the page, but are you usig a FORM tag? Those frequently add 1 1/2 or 2 lines of white space after it's close tag. (very irritating)
Launchnet
04-24-2006, 11:19 AM
Thanks HS77. Not having code on the last line of text works.
I appreciate your solution.
No problem, I'm glad I was helpful in any way!