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
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
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>
Viewing 15 lines of 103 lines. View entire code block.
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.
That is a lot of id's :)
try placing my example just before
<?php include 'includes/footermenu.php'; ?>
See if that is editable.
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.
I was just thinking that :)
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. ;-)
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. ;-)
Good to here!
Are your sure you have something like this:
best,
Vincent