W3C Validation - how important is it?
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #11
RE: W3C Validation - how important is it?
I have a very limited knowledge about MyBB template, HTML and CSS. So, please don't laugh at me about this explanation Biggrin

MyBB templates work part by part.

Example:

Let say that we design our forumdisplay_threadlist template like this:

HTML Code
<table>
	{$threads}
</table>


Then, we design our forumdisplay_thread template like this:

HTML Code
1
2
3
4
5
6
7
<table>
	<tr>
		<td>
			.........
		</td>
	</tr>
</table>


Look at the line #2 in our forumdisplay_threadlist template. There is {$threads} variable there. The variable will load our forumdisplay_thread template.

Is there something wrong with our template? We will try to combine the templates above, both of them. The result / the output page will be like this:

HTML Code
1
2
3
4
5
6
7
8
9
10
11
12
13
<!-- start: forumdisplay_threadlist -->
<table>
	<!-- start: forumdisplay_thread -->
	<table>
		<tr>
			<td>
				.........
			</td>
		</tr>
	</table>
	<!-- end: forumdisplay_thread -->
</table>
<!-- end: forumdisplay_threadlist -->



(06-13-2010 08:54 AM)leefish Wrote:  Would it still be ok for me to post my XThreads example here with these 4 validation errors?

I think you can post it. And edit it later if you find a way to solve the error.

06-13-2010 09:14 AM
Find all posts by this user Quote this message in a reply

« Next Oldest | Next Newest »

 Standard Tools
Forum Jump: