Quote:
Originally Posted by iforrage
how do I call the $header, $navbar, and my custom forumhome template as the sources for the frames?
|
Create a new vbulletin file (refer to
this thread on vbulletin.org) for
each of the templates you need. Here's an example.
header.php - TEMPLATE NAME "header_frame" (or whatever you decide to call it)
HTML Code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>
$headinclude
</head>
<body>
$header
</body>
</html>
navbar.php - TEMPLATE NAME "navbar_frame" (or whatever you decide to call it)
HTML Code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>
$headinclude
</head>
<body>
$navbar
</body>
</html>
now, with
forumhome (the default vbulletin template) simply
delete the instances of -