line col "corrected"

Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default line col "corrected"

    Using Dreamweaver CS4 on a Mac

    Upon opening some of my pages, I get a box showing HTML Corrections:
    "Corrected invalid HTML" then in the box it shows something like "Line 86 Col
    179 : Closed a <img> tag that was left unclosed." This box has a "Continue"
    button that I click on to dismiss it; however, the same message occurs each
    time I open that page and nothing ever seems to actually get corrected, even
    after working on the page and saving it.

    I understand the Line 86 portion, but the Col 179 portion baffles me. My
    question then is twofold.
    1. What is the Col 179 referring to?
    2. How do I get the Line/Col correction to actually _be_ corrected?

    bhludlow Guest

  2. Similar Questions and Discussions

    1. #38325 [Ver->Csd]: spl_autoload_register() gaves wrong line for "class not found"
      ID: 38325 Updated by: iliaa@php.net Reported By: marcos dot neves at gmail dot com -Status: Verified +Status: ...
    2. How to recognize in Acrobat new line "\n" or any whitespaces in PDF using javascript ?
      I need so hard find in PDF file whitespaces ( the most important for me is new line "\n" ) after each row in PDF file using Acrobat Javascript...
    3. CFINPUT type="radio" w/ "value" requires "label"
      On a Flash form, when you specify type='radio' and value='whatever', the value of the 'value' attribute will be displayed as a label if no 'label'...
    4. #17495 [Com]: Failed opening .. (include_path=".") in Unknown on Line 0 OFTEN! (not always)
      ID: 17495 Comment by: heliumonline at optusnet dot com dot auNOSPAM Reported By: jhanna at qcora dot com Status: ...
    5. "Start" "Program" "Menu" list is empty
      For what ever reason my list of installed programs in my "Start" "Programs" menu is empty. Anyone know how to restore the list. Thanks for your...
  3. #2

    Default Re: line col "corrected"

    bhludlow wrote:
    > Using Dreamweaver CS4 on a Mac
    >
    > Upon opening some of my pages, I get a box showing HTML Corrections:
    > "Corrected invalid HTML" then in the box it shows something like "Line 86 Col
    > 179 : Closed a <img> tag that was left unclosed." This box has a "Continue"
    > button that I click on to dismiss it; however, the same message occurs each
    > time I open that page and nothing ever seems to actually get corrected, even
    > after working on the page and saving it.
    >
    > I understand the Line 86 portion, but the Col 179 portion baffles me. My
    > question then is twofold.
    > 1. What is the Col 179 referring to?
    > 2. How do I get the Line/Col correction to actually _be_ corrected?
    It appears that you have an option checked in preferences to fix HTML errors (and warn you about it). You can see these preferences via Edit -> Preferences (or on Mac I think they are under the Dreamweaver menu), then select the Code Rewriting category.

    "Col" means column, so at the 179th character in your code on the indicated line where the issue was found. To remedy the issue, well you could simply change your preferences to not update your code. For the specific issue that you're referring to about closing a IMG tag, it seems that perhaps you're using an XTHML doctype for your file, but you have one (or more) images on your page that are similar to:
    <img src="me.jpg" >
    instead of what XHTML would require:
    <img src="me.jpg" />

    So if you have a lot of pages with the non-closed IMG tags on them, then with what appears to be your preferences Dreamweaver will attempt to correct the issues when a new page wit the issue on it is opened. Once Dreamweaver has fixed the issue, theoretically, you shouldn't get that message again for that document. Unless of course you re-add in valid XHTML code to your page.

    If you have other issues with this, please post in the general Dreamweaver forum ( [url]http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=12&catid=189&entercat=y[/url] ) and post a link to one of your pages, and possibly also post screenshots to indicate exactly what you're seeing and when.

    --
    Danilo Celic
    | [url]http://blog.extensioneering.com/[/url]
    | WebAssist Extensioneer
    | Adobe Community Expert
    danilocelic AdobeCommunityExpert 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