Can't click on GlobalArea

Permalink
Hi all,

I'm new to C5 and I just installed it today. I watched the tutorials but I'm stuck at inserting a GlobalArea. I just can't click on the element, see my attachment. Is this a permission or something?

I used this code:

<?php
$a = new GlobalArea('Site Logo');
$a->display();
?>

Thank you in advance!

1 Attachment

 
SMARTdesigns replied on at Permalink Reply
SMARTdesigns
Firstly I would check if this is not a CSS issue. Inspect that element using developer toolbar (Ctrl + Shift + I). Maybe it's just hidden under an other transparent floating element.

To make sure that the global area works correctly, you can add a block to it in Dashboard: .../dashboard/blocks/stacks/
enlil replied on at Permalink Reply
enlil
Also, check that there are no other "areas", global or non, with the same name on the page. I just ran into this a few minutes ago where there were two similar named areas and I was not able to click on the second instance...
mhawke replied on at Permalink Reply
mhawke
As SMARTdesigns mentioned, use CTRL + SHIFT + i to open the Developer Console but while you're there, click on the 'Console' tab and check for JavaScript errors. An error could be halting the page before the full functionality of the page has been rendered.
Visual24 replied on at Permalink Best Answer Reply
I had to remove the javascript.. Thanks for your comments!