PDA

View Full Version : Blank page with vBulletin design but no content


dered
03-10-2011, 01:32 PM
Hi there,
I have a vBulletin 4.1.1 forum. I need a custom page, something like www.forum.com/page.php to show me design, header and footer of the forum but no posts. Instead of posts/forums i want to add my own content (pics, text etc). How is that possible to make such a page?

your24hourstore
03-10-2011, 02:06 PM
what that links to is a custom 404 -page is that what you are trying to do ?

--------------- Added 10 Mar 2011 at 10:12 ---------------

what you want is to make a custom template its so easy, just goto styles and templates/stylemanager/add new template

when you create the template you just name it custom_whatever the whatever is what will be used to call the page with a link like this http://yourwebsite.com/misc.php?do=page&template=whateveryou will add this code for header and footer <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html">
<head>
{vb:raw headinclude}
<title>Four States Photo Studio</title>
<link rel="stylesheet" type="text/css" href="{vb:var vbcsspath}vbulletin-formcontrols.css" />
</head>
<body>
{vb:raw header}
{vb:raw navbar}
<div class="blockbody">
<div class="blockrow">
<center>
<table width="800" border="0">
<tr>
Your content html or whatever will go into this area of the template
</tr>
</table>
</center>
</body>
</div>
</div>
{vb:raw footer}
</body>
</html>

Lynne
03-10-2011, 03:47 PM
Or follow this - [HOW TO - vB4] Create your own vBulletin page (https://vborg.vbsupport.ru/showthread.php?t=228112)

dered
03-15-2011, 01:59 PM
I already have a theme installed in my forum called THEME. I need to create a custom page that uses my vBulletin template, and include my vBulletin header, navbar, and footer.