Editable area hidden until rollover

Permalink
I have created a rollover state which contains text. The text appears when an image is rolled over. The editable area is within the rollover and only appears when rollover is activated. However, when this area appears I am unable to select it for editing. My code is as follows:

<div class="gridInner brownBack">
            <p class="purple"><img src="images/tempah_back.jpg"width="239" height="239" alt="tempeh" /></p>
            <div class="innerShow brownBack">
              <?php
                  $a = new Area('Foodstuff #1');
                  $a->display($c);
                  ?>
            </div>
          </div>


Can anybody help?

 
hutman replied on at Permalink Reply
hutman
What are you using to show/hide the text on rollover?

You could disable that code when the page is in Edit Mode using this

if (!$c->isEditMode()){
Do things when not in edit mode
}