The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#11
|
||||
|
||||
Quote:
|
#12
|
|||
|
|||
To be honest, i have no idea how to fix them...
For example: Quote:
... |
#13
|
||||
|
||||
It means incorrect nesting. Either you've started a <td> tag and not closed it, or you've wrote a </td> when there is no <td> to start it.
|
#14
|
|||
|
|||
Quote:
Ok so i got it to 27 errors alone.. check it here: http://validator.w3.org/check?uri=ht...&sp=1#line-352 now it seems most of the errors generate out of this block. anyone willing to have a quick look? HTML Code:
//--> </script> <!-- logo --> <a name="top"></a> <div align="center"> <table width="85%" border="0" cellspacing="0" cellpadding="1"> <tr> <td bgcolor="#000000"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="100%" align="left" style="vertical-align: top"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td bgcolor="#FFFFFF"> <table cellpadding="1" width="100%"> <tr> <td bgcolor="#304157"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td align="left" style="background-image: url('images/satellite/header/header_bg.gif')" bgcolor="#F2F4F6"> <a href="index.php"><img src="images/satellite/header/logo.gif" border="0" alt="" /></a></td> </tr> </table> <!-- /logo --> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="22" style="background-image: url('images/satellite/gradients/nav_top_blue.gif')"> </td> </tr> </table> </div> <!-- nav buttons bar --> <div align="left"> <table class="tborder" cellpadding="100%" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px"> <tr align="center"> <!--<td class="vbmenu_control"><a href="index.php?amp;">Home</a></td>--> <td class="vbmenu_control"><a href="register.php?amp;">Register</a> </td> <td class="vbmenu_control"><a href="faq.php?amp;" accesskey="5">FAQ</a></td> <td class="vbmenu_control"> <a href="memberlist.php?amp;">Members List</a></td> <td class="vbmenu_control"><a href="calendar.php?amp;">Calendar</a> </td> <td class="vbmenu_control"><a href="forumdisplay.php?amp;do=markread">Mark Forums Read</a></td> <td class="vbmenu_control"><a href="#bottom">Bottom</a></td> </tr> </table> </div> <!-- / nav buttons bar --> <div align="center"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="19" style="background-image: url('images/satellite/gradients/nav_bottom_bg.gif')"> </td> </tr> </table> </div> <!-- content table --> <!-- BEGIN TEMPLATE: spacer_open --> <!-- open content container --> <div align="center"> <div class="page" style="width:100%; text-align:left"> <div style="padding:0px 15px 0px 15px"> <!-- END TEMPLATE: spacer_open --> <p></p> <div align="center" style="font-size: 20px; font-family: tahoma, verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif |
#15
|
||||
|
||||
Quote:
It would take me some time to figure out what's what with thecodepastedfrom the results from your XHTML Vebose validation. I see things easierin the templates than i do with the raw ouput. But if you want to do it yourself, take in the template that code isin, and where you see an open tag like <td>, and Close it for example. HTML Code:
<td class="vbmenu_control"><a href="usercp.php?$session[sessionurl]">$vbphrase[user_cp]</a></td> HTML Code:
<td class="vbmenu_control"><a href="usercp.php?$session[sessionurl]">$vbphrase[user_cp]</a> If you see an open <tr> tag also close it. Note the following example. HTML Code:
<!-- Arcade Search --> <tr> <td class="thead">Arcade Game Search</td> </tr> <tr> <td class="vbmenu_option" title="nohilite"> <formaction="arcade.php?do=category"method="post"> <inputtype="text"class="bginput"name="search"size="20"/>$gobutton<br/> </form> </td> </tr> <!--ArcadeSearch--> all it is, is going through your template and where you see a tag open and not closed. close it. Now when you start to close all the open tags most of the other stuffshould go away with it, because it's directly linked to the error's forthe non closed tags. now if you see this Line 356, column 942: end tag for "tr" omitted, but OMITTAG NO was specified that means a <tr> was never started. so it's trying to close atag that was never opened. Like in the example above,you'll note how itstarted and ended it's tags. It should be safe to removethe</tr>, but just in case, you can always omit the tagwith<!--</tr> -->, If no error's show up, then you can justremove the code. First make sure that there indeed was no <tr>needed, or started above, but closed to early. Same thing goes for <table> and</table> tags. ift hey'renot closed. close them, if they're not opened, test first, then removeif it's sucessfull. an example of a properly opened and closed table HTML Code:
<!-- Addon to John's vB3 ArcadeV3 hack - created by Natch --> <if condition="$show['member']"> <!-- flash arcade auto-menu --> <div class="vbmenu_popup" id="flasharcade_menu" style="display:none"> <table cellpadding="4" cellspacing="1" border="0"> <tr><tdclass="thead"><ahref="$vboptions[bburl]/arcade.php?$session[sessionurl]"title="$vbphrase[arcade_addon_title]">$vbphrase[arcade_addon_title]</a></td></tr> $nav_arcade </table> </div> <!-- / flash arcade auto-menu --> </if> <!-- Addon to John's vB3 ArcadeV3 hack - created by Natch --> |
#16
|
|||
|
|||
Thanks for your time.
But the problem is that there are so many tags and tables within tables within tables thats its nearly impossible to figure it out... You know any XHTML editor who would show me nesting problems of tags? This is the header template, the source for most problems... |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|