Newbie problem with display os edit bar

Permalink
Hi I'm trying to convert my HTML to concrete5.
Strangely i succeeded with the standard fluid grid option that Dreamweaver provides.
Now im trying the same with a standard three column set up and don’t seem to get the edit bar in the top of my site.

Contents of my footer.php:

<?php defined('C5_EXECUTE') or die("Access Denied."); ?>

<div class="footer">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
<td><div id="footerPayOff"> <?php
$a = new Area('footerPayOff');
$a->display($c);
?></div></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td><div id="footerLegal"> <?php
$a = new Area('footerLegal');
$a->display($c);
?></div></td>
<td> </td>
</tr>
</table>
<p> </p>
<!-- end .footer --></div>
<!-- end .container --></div>

<?php Loader::element('header_required'); ?>
</body>
</html>

contents of the default.php:

<div class="sidebar1">

<p> </p>
<!-- end .sidebar1 --></div>
<div class="content">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><div id="leftMain"> <?php
$a = new Area('leftMain');
$a->display($c);
?></div></td>
<td> <div id="middleMain"> <?php
$a = new Area('middleMain');
$a->display($c);
?></div></td>
<td> <div id="rightMain"> <?php
$a = new Area('rightMain');
$a->display($c);
?></div></td>
</tr>
</table>
<h1> </h1>
<!-- end .content --></div>
<div class="sidebar2">
<h4> </h4>
<!-- end .sidebar2 --></div>

contents os the footer.php:

<?php defined('C5_EXECUTE') or die("Access Denied."); ?>

<div class="footer">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
<td><div id="footerPayOff"> <?php
$a = new Area('footerPayOff');
$a->display($c);
?></div></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td><div id="footerLegal"> <?php
$a = new Area('footerLegal');
$a->display($c);
?></div></td>
<td> </td>
</tr>
</table>
<p> </p>
<!-- end .footer --></div>
<!-- end .container --></div>

<?php Loader::element('header_required'); ?>
</body>
</html>

header & footer dot php are in folder elements
css is present in folder css.
There is a thumbnail.png and descrition.txt theme can be installed under Themes.

I've followed several instruction vids online and looking at this for a day or two.
All hel much obliged.

Greetz,
Niels
Hi I'm trying to convert my HTML to concrete5.
Strangely i succseded

NLS61
 
Steevb replied on at Permalink Reply
Steevb
Wrong call at bottom:
<?php Loader::element('header_required'); ?>


Should be:
<?php Loader::element('footer_required'); ?>
NLS61 replied on at Permalink Reply
NLS61
Thanx Steevb

Stupid ofcoarse dint see it.
I've altert that but the problem persists.

Thanks anyhow!

Niels
Steevb replied on at Permalink Reply
Steevb
Are you calling 'elements/header.php' and 'elements/footer.php' in your default.php?
NLS61 replied on at Permalink Reply
NLS61
Thanks for the quick reply!
Yes Im dooing that.
I'm making a mastake somewhere so I decided to redo it all.
Altough I dont see any differance, now it works, dont know why beats me.
Thanks anyhow much obliged.

Greetz,

Niels