|
Posted by Jeff North on 11/18/07 21:35
On Sun, 18 Nov 2007 15:15:41 GMT, in comp.lang.javascript "Mika"
<anon@anon.com>
<xGY%i.49525$c_1.26385@text.news.blueyonder.co.uk> wrote:
>| "Jeff North" <jnorthau@yahoo.com.au> wrote in message
>| news:j9ouj3hacf25adjjva1frldqklhv76fjo8@4ax.com...
>| > On Fri, 16 Nov 2007 18:12:37 GMT, in comp.lang.javascript "Mika"
>| > <anon@anon.com>
>| > <p4l%i.48642$c_1.38326@text.news.blueyonder.co.uk> wrote:
>| >
>| >>| Hello, we understand you guys may be able to help.
[snip]
>| >>| Internet Explorer cannot open the Internet site...
>| >>| Operation aborted
>| >>|
>| >>| Here is an example of the page in question:
>| >>| http://tinyurl.com/35mwxr [broadband recommended]
[snip]
>| > I'd fix up the errors/warnings within the html first.
>| > -----------------------------------------------------
>| > Result: 0 errors / 139 warnings
[snip]
>| Thanks. There are no "errors" that we know of or can see, although there
>| are some warnings which do not affect the end result so can be ignored.
>|
>| However can you suggest what the correct Doctype string should be if not the
>| current one?:
>|
>| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
>| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>| <html xmlns="http://www.w3.org/1999/xhtml">
>| <head>
>| <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
Don't use XHTML - http://hixie.ch/advocacy/xhtml
That would solve some of the problems.
If you are using Firefox then download the HTML Validator by Marc
Gueury, Web Developer by Chris Pederick and Firebug by Joe Hewitt
plugins. These 3 plugins are invaluable, IMHO, to assist in the
development of any website.
The problems that needs fixing are:
line 30 column 1 - Warning: discarding unexpected <head>: you've got 2
head tags on the page
Don't use the <font> tag it's been deprecated.
Don't allow Dreamweaver to set the styling names otherwise all sorts
of weird and wonderful things can occur. For example:
..style1, .style13, .style2 {
color: #0054C7;
}
..style2 {
color: #000000;
color: #0054C7;
font-family: Tahoma;
font-size: 11px;
margin-top: 4px;
}
..style2 {
color: #000000;
}
..style2, .style45 {
color: #000000;
}
a {
color: #0000FF;
}
a {
color: #FFFFFF;
color: #0000FF;
}
a, .style19, a {
color: #FFFFFF;
}
td {
color: #000000 padding: 0;
}
td {
color: #000000 color:#000 padding: 0;
}
The following items have errors:
..fill {
text-alight: right; --> should be align not alight
}
..style66 {
font-size: 1.51232e+034;
}
..style69 {
font-size: 1.51232e+034;
}
..style70 {
font-size: 1.51232e+034;
}
-- -------------------------------------------------------------
jnorthau@yourpantsyahoo.com.au : Remove your pants to reply
-- -------------------------------------------------------------
Navigation:
[Reply to this message]
|