On Tue, 2003-07-15 at 22:32, Mark Komarinski wrote: > This is a real hard problem to describe, but it's really annoying. It > seems to happen with only HTML code that I write. > > Take a look at http://www.wayga.org/~mkomarinski/julie.php > > Take a look between the images, in the lower right hand corner outside the > border. > > See a little blue dash? >
This is a really old problem. It is, as has been mentioned before, due to white space in your HTML. It is almost always due to a newline just after the <img> tag and before the </a> tag. If you like to make your HTML look neat and tidy then you will almost certainly see this little bugger show up. The trick is to place everything from the anchor start tag (<a href=...>) to the anchor end tag (</a>) on a single line with absolutely no spaces around the <img> tag that is between them. -- Dan Coutu Managing Director Snowy Owl Internet Consulting, LLC http://www.snowy-owl.com/ _______________________________________________ gnhlug-discuss mailing list [EMAIL PROTECTED] http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss
