Hi, my startpage for my computer http://www.stealth-shield.com/homepage.htm shows fine in IE6, but in Firefox (the browser I use) it has a space between the image and the links, causing me to have to scroll down. I created the page with an old program called page1, and I don't know a whole lot about HTML, could someone please take a look at it, and suggest a fix? Thanks, RonMo
The following code is in your page just under the image definition: <br> <center><font face="Arial" color="#000000" size="7">Ron's Computer<br> <font size="6"><br clear="left"> </font></font></center> HTML: It's makes the browser type Ron's Computer with black, then the following <br> adds space under the text. Remove that code and see what happens Later Edit : IE does not render it properly, if you check again, the text Ron's Computer is listed on the right of the image even though there's a <br> tag before the text, telling the browser to render the text under the image.
In IE's defense, the image is aligned to the left, which would cause the text to wrap around its right side. Though, the text is off the edge of the screen, so there is good reason for both renderings; neither is more correct than the other.
I'm sorry. We're holding IE on allegations covered under the Patriot Act. IE, while an American Citizen, is not entitled to representation. Thank you.
i believe the real problem is with your coding, FF uses web standards to display pages, if your site was valid coding it would display properly.
Okay... <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en-us"> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=us-ascii"> </head> <body> <p> <img src="http://www.stealth-shield.com/Florida33.jpg" alt="" align="left"><br> Hello, World! </p> </body> </html> Code (markup): The rendering difference still exists here.