Hello, ATCK has been very useful to me and my main "problem" is just that the admin menu (part of $closure) doesn't display at the top of the page (as in other themes).
Any idea what to do?

Thank you!

Comments

calebgilbert’s picture

Hi Athaclena,

Hm. It appears I forgot to a include a print $closure statement within the layout builders template - so if you're not using the page.tpl.php file that came with atck then the $closure statement is just probably missing.

If you used the layout builder to create your page.tpl.php file, just make sure to paste the following code somewhere near the bottom of your file and all should be well.

<?php if ($closure): ?> 
    <?php print $closure; ?> 
 <?php endif; ?>

Will (eventually) get this added to the template builder...

Regards

Athaclena’s picture

Thank you for your reply!

The closure (and therefore the menu) wasn't getting printed at all so I looked through the admin menu issues and added the code already.
Now the menu shows but ate the bottom of the page - just on top of the footer.

Athaclena’s picture

Status: Active » Closed (fixed)

Oops, it looks like I printed $closure out within a section and a "standard untidy" div. Now that I've moved it out it's showing up fine.
Thanks!