|
Unfortunately the method described above will result in an error or warning when the page is run through a validator such as Weblint or Dr. Watson. Using the method above results in the overall source code below (when viewed at Transcribe):
<<>TABLE>
<<>TR><<>TD>
<<>H3 ALIGN=LEFT>
"Contents of the title area"
<<>/H3>
<<>P ALIGN=LEFT>
<<>p>Table codes here
<<>/P>
<<>/TD><<>/TR><<>/TABLE>
The error of the code above is that the opening
<<>P ALIGN=left> tag is not closed off before adding a new <<>p> tag.
To avoid a validation error, a <<>/p> tag should be added at the very beginning of the "add an item"--"text" area, and then a
<<>p> tag should be added at the very end of the "add an item"--"text" area, resulting in the overall source code looking like this (when viewed at Transcribe):
<<>TABLE>
<<>TR><<>TD>
<<>H3 ALIGN=LEFT>
"Contents of the title area"
<<>/H3>
<<>P ALIGN=LEFT>
<<>/p>(at the beginning of the "text" area)
Table codes here
<<>p>(at the end of the "text" area)
<<>/P>
<<>/TD><<>/TR><<>/TABLE>
Using this method the <<>p> tags are opened and closed in the correct places.
Actually a better method of aligning images and text, etc is here .
Back to <<>div> tags page
More Webtv PageBuilder help
|