Web Hosting Talk







View Full Version : Extra space


Oakii
06-12-2005, 07:29 PM
http://www.keyclubbin.com

On the left side where it says login, there's an extra space in firefox. I can't seem to find where it's coming from ~ thanks

Jamie Harrop
06-13-2005, 05:14 AM
I did a little testing, Andrew, and it turns out it is a white space issue.

Do the following:

Change:

Password <input name="password" class="text" size="10" maxlength="200" type="password">
<br>

To:

Password <input name="password" class="text" size="10" maxlength="200" type="password"><br>

All that does it put the <br> on the same line as the password field. It does the trick though!

Oakii
06-13-2005, 05:46 AM
Wow, I would never have noticed that

Thanks much!

Jamie Harrop
06-13-2005, 05:47 AM
Not a problem, Andrew.

Remember to watch out for white space issues in the future, if there is a space such as the one you had hear, it is usually due to extra white space in the HTML.