Can't add blocks to sidebar

Permalink
I am new to Concrete5 and have a page set up here: http://www.morgancc.edu/concrete5....

I have three sidebar areas that I set up, (see attached screenshot), but when I'm in Edit Mode, I can't click on them to add blocks. (They only appear as a link.) I have checked and re-checked the code, but can't figure out what's going on.

Any help would be appreciated!

Terri

1 Attachment

 
vincedelaking replied on at Permalink Reply
vincedelaking
Hio Terri,

Are your sure you have something like this:

<div id="column_one">
    <?php  
      $a = new Area('column_one');   
      $a->display($c);
      ?>
  </div>
  <div id="column_two">
    <?php  
      $a = new Area('column_two');   
      $a->display($c);
      ?>
  </div>
  <div id="column_three">
    <?php  
      $a = new Area('column_three');


best,
Vincent
TEades replied on at Permalink Reply
I'm pretty sure I do. Here's my code for that page:

<?php  defined('C5_EXECUTE') or die("Access Denied."); ?>
<!DOCTYPE html>
<html>
 <head>
  <meta http-equiv="Content-type" content="text/html;charset=UTF-8"/>
  <meta name="generator" content="0.8.791.106"/>
  <!-- CSS -->
  <link rel="stylesheet" type="text/css" href="<?=$this->getThemePath()?>/css/site_global.css"/>
  <link rel="stylesheet" type="text/css" href="<?=$this->getThemePath()?>/css/index.css"/><!-- JS includes -->
  <script src="http://musecdn2.businesscatalyst.com/scripts/1.1/jquery-1.7.min.js" type="text/javascript"></script>
  <script src="<?=$this->getThemePath()?>/scripts/1.1/sprydomutils.js" type="text/javascript"></script>
  <script src="<?=$this->getThemePath()?>/scripts/1.1/museutils.js" type="text/javascript"></script>
<?php Loader::element('header_required'); ?>
   </head>
 <body>
vincedelaking replied on at Permalink Reply
vincedelaking
hi Terri,

That is a lot of id's :)
try placing my example just before
<?php include 'includes/footermenu.php'; ?>
See if that is editable.
TEades replied on at Permalink Reply
Tried this, and putting it AFTER the include. No such luck. I'm thinking this is probably a z-index issue, which I was afraid of.
vincedelaking replied on at Permalink Reply
vincedelaking
I was just thinking that :)
TEades replied on at Permalink Best Answer Reply
I'm actually figuring it out. If I move the code for the divs higher up in the document structure, it helps.

On a side note, I'm a web designer/developer and have been trying out an Adobe beta product that is a WYSIWYG that makes laying out CSS easy, and automatically puts in code so that all works in IE, too. (A developer's dream, right?) However, I'm finding that I could've written cleaner code, myself, and still saved time. ;-)
vincedelaking replied on at Permalink Reply
vincedelaking
Good to here!