MyBB Hacks

Full Version: W3C Validation - how important is it?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
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
<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
<!-- 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.
Pages: 1 2
Reference URL's