PC users, any ideas?

liunx

Guest
I have a gap between cells that isn't there on the MAC. Check this page <!-- m --><a class="postlink" href="http://www.hyperdrivei.com/LARletterTEST/index2.htm">http://www.hyperdrivei.com/LARletterTEST/index2.htm</a><!-- m --><br />
Anyone's advice would be greatly appreciated. :D<!--content-->Already fixed, thanks anyways!<!--content-->What was wrong and how did you fix it? Post again in case someone else is looking for answers.<br />
<br />
<br />
<br />
<br />
Check the error list (<!-- m --><a class="postlink" href="http://validator.w3.org/check?uri=http%3A%2F%2Fwww.hyperdrivei.com%2FLARletterTEST%2Findex2.htm&doctype=HTML+4.01+Transitional&charset=iso-8859-1+%28Western+Europe%29&ss=1&outline=1&sp=1&verbose=1">http://validator.w3.org/check?uri=http% ... &verbose=1</a><!-- m -->) and then apply these fixes:<br />
<br />
<br />
You need to add a <head> ... </head> section to the document, with title, meta tags, etc. Code on my pages always begins with:<br />
<br />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><br />
<html><br />
<head><br />
<title> Your Title Here </title><br />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><br />
<meta http-equiv="Content-Language" content="en-gb"><br />
<meta name="Keywords" content=" your, keyword, list, here "><br />
<meta name="Description" content=" Your Description Here. "><br />
<meta name="MSSmartTagsPreventParsing" content="TRUE"><br />
<meta http-equiv="imagetoolbar" content="no"> <br />
<br />
</head><br />
<br />
Of the en-gb part, the first two letters come from the code list in ISO 639 and the last two letters come from the code list in ISO 3166.<br />
<br />
See also ISO 4217 for codes for representing currency, and then ISO 8601 for formats for date and time.<br />
<br />
<br />
<br />
Code within the page:<br />
<br />
I use: <a href=http://www.htmlforums.com/archive/index.php/"somepage.html" title="some text here"></a> for links.<br />
<br />
I use <img src=http://www.htmlforums.com/archive/index.php/"somefile.png" alt="some text"> for images.<br />
<br />
<br />
<br />
Headings are done with <hx></hx> tags, properly used from <h1></h1> downwards.<br />
<br />
<br />
<br />
Add alt="some text" to every <img > tag, the text reflecting what is in the dispayed image. On unimportant images, like spacer elements, a minimum of alt="" is fine. For bullet-point images, alt="*" is often used. Search engines do index the alt text. The alt attribute is a required element.<br />
<br />
<br />
<br />
You should export the CSS to an external file and call it with a one line instruction in the <head> section:<br />
<link type="text/css" rel="stylesheet" src=http://www.htmlforums.com/archive/index.php/"/path/file.css"><br />
<br />
External CSS files must not contain any HTML tags or code.<br />
<br />
<br />
<br />
The four margin errors can be replaced with a little bit of CSS code instead. Put this is a text file, with a name ending in .css:<br />
<br />
body {<br />
margin: 0px;<br />
padding: 0px;<br />
}<!--content-->
 
Back
Top