-
1. Re: Enabling in-context editing on a website created using Muse
thetrickster888 Jun 1, 2013 9:05 AM (in response to Christopher Toon)Adding ICE to a muse site without HTML knowledge will be hard. First off-- once you add/edit your pages on BC to add ICE you can no longer go back to Muse to make future edits. I don't think Muse downloads a project, it just publishes whatever local changes you have to BC. I don't know if you can just edit the HTML code in Muse or not. I don't use Muse at all.
But, to add ICE to your site you'll need to edit the HTML markup of the elements you want editable or to make repeating sections. It involves adding extra attributes on your existing html elements.
For more information on ICE to see if you can make sense of it, see:http://forums.adobe.com/docs/DOC-3201
You can use it in the email campaign editor or in your BC web pages. Basically, it just involves wrapping some html code around your elements you want editable.
<p>This line of editable text</p>
becomes:
<div ice:editable="html" ice:options="bold, italic">
<p>This line of editable text</p>
</div>
Without HTML or CSS knowledge this might be a tough task. Although, if you spend a little time to learn the basics of HTML then you can probably handle this as it is really easy markup to implement ICE.
-
2. Re: Enabling in-context editing on a website created using Muse
Christopher Toon Jun 1, 2013 5:16 PM (in response to thetrickster888)Thanks really appreciate your help


