PDA

View Full Version : FlashChat : how to add Vbulletin header, navbar, etc..


ThomasR
08-10-2005, 09:33 AM
Hi,

I have installed FlashChat on my Vbulletin forum, no problems, it runs smoothly, I add some hack/mod to see who is online, admin panel, etc.. everything is ok.

But I want to add some template modification to my flashchat page itself :
-Add the Vbulletin navbar, add my custum header, and the footer.

How can I do this ? The Flashchat is a php page, then, I think I can include all this stuff, but how can I do it ?

My forum template : http://www.eovia3d.net/forum
The chat : http://www.eovia3d.net/chat

I want to add all the top part (menu, illustration and nav bar) ;)

Thank you in advance!

EricaJoy
08-10-2005, 10:17 AM
https://vborg.vbsupport.ru/showthread.php?t=62164 - How to create your own vBulletin-powered page!

I used this method, then iframed the actual chat on the vbulletin powered page in the template like this:

$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle]</title>
$headinclude
</head>
<body>
$header

$navbar

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat">Your Chat Title</td>
</tr>
<tr>
<td class="alt1"><div align="center"><iframe src="$vboptions[bburl]/chat/index.php" width="100%" height="600" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></div></td>
</tr>
</table>

$footer
</body>
</html>

ThomasR
08-10-2005, 11:31 AM
Thank you very much ! And it will help me if I have other things to install like the chat !