edit area overlap

Permalink
I have 2 edit areas (nav and content) that overlap when a user is signed into the site to edit it. Is there a way to make them not overlap when editing?

I have attached a screenshot below.

Thanks,
JDO2010

1 Attachment

 
irsah replied on at Permalink Reply
irsah
Hi JDO,
You could include this in your .php pagetype file;
<div class="your_area" <?php if ($c->isEditMode()) { ?>style="margin-top:20px;"<?php } ?>>
    <!--your aoverlapped area codes-->
</div>

in your div/s where overlapping. This will only execute and gives a breather of 20px (from div before it) in edit mode only.

Basically it's in your stylesheet, which did not allow for "breathe" area prior to concrete5 edit mode.

Hope it helps.
Irsah Indesigns