[Solved] Unable to edit my Areas

Permalink
Hi Folks,
maybe anyone of you is able to help me with getting my areas editable.

When I changed the Theme to my own, editing disapeared so I started searching and came across problems with header or footer not loaded (but it is) and JS errors (none here) and read that the z-index could cause the problem.

So I checked back on my code and saw two z-index attributes being on 10 and 25 or something. When I read it could be, that editing controls are on a z-index of 5 I took down my values to 0 and 1 but I still see no editing controls?

The code of my template is quite easy:
<?php
// Include the header
$this->inc('elements/header.php');
?>
<!-- Content area wrapper -->
<div id="content" class="inner">
   <div id="content_inner_wrapper">
      <div id="content_inner">
         <?php
            BeginContainer("content_slim white_100 padding_11");
               BeginContainer("content_inner_full white_100 padding_6_4");
                  // Content area
                  $content = new Area('Content');
                  $content->display($c);
               EndContainer();


It definately isn't the template itself right?

Thanks & greetings

SlapY