View Full Version : Framesets
iforrage
01-23-2005, 05:43 AM
I'm trying to create a new style, using framesets. I would like a fixed top, nested left frameset, where the header is on type, and the navbar is on the left. I created a "second" forumhome template, which is just a copy of the original, so that I can code the frameset into the forumhome template. But, nothing I do seems to work. My question is, how do I call the $header, $navbar, and my custom forumhome template as the sources for the frames?
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 (https://vborg.vbsupport.ru/showthread.php?t=62164) 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)
$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)
$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 -
$header
$navbar
iforrage
01-30-2005, 08:08 PM
Thanks a bunch, Jonathan!!
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.