Quote:
Originally Posted by bitg
My code looks like this.
The link is as follows: http://hidingplace.com/BibleSearch/html/header.html. As you can see, the navbar template does not show the background colors that are usually behind the links, the drop-down menu images are not showing up and not working. The only reason it is pulling the title image and the background image is becuase I have hard coded them in the header template.
Ideas?
Code:
<meta http-equiv="Content-Type" content="text/html; charset=$stylevar[charset]" />
<meta name="generator" content="vBulletin $versionnumber" />
<meta name="keywords" content="$vboptions[keywords]" />
<meta name="description" content="$vboptions[description]" />
<!-- CSS Stylesheet -->
$style[css]
<if condition="is_browser('opera')">
<style type="text/css">
ul, ol { padding-left:20px; }
</style>
</if>
<!-- / CSS Stylesheet -->
<script type="text/javascript">
<!--
var SESSIONURL = "$session[sessionurl]";
var IMGDIR_MISC = "$stylevar[imgdir_misc]";
// -->
</script>
<script type="text/javascript" src="/forums/clientscript/vbulletin_global.js"></script>
<if condition="$show['popups']"><script type="text/javascript" src="/forums/clientscript/vbulletin_menu.js"></script></if>
<?php
chdir("/home2/webbhelp/www/forums");
include("./global.php");
eval('$header = "' . fetch_template('header') . '";');
echo $header;
eval('$navbar = "' . fetch_template('navbar') . '";');
echo $navbar;
?>
|
First of all, you're adding php into the middle of an html file. Unless you have changed your htaccess file to run html files as php, then this just doesn't work.
Secondly, I see you are placing vb if conditional statements right inside html. That just doesn't work.