Thanks for the replies, but I still can not find what I am looking for.
I found "forumdisplay" and when I changed the coding for that, any page what was forumdisplay.php was implimented into my sites layout. However posts, the main board, etc were all the default theme.
There has to be a file that tells the template what to look like. So someone may want to have their footer as their header, and it would be in a file.
In GENERIC_SHELL (the template) I found this.
Quote:
$stylevar[htmldoctype]
<html xmlns="http://www.w3.org/1999/xhtml" dir="$stylevar[textdirection]" lang="$stylevar[languagecode]" id="vbulletin_html">
<head>
$headinclude
<title>$vboptions[bbtitle] - $pagetitle</title>
</head>
<body>
$header
$navbar
$HTML
$footer
</body>
</html>
|
So to me that looks like the main layout of the site. So it includes the current title, the header of the board, the navigation bar, then the boards html (all the forums, posts, etc), then it has the footer, and closes off all html.
But when I try to modify that file, it does not modify. Any ideas?