Arg, the designer of the mod didn't follow how zen cart template files work. Very frustrating when that happens.
ALL zen cart pages are SUPPOSED to have this before the middle content:
<div class="centerColumn">
and a </div> after the middle content.
If you look at the source of all the other pages on your site, they have that.
All of the faq pages are missing that code.
Any page that goes in includes/templates/YOUR_TEMPLATE/templates should always have that code around it. So you can open up ALL the files for that mod that are in the includes/templates/YOUR_TEMPLATE/templates folder, add <div class="centerColumn"> right
after all the beginning file info:
Code:
<?php
//
// +----------------------------------------------------------------------+
// |zen-cart Open Source E-commerce |
// +----------------------------------------------------------------------+
// | Copyright (c) 2003 The zen-cart developers |
// | |
// | http://www.zen-cart.com/index.php |
// | |
// | Portions Copyright (c) 2003 osCommerce |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.0 of the GPL license, |
// | that is bundled with this package in the file LICENSE, and is |
// | available through the world-wide-web at the following url: |
// | http://www.zen-cart.com/license/2_0.txt. |
// | If you did not receive a copy of the zen-cart license and are unable |
// | to obtain it through the world-wide-web, please send a note to |
// | [email protected] so we can mail you a copy immediately. |
// +----------------------------------------------------------------------+
// $Id: faq_manager.php 001 2005-03-27 [email protected]
//
?>
and then add a closing div </div> right at the very end of the file.
Please let the creators of the mod know as well.
Bookmarks