I'm not sure that I explained myself properly. I'm attempting to use templates in the normal way - ie a non editable area that remains constant and editable regions that change with each page.
I had completed 8 pages succesfully like this but the ninth page and everyone since then has not worked properly - I'm getting the
"Making this change would require changing code that is locked by a template or a translator...will be discarded" error message.
So it seems when I did the ninth page something seemed to go wrong. Is there something wrong with my code that is preventing Editable Region 1 from accepting text?
thanks
Main Topics
Browse All Topics





by: JimWarnerPosted on 2009-09-02 at 05:47:41ID: 25240374
When using templates to create a page, the editable areas are bracketed by <!-- InstanceBeginEditable name="head" --> <!-- InstanceEndEditable -->. The areas between the <!-- InstanceBeginEditable name="head" --> and the <!-- InstanceEndEditable --> are the editable areas. Note that the "name=" entry is different for each editable area.
If you want the image to appear only on certain pages (but not all) that use the template, your code should look like this:
<li><a href="About Us.html">About Us</a>
<!-- InstanceBeginEditable name="AboutUs" -->Insert Image Here<!-- InstanceEndEditable -->
</li>
If you want ALL pages that use the template to display the image, open the template, and, in Code view, insert the image at the appropriate place, then save the template. When you save the template, Dreamweaver should automatically update all pages that are based on that particular template. Dreamweaver will tell you what pages will be updated. Be sure to then upload all modified pages to your website.