Thanks to all-the-vb and AN-net for the info above as I'm trying to integrate another script with vB myself. I realize most have moved on to vB 3.5+ so I'm hoping that someone may still see this post perhaps point me in the right direction regardless.
I have the navbar working fine on the new script however, the navbar portion
(only) seems to be aligned to the right... tight against the browser window creating a side scroll bar and I can't figure out why. I have completely removed the script and uploaded a test file with just the header and footer in it and the problem is the same. I have also noticed alignment is fine in Firefox... it's just IE that is not rendering the navbar centered.
The test file can be viewed at
http://www.asocommunity.com/forum/magic8ball/test.php?
... and the code I've used to create it is;
PHP Code:
<?php
chdir('/path/to/forum/directory/');
require_once('./global.php');
eval('$navbar = "' . fetch_template('navbar') . '";');
print $headinclude;
print $header;
print $navbar;
chdir('/path/to/script/directory/');
?>
<p align="center">script goes here</p>
<?php
eval('$footer = "' . fetch_template('footer') . '";');
print $footer;
?>
What am I missing because I just don't get it?
EDIT: For what it's worth... I think I have the problem tracked down to a missing or misplaced <head> tag and should be able to sort it out from there.