Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Bogus Code

    I lose the right hand side of my weight-conversation table when viewed through
    the browser. The code for this table has been taken from a free-code site so I
    queried this quirk with them. I have been given the following reply but do not
    know whether I should accept their comment as the code they refer to wasn't put
    in by me, it appear on the Dreamweaver generated template I use.

    "The very first line of your html page is bogus: i've removed:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    (this line is of no use anyway) from the top of the page and the problem goes
    away".

    ...I then received a follow-up response stating:

    "the standard you've selected(xhtml) via
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" at the first line is
    too strict - it make the converter html code to downgrade and ignore
    margins/paddings and besides your pages are not XML ones replace it with

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >

    as [url]www.microsoft.com[/url] uses for html pages"

    Would you recommend I follow his advice? My site can be seen at
    [url]www.laserlines.co.uk[/url], thank you for any help on this.


    haberdashery Guest

  2. Similar Questions and Discussions

    1. CFMX 7 Getting Bogus DB Error
      Since upgrading to CFMX 7 two weeks ago I have been getting a sporadic database error on pages that work 99% of the time. Error is: Error Executing...
    2. Bogus subscription instructions on website
      Found at http://archives.postgresql.org/pgsql-general/ If you hate getting many mail messages per day then you should consider a digest (where...
    3. /var/mail BOGUS files
      Hi all Linux gurus ! I have on my email server a series of BOGUS files . It's a solaris 9 box with sendmail 8.10.12 My mailboxes ( /var/mail )...
    4. This is such a bogus article
      http://support.microsoft.com/default.aspx?scid=kb;en-us;306165 -- George Hester __________________________________
    5. ftp connects even if address is bogus
      Running a firewall or parent controls software? -- Ken Wickes This posting is provided "AS IS" with no warranties, and confers no rights. ...
  3. #2

    Default Re: Bogus Code

    The first response stating your DOCTYPE doesn't do anything is flat out
    wrong. Somebody is in the wrong profession.
    You are, however, using the wrong DOCTYPE for a normal HTML page. You
    should probably be using HTML 4.01 Transitional (it's a choice in DW; you
    can make it your default choice in preferences).

    It looks like this:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">

    If their product only works in quirks mode, then it's a bad product and you
    should find an alternative.


    Lionstone Guest

  4. #3

    Default Re: Bogus Code

    > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
    >
    > as [url]www.microsoft.com[/url] uses for html pages"
    >
    > Would you recommend I follow his advice? My site can be seen at
    > [url]www.laserlines.co.uk[/url], thank you for any help on this.
    This is bogus too. The doctype they list here is valid but not complete.
    It, too, will put IE into quirks mode. Please follow lionstone's
    direction....


    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "haberdashery" <webforumsuser@macromedia.com> wrote in message
    news:eerq2j$6f0$1@forums.macromedia.com...
    >I lose the right hand side of my weight-conversation table when viewed
    >through
    > the browser. The code for this table has been taken from a free-code site
    > so I
    > queried this quirk with them. I have been given the following reply but
    > do not
    > know whether I should accept their comment as the code they refer to
    > wasn't put
    > in by me, it appear on the Dreamweaver generated template I use.
    >
    > "The very first line of your html page is bogus: i've removed:
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    >
    > (this line is of no use anyway) from the top of the page and the problem
    > goes
    > away".
    >
    > ...I then received a follow-up response stating:
    >
    > "the standard you've selected(xhtml) via
    > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" at the first
    > line is
    > too strict - it make the converter html code to downgrade and ignore
    > margins/paddings and besides your pages are not XML ones replace it with
    >
    > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
    >
    > as [url]www.microsoft.com[/url] uses for html pages"
    >
    > Would you recommend I follow his advice? My site can be seen at
    > [url]www.laserlines.co.uk[/url], thank you for any help on this.
    >
    >

    Murray *ACE* Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139