So I made a template called forum.php:
<?php
/*
Template Name:forum
*/
?>
and I called the usual team:
<?php /* get all options: */
include (TEMPLATEPATH . '/functions/bfa_get_options.php');
include (TEMPLATEPATH . '/forumheader.php'); ?>
forumheader.php also wanted to call some friends, hence:
<!-- Header -->
<td id="header" colspan="<?php echo $cols; ?>">
<!-- <?php bfa_header_config($bfa_ata['configure_header']); ?> -->
<?php include (ABSPATH.'wp-content/themes/atahualpa353/forumheader.htm'); ?>
<?php wp_nav_menu( array( 'sort_column' => 'menu_order', 'container_class' => 'menu-header2' ) ); ?>
</td>
<!-- / Header -->
Forum .htm was there:
<html>
<head>
</head>
<body>
<!-- Header -->
<!-- <div id="imagecontainer" class="header-image-container" style="background: url('http://www.toadthejournal.com/wp-content/themes/atahualpa353/images/forum/art.jpg') top left no-repeat;"><div class="clickable">
<a class="divclick" title="Words" href="http://www.toadthejournal.com"> </a></div></div> -->
<!-- / Header -->
</body>
</html>
and the menu showed up.
But alas, the header image was nowhere to be seen!
http://toadthejournal.com/?page_id=2119
Any ideas for how to get him to turn up?