After using the Landzilla template for a couple of months, I noticed there are two differences between the w-b template and the original Landzilla design (as published on
http://www.perun.net/download/landzilla-2.x.zip):
1. one is in the location of the 'footer' div which should not be nested inside the 'inhalt' div
2. one is the location of the <h2> titles of both the search and the login forms (which translates into slightly narrower dark green bars)
The fixes are the following:
1. replace around line 56 of index.php
<?php page_content(); ?>
</div>
<div id="footer">
<p>Powered by <a href="http://www.websitebaker.org/" target="_blank">websitebaker</a> - © <?php page_title('','[WEBSITE_TITLE]'); ?></p>
</div>
</div>
with the following:
<?php page_content(); ?>
</div>
</div>
<div id="footer">
<p>Powered by <a href="http://www.websitebaker.org/" target="_blank">websitebaker</a> - © <?php page_title('','[WEBSITE_TITLE]'); ?></p>
</div>
2. replace around line 31 of index.php:
<form name="login" action="<?php echo LOGIN_URL; ?>" method="post">
<h2><?php echo $TEXT['LOGIN']; ?></h2>
with the following:
<h2><?php echo $TEXT['LOGIN']; ?></h2>
<form name="login" action="<?php echo LOGIN_URL; ?>" method="post">
and replace around line 44 of index.php
<form name="logout" action="<?php echo LOGOUT_URL; ?>" method="post">
<h2><?php echo $TEXT['LOGGED_IN']; ?></h2>
with the following:
<h2><?php echo $TEXT['LOGGED_IN']; ?></h2>
<form name="logout" action="<?php echo LOGOUT_URL; ?>" method="post">
Otherwise, all I can say is that website-baker is a wonderful and smartly-designed tool.
Congratulations to the project team and thanks for this fine piece of work!