Quote:
Originally Posted by cellarius
No, you're wrong. No offense, but have you ever looked at the basic structure how vB puts together the html page frame, before adivsing others?
This is the basic structure of a html page
HTML Code:
<HTML>
<HEAD>
<TITLE>My first HTML document</TITLE>
</HEAD>
<BODY>
<P>Hello world!
</BODY>
</HTML>
The header template is part of the normal page body (i.e. inside <body></body>), just like the footer or anything else vB renders on the screen.
What you wrongly call the headerinclude template really is called headinclude, because it is the stuff that goes between the <head></head>-tags. So: The code needs to go into the headinclude template. And there are no <head>-tags in the headinclude template, because they are in the main page templates, like SHOWTHREAD.
|
I don't understand a lot of technical language but you seem to me to be right as I couldn't found <head> in many of the templates. Only in forumhome and forumdisplay template.
Where can I put the chat code so it is displayed on every page of the site?