Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
vbulletin XHTML Validation - Codes
Old 11-16-2008, 06:10 PM vbulletin XHTML Validation - Codes
Junior Talker

Posts: 1
Trades: 0
Hello There!,

I having an errors so, I hope you can helpme because Im not good at all.

When I tried to validated my forum I have for example, this error, and I don´t know what to do:

document type does not allow element "td" here; assuming missing "tr" start-tag

Code:
<td width="81" valign="top" style="background:url('grunged/misc/border_left_bg.gif'); repeat-y top right; text-align: right;"><img src="grunged/misc/border_left.gif" alt="border" /></td>
My 300 desasters: http://validator.w3.org/check?uri=ht...1.591#line-619

I don´t pretend you can helpme with ALL, but this one make me crazy.

Than YOU!
MaRµ is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 11-16-2008, 06:32 PM Re: vbulletin XHTML Validation - Codes
Experienced Talker

Posts: 41
Name: Jabis Sevon
Location: Tampere, Finland
Trades: 0
document type does not allow element "td" here; assuming missing "tr" start-tag

this simply points out that you haven't started an obligatory table row (tr) before your column... (a normal table structure in xhtml goes as follows
Code:
<table>
<thead>
<tr>
<td></td> ( <th> is as applicable )
</tr>
</thead>
<tbody>
<tr>
<td></td>
</tr>
</tbody>
<tfoot>
...
</tfoot>
</table>
also inline javascript and style definitions is bad for your validity, I suggest you externalize both of them (NO <style type="text/css"></style> but <link rel="stylesheet" type="text/css" href="your.css" />
and NO <script type="text/javascript">...code...</script> but <script type="text/javascript" src="your.js"/> )

that should reduce a lot of the errors for starters :>
__________________

Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
jabis is offline
Reply With Quote
View Public Profile Visit jabis's homepage!
 
Reply     « Reply to vbulletin XHTML Validation - Codes
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.46672 seconds with 12 queries