![]() |
Troubleshooting an HTML Document |
Module W27c (v. 1.2) |
|
How to Troubleshoot - Some Rules to Live BySummarized from "The Power of the Most Likely", by Bob Colwell (Computer, October 2002, pp.12-14)
|
|
Common Problems in HTML |
| Symptom | Possible Cause | Possible Fix |
| You make a change, but it doesn't show in the browser | You're looking at one file and fixing another | Check the file's:
Change file name as needed |
| Image doesn't show when browsing on workstation | Image file name or location aren't the same as in the image <img...> tag | Check the file's:
Change either file name or location, or image tag. |
| Image showed on the workstation, but doesn't show when browsing on the server. |
|
|
|
|
|
| Nested list doesn't indent when it should. | Outer list was closed prematurely. | Remove </ul> or </ol> when starting the inner (nested) list. The outer list should only be closed after the inner list is complete. |
| Nested lists don't pop out when they should, resulting in an inverted stairway. |
|
|
|
|
|
| Absolute link (complete URL) doesn't work. | Typo | Don't type URLs into HTML code. Instead, navigate a browser to the linked page, click in the Location or Address window, and <Ctrl>C to copy the URL. Paste it into the HTML code. |
| Relative link (within the same Web site) worked on your computer, but doesn't work on the server. | Inconsitent capitalization | Make sure links and file names use the same capitalization. Your life will be much simpler if you use only lower-case letters. |