Hello Mike These are injected through the page editor module and reside within the /.resources which means you can't easily exchange those. On the other hand you will not need to do this anyways, you could simply add this to your normal stylesheet. Since those divs are proprietary to the edit bars, this should not affect your public site/preview at all.
If you really only wanted it to appear in edit mode but not on the preview/public site, then you would need to modify the html header template script and include your extra stylesheet there. Something along those lines: [code] [#if cmsfn.editMode] <link rel="stylesheet" type="text/css" href="your-path-to-the-extra-stylesheet" media="screen,projection" /> [/#if] [/code] Downside of this is that it would not be cached like the other css/js resources from the theme. HTH Natascha -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=d1eb2439-9a6b-475c-948d-0b4ccdd56ec3 ---------------------------------------------------------------- For list details, see http://www.magnolia-cms.com/community/mailing-lists.html Alternatively, use our forums: http://forum.magnolia-cms.com/ To unsubscribe, E-mail to: <[email protected]> ----------------------------------------------------------------
