Can I move the position of an areas 'Add to' box thingy?

Permalink
Basically I've got text overlaying an image so they are in the same position. Only the top Add to (for the image) shows and I can't see a way to get to the texts 'Add to'. Is there are way around this?

Thanks!

 
irsah replied on at Permalink Best Answer Reply
irsah
Hi,

Have you tried the theme edit mode conditional code like below:-

<?php if ($c->isEditMode()) { ?>
<style>
#your_div_containing_edit_area { your_csutom_edit_styles }
</style>
<?php } ?>


and add that to your theme .php file, where the areas overlapping? It can set an area to leave a breather while in edit mode only.. *edit*
pyrodigital replied on at Permalink Reply
Thank you Irsah!! Worked like a charm!! Saved me from having to compromise my design.

Thanks again!
irsah replied on at Permalink Reply
irsah
Your welcome.. glad you got the ball rolling... cheers.
canciller replied on at Permalink Reply
Thanks a lot.