Child pages inheriting editable regions from template

I have looked far and wide and cannot find an answer to this problem:
We recently did a homepage update where the nested and/or second level template (index_template.dwt) was changed. Since much of the formatting was the same - I duplicated the original index_template and made all necessary changes. From this template two child pages were created for our US and UK site. Upon creating the page(s) from the index_template they are inheriting the editable regions, thus not having the ability to update when changes are being made to the template. I have tried multiple ways in an attempt to correct this - but to no avail. Does anyone have a clue how to correct this? As of now I have to manually update all 3 pages.
BTW I am also a relatively new user who was thrown into managing our company website and pretty much doing a redo on the whole thing. Talk about a learning experience!

My issue is when you create a page from a template they are not supposed to inherit the editable regions less otherwise marked.
But that is not true. A newly created child page will inherit ALL content from its template.  But changes to the editable region contents in the template will NOT propagate to existing child pages.
So, for example, if I want all child pages to have an embedded stylesheet in the head that is EDITABLE, my template would look like this -
<!-- TemplateBeginEditable name="head" -->
<style type="text/css">
</style>
<!-- TemplateEndEditable -->
All newly created child pages will then look like this -
<!-- InstanceBeginEditable name="head" -->
<style type="text/css">
</style>
<!-- InstanceEndEditable -->
If I then go back to the template and change it like this -
<!-- TemplateBeginEditable name="head" -->
<style type="text/css">
body { margin:0; }
</style>
<!-- TemplateEndEditable -->
that change will NOT propagate to existing child pages, but WILL appear in child pages created subsequently to the save of the template after the change.
And by the way, it's always been this way.

Similar Messages

  • How to remove Editable region from nested template?

    I'm trying to remove an editable region from a nested
    template while retaining it in the parent template. DW doesn't want
    to let me do this.
    Example:
    - I've created an overall template call ALLPAGES.DWT
    - In it, there's an editable region called "related links".
    - The "related links" will stay the same for all my main
    pages (welcome, news, info, etc), so I'd like to create a nested
    template called MAINPAGES.DWT where the field is locked.
    So here's what I did; I started a new page from ALLPAGES.DWT
    and then I created a template MAINPAGES.DWT from it. Now I want to
    remove the editable region "related links". According to the DW
    manual, I should be able to highlight the region and go to
    Modify > Templates > Remove Template Markup, but that
    option is greyed out!
    Apparenlty the only way of removing the editable region is to
    create a smaller editable region within it. But that's unnecessary
    and sloppy. How can I remove the region entirely?

    > This use of nested templates is very useful and very
    simple and
    > straightforward.
    > It involves no additional overheads, and introduces no
    reliability
    > problems.
    I really disagree with this.
    > I cannot understand why Murray has such a bad attitude
    to nested
    > templates.
    I spent quite a bit of time using them, tweaking them,
    understanding them,
    and watching the problems that others have had here on the
    forum. My
    compelling conclusion is that there is nothing you can do
    with nested
    templates that you cannot do more simply and with far less
    trouble by using
    other methods, some involving other kinds of template
    regions, and some
    involving simple use of Library items, or better, server-side
    includes.
    > I can only assume either that he had a bad experience on
    the road to
    > Damascus,
    > after writing his definitive book on templates
    I assure you, it's based on much more study and experience
    than you have put
    into it.
    > "Templates are wicked and sinful! Don't play with them,
    or you will go
    > blind!"
    This is not only unkind, it's completely erroneous. Far and
    away, I am the
    single most enthusiastic proponent for the use of templates
    on these boards.
    Perhaps a read of my book would help you rid yourself of your
    attitude, too.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Clancy" <[email protected]> wrote in message
    news:[email protected]...
    > "Dodgeit" <[email protected]> wrote:
    >
    >>I'm trying to remove an editable region from a nested
    template while
    >>retaining
    >>it in the parent template. DW doesn't want to let me
    do this.
    >>
    >> Example:
    >> - I've created an overall template call ALLPAGES.DWT
    >> - In it, there's an editable region called "related
    links".
    >> - The "related links" will stay the same for all my
    main pages (welcome,
    >> news,
    >>info, etc), so I'd like to create a nested template
    called MAINPAGES.DWT
    >>where
    >>the field is locked.
    >
    > Very simple:
    >
    > Open allpages.dwt.
    > Save as template, with name mainpages.dwt (I always do
    this immediately so
    > that
    > if I do something stupid I don't corrupt the original
    template).
    > Insert the desired content into "related links".
    > At the beginning of the content area of "related links"
    insert the magic
    > code
    > @@("")@@
    > This turns off the editable region, and there will be no
    reference to it
    > in
    > pages derived from this template.
    > Save the changes to mainpages.dwt
    > Done!
    >
    > Have a look at
    >
    >
    http://www.corybas.com/Technical/Nested.htm
    > This is derived from my template techpage.dwt, which in
    turn is ultimately
    > derived from my template basicpage.dwt.
    >
    > Basicpage.dwt defines two editable regions 'title' and
    'subtitle' at the
    > top of
    > the page. Techpage.dwt sets a fixed title for all my
    technical pages, as
    > follows:
    >
    > <p class="hdgtn" ><!-- InstanceBeginEditable
    name="Title" -->@@("")@@Roger
    > Riordan: Technical notes<!-- InstanceEndEditable
    --></p>
    > <p class="hdgstn"><!-- InstanceBeginEditable
    name="Subtitle" -->Notes<!--
    > InstanceEndEditable --></p>
    >
    > In the page Nested.htm the references to 'title'
    disappear, and the two
    > lines
    > appear as
    >
    > <p class="hdgtn" >Roger Riordan: Technical
    notes</p>
    > <p class="hdgstn"><!-- InstanceBeginEditable
    name="Subtitle" -->Nested
    > Templates<!-- InstanceEndEditable --></p>
    >
    > This use of nested templates is very useful and very
    simple and
    > straightforward.
    > It involves no additional overheads, and introduces no
    reliability
    > problems.
    >
    > I cannot understand why Murray has such a bad attitude
    to nested
    > templates. I
    > can only assume either that he had a bad experience on
    the road to
    > Damascus,
    > after writing his definitive book on templates, or that
    it says simply:
    >
    > "Templates are wicked and sinful! Don't play with them,
    or you will go
    > blind!"
    >
    >
    > Clancy

  • How can we add multiple editable region in template

    Hi,
    My issue is when I am going to create a new template I want to add multiple editable region in template and I want to use those editable region per page wise so that in page editor I will add different text for each page for those editable region.
    I can use incontxt editor to change those area for different pages although is it possible to use online editor to add different text for different pages.
    I also have a plan to solve the issue ... that is also not working.
    Plan is .. if we can use tag (not the default one in template), want to use different tag like {tag_headding},{tag_sidebarcontent} in template so that we can use those tag in template and fill the field in the page online editor, so when differnt page we will create we will fill those field for those tag and that will show in the front view of the site.
    Please help me. I am really stuck on this issue.
    Thanks in advance.
    Projjwal

    Hi Projjwal,
    Yes, if you look at many of the commercial BC templates available the way they are getting around it is with Content Holders and multiple templates.
    Now I know you will say that multiple templates is high maintenance ..... not if you use Content holders for both recurring content and unique content.
    Think of Conent Holders as 'Includes' ... I have been doing it this way with templates that I build from scratch as well. Easier than you think.
    And that way the client can change content such as footer information or whatever that appears on all pages without editing the template itself.
    Only drawback is that if you are using Design View in Dreamweaver the content holders don't render. But other than that Content Holders are awesome.
    Brad

  • How to delete editable regions and template?

    Hi everybody,
    I posted this question earlier in the web discussions area, being unaware of a forum specific to Dreamweaver. Sorry for posting in two different places.
    For the past week, I have been  learning Dreamweaver CS4 from an online tutorial. I got to the place  where I generated a template (index.dwt) from the main page (index.html)  and created some editable regions on it. At that point, I realized   that I had done all the steps by rote and did not actually absorb what I  was doing. I wanted to delete the template in order to repeat the steps and gain a better understanding of the process. When I tried to delete the  editable regions (modify-templates-remove editable regions), I was  unable to do so because "remove editable regions" was greyed out. Nor  was I able to delete the html code. I tried to  delete the template itself, but when I did that, the index.html page  retained those editable regions! Can anyone tell me if there is a way to  get back to the place I was in before creating the template?
    Thank you  for any assistance.

    All you need to do is detach the index.html file from the template.  Then you can delete the template and start all over.
    Go to the Modify menu --> Templates --> Detach from Template

  • Reformatting editable region on template.

    I have several pages created off a template that has an editable region.  I want to reformat the editable region in the template, such as adding a new DIV, creating borders on it, and adding an image placeholder.
    When I do this, the pages created from the template don't change also.
    If I remove the editable region from the template, put in the format changes, then put the editable region back in, then all the pages I had created earlier lose their content.
    Is there a way to do these format changes, make them flow through to the dependent pages and not lose the content on those pages?
    Thanks,
    Aron

    Aron,
    To "reformat" an editable area on a template, create the div and structure OUTSIDE the editable area. That is, "wrap" the editable area in a div and apply style via CSS. The image placeholder is something you can place in the template, but it will not update on pages that have already been created from the template. The new div will be applied on all pages, because it will not be in the editable region.
    Beth

  • Can i make the whole page as editable region

    Hi
    can i make the whole page as editable region to avoid the warning messages appears when a code generated outside te html tag?
    thanks in advance.

    If you make the whole page editable, there would be no reason to use the DW template feature  :-)
    Message was edited by: Murray *ACE*

  • Editable regions in templates. How do I edit the CSS in a new page from the template?

    I am new to Dreamweaver and Web design. I have made a template and have two editable regions they work fine. When I create a page from this template, I can't edit the CSS. What do I need to do to edit the div tags that are specific to the editable regions? Thank you, I appreciate any help I am just about to give up with templates.

    Hi, thank you here is my code. Maybe I am trying to do too much advanced stuff to soon!
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <!-- TemplateEndEditable -->
    <link href="file:///C|/Users/Roxane/Desktop/Brown County Indiana/images/favicon.ico" rel="shortcut icon"/>
    <!--jquery -->
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
    <script type="text/javascript" src="file:///C|/Users/Roxane/Desktop/brown county indiana/scripts/automanualslideshow.js"></script>
    </script>
    <!-- End jquery-->
    <style type="text/css">
    #container {
        width: 960px;
        margin-right: auto;
        margin-left: auto;
    #header {
        height: 80px;
        width: 100%;
        background-color: #222;/*Some browsers will not recognize RGBA colors*/
        background-color: rgba(0,0,0,0.6);/*RGBA fourth value for opacity, if there are two rules that apply to the same element, the latter of the two takes priority.*/
    .jld_logo {
        float: left;
        padding-left: 70px;
        display: block;
        padding-top: 10px;
    #navigation {
        height: 27px;
        width: 100%;
        background-color: #C00;
        margin-left: 0px;
        padding-left: 0px;
        padding-right: 0px;
        left: 0px;
        color: #FFF;
        background: rgb(192,0,0); /* Old browsers */
        background: -moz-linear-gradient(top,  rgba(192,0,0,1) 0%, rgba(144,0,0,1) 51%, rgba(144,0,0,1) 56%, rgba(192,0,0,1) 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(192,0,0,1)), color-stop(51%,rgba(144,0,0,1)), color-stop(56%,rgba(144,0,0,1)), color-stop(100%,rgba(192,0,0,1))); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top,  rgba(192,0,0,1) 0%,rgba(144,0,0,1) 51%,rgba(144,0,0,1) 56%,rgba(192,0,0,1) 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top,  rgba(192,0,0,1) 0%,rgba(144,0,0,1) 51%,rgba(144,0,0,1) 56%,rgba(192,0,0,1) 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top,  rgba(192,0,0,1) 0%,rgba(144,0,0,1) 51%,rgba(144,0,0,1) 56%,rgba(192,0,0,1) 100%); /* IE10+ */
        background: linear-gradient(top,  rgba(192,0,0,1) 0%,rgba(144,0,0,1) 51%,rgba(144,0,0,1) 56%,rgba(192,0,0,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c00000', endColorstr='#c00000',GradientType=0 ); /* IE6-9 */
    #sideleft {
        float: left;
        width: 19.0%;
        font-family: eurofurence, "Tekton Pro", Tahoma, sans-serif;
        font-size: 18px;
        font-weight: bold;
        color: #FFF;
        background-color: #222;/*Some browsers will not recognize RGBA colors*/
        background-color: rgba(0,0,0,0.6);/*RGBA fourth value for opacity, if there are two rules that apply to the same element, the latter of the two takes priority.*/
        text-align: center;
        height: 300px;
        border-radius: 10px;
        border:1px solid #888;
        padding-top: 0px;
        margin-top: 25px;
    .mywork {
        font-family: eurofurence, "eurofurence light", tahoma, sans-serif;
        font-size: 30px;
        font-style: normal;
        font-weight: bold;
        font-variant: normal;
        text-transform: none;
        color: #C00;
        text-align: center;
        line-height: 60px;
    .categoriessmall {
        font-family: eurofurence, "eurofurence light", tahoma, sans-serif;
        font-size: 16px;
        font-style: normal;
        line-height: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: uppercase;
        color: #FFF;
        text-align: left;
        display: block;
        margin-left: 15px;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        border-bottom-color: #C00;
        margin-right: 10px;
    .sideleft-text {
        padding-top: 75px;
    a.sideleft, a.sideleft:link, a.sideleft:visited {
        display:block;
        margin-top:4px;
        text-align:left;
        text-decoration:none;
        font-family:eurofurence, "eurofurence light", tahoma, sans-serif;
        font-size:14px;
        color:#FFF;
        line-height:20px;
        overflow:hidden;
        border-top-style: none;
        border-right-style: none;
        border-bottom-style: none;
        border-left-style: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        margin-left: 15px;
        white-space: nowrap;
    a.sideleft:hover {
        color:#999;
    a.sideleft:active {
        color:#C00;
    #mainright {
        float: right;
        width: 75.5%;
        font-family: eurofurence, "eurofurence light", tahoma, sans-serif;
        color: #FFF;
        text-decoration: none;
        height: 700px;
        text-align: left;
        background-color: #000000;/*Some browsers will not recognize RGBA colors*/
        background-color: rgba(0,0,0,0.6);
        margin-left: 0px;
        margin-top: 25px;
        margin-right: 0px;
        margin-bottom: 10px;
        border-radius: 10px;
        border:1px solid #888;
        z-index: -3;
        padding: 0px;
    .categories {
        font-family: eurofurence, "eurofurence light", tahoma, sans-serif;
        font-size: 36px;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: uppercase;
        color: #808080;
        text-decoration: none;
        border-bottom-width: 2px;
        border-bottom-style: solid;
        border-bottom-color: #C00;
        float: none;
        position: relative;
        clear: none;
        left: 0px;
        z-index: auto;
        margin-right: 50px;
        margin-left: 20px;
    .img
        height:auto;
        width:auto;
        float:left;
        text-align:center;
        border-top-style: none;
        border-right-style: none;
        border-bottom-style: none;
        border-left-style: none;
        color: #FFF;
        font-family: eurofurence, "eurofurence light", tahoma, sans-serif;
        font-size: 18px;
        padding: 0px;
        margin-top: 0px;
        margin-right: 10px;
        margin-bottom: 0px;
        margin-left: 10px;
    .img img
        display:inline;
        margin:10px;
        border:1px solid #333;
    .img a:hover img
        border:1px solid #900;
    .image desc
        text-align:center;
        font-weight:normal;
        width:120px;
        margin:2px;
        font-family: eurofurence, "eurofurence light", tahoma, sans-serif;
        font-size: 16px;
        color: #FFF;
        text-decoration: none;
        font-style: normal;
        line-height: normal;
        font-variant: normal;
        text-transform: none;
    #footer {
        clear: both;
        width: 100%;
        font-family: eurofurence, "Tekton Pro", Tahoma, sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: normal;
        text-align: center;
        margin-left: 0px;
        color: #FFF;
        margin-bottom: 0px;
        margin-top: 10px;
        padding-left: 10%;
        padding-right: 15px;
    body {
        background-image: url(../images/background_large.jpg);
    </style>
    </script>
    <script src="../spryassets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="../spryassets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <link href="../styles/automanualslideshow.css" rel="stylesheet" type="text/css" />
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    </head>
    <body>
    <div id="container">
      <div id="header">
      <div class="jld_logo">
      <a href="file:///C|/Users/Roxane/Desktop/index.html">
      <img src="../images/jeff_danielson_logo_reverse.png" alt="Jeff Danielson logo" name="jld_logo" width="60" height="60" id="jld_logo" longdesc="images/jeff_danielson_logo_reverse.png" />
        </a>
      </div></div>
      <div id="navigation">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a href="#">Home</a>      </li>
          <li><a href="#" class="MenuBarItemSubmenu">About Jeff</a>
            <ul>
              <li><a href="#">Biography</a></li>
              <li><a href="#">News</a></li>
            </ul>
          </li>
          <li><a class="MenuBarItemSubmenu" href="#">My Work</a>
            <ul>
              <li><a href="file:///C|/Users/Roxane/Desktop/recent_photographs.html">Recent Photographs</a></li>
            <li><a href="file:///C|/Users/Roxane/Desktop/flowers_leaves_moss.html">Flowers/Leaves/Moss</a></ li>
            <li><a href="file:///C|/Users/Roxane/Desktop/forests_trees_valleys.html">Forests/Trees/Valleys</ a></li>
            <li><a href="file:///C|/Users/Roxane/Desktop/deer_dogs_creatures.html">Deer/Dogs/Creatures</a></ li>
            <li><a href="file:///C|/Users/Roxane/Desktop/lakes_rivers_streams.html">Lakes/Rivers/Streams</a> </li>
            <li><a href="file:///C|/Users/Roxane/Desktop/clouds_skis_fog.html">Clouds/Skies/Fog</a></li>
            <li><a href="file:///C|/Users/Roxane/Desktop/birds_butterflys_insects.html">Birds/Butterflys/Ins ects</a></li>
            <li><a href="file:///C|/Users/Roxane/Desktop/panoramas.html">Panoramas</a></li>
            <li><a href="file:///C|/Users/Roxane/Desktop/fall_winter_spring_summer.html">Fall/Winter/Spring/ Summer</a></li>
            </ul>
          </li>
          <li><a href="#" class="MenuBarItemSubmenu">Pricing</a>
            <ul>
              <li><a href="#url">Size</a></li>
            <li><a href="#url">Mats</a></li>
            <li><a href="#url">Frames</a></li>
            <li><a href="#url">Frames & Mats</a></li>
            </ul>
          </li>
          <li><a href="#">Contact</a></li>
          <li><a href="#" class="MenuBarItemSubmenu">Runciple Spoon</a>
            <ul>
              <li><a href="#">The 1970's</a></li>
              <li><a href="#">The 1980's</a></li>
              <li><a href="#">The 1990's</a></li>
              <li><a href="#">The 2000's</a></li>
            </ul>
          </li>
        </ul>
      </div>
      <!-- TemplateBeginEditable name="Sideleft" -->
      <div id="sideleft"> <span class="mywork">My Work</span> <span class="categoriessmall">Categories</span> <a class="sideleft" href="../recent_photographs.html" title="">Recent Photographs</a> <a class="sideleft" href="../flowers_leaves_moss.html" title="Flowers/Leaves/Moss">Flowers/Leaves/Moss</a> <a class="sideleft" href="../Forests/Trees/Valleys.html" title="Forests/Trees/Valleys">Forests/Trees/Valleys</a> <a class="sideleft" href="../Deer/Dogs/Creatures.html" title="Deer/Dogs/Creatures">Deer/Dogs/Creatures</a> <a class="sideleft" href="../Lakes/Rivers/Streams.html" title="Lakes/Rivers/Streams">Lakes/Rivers/Streams</a> <a class="sideleft" href="../Clouds/Skies/Fog.html" title="Clouds/Skies/Fog">Clouds/Skies/Fog</a> <a class="sideleft" href="../Birds/Butterflys/Insects.html" title="Birds/Butterflys/Insects">Birds/Butterflys/Insects</a> <a class="sideleft" href="../Panoramas.html" title="Panoramas">Panoramas</a> <a class="sideleft" href="../Fall/Winter/Spring/Summer.html" title="Fall/Winter/Spring/Summer">Fall/Winter/Spring/Summer</a></div>
      <!-- TemplateEndEditable --><!-- TemplateBeginEditable name="Mainright" -->
      <div id="mainright"></div>
      <!-- TemplateEndEditable -->
      <div id="footer">
      © 2012 Jeff Danielson Brown County Indiana Photography</div>
    <!--Content for container goes here--></div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>

  • How to insert a widget in a editable region from a template

    Hi there,
    ok so basically I am trying to create a HTML page from a template i have already designed.
    when I try to insert a widget (Lightbox Gallery) in the editable region I get the following error.
    "the widget requires code that must be inserted into the head of the document. insertion cannot happen because this document is read only"
    I saw a previous thread (http://forums.adobe.com/thread/901299) that had the same problem with a solution but cant seem to make sense of it.
    Not exactly sure where and what to paste in the header of the HTML page.
    Any help will be much appreciated.
    Thanks

    Hi Murray,
    ha funny you would say that is the exact answer you would give me seeing you posted it
    I understand the logic behind it though not sure what i need to copy and where.
    Basically i craeted a "dummy page" and inserted the widget-no problem there.
    next step- what code do i copy from the dummy page and where do i paste it? in the template or HTML page.
    Dummy HTML with widget code
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <script src="file:///C|/Users/Ashley/AppData/Roaming/Adobe/Dreamweaver CS5/en_US/Configuration/Temp/Assets/eamA1E8.tmp/scripts/jquery.js" type="text/javascript"></script>
    <script src="file:///C|/Users/Ashley/AppData/Roaming/Adobe/Dreamweaver CS5/en_US/Configuration/Temp/Assets/eamA1E8.tmp/scripts/lightbox.js" type="text/javascript"></script>
    <link href="file:///C|/Users/Ashley/AppData/Roaming/Adobe/Dreamweaver CS5/en_US/Configuration/Temp/Assets/eamA1E8.tmp/css/lightbox.css" rel="stylesheet" type="text/css" />
    <link href="file:///C|/Users/Ashley/AppData/Roaming/Adobe/Dreamweaver CS5/en_US/Configuration/Temp/Assets/eamA1E8.tmp/css/sample_lightbox_layout.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    /* BeginOAWidget_Instance_2127022: #gallery */
                        .lbGallery {
                                  /*gallery container settings*/
                                  background-color: #CCC;
                                  padding-left: 20px; 
                                  padding-top: 20px; 
                                  padding-right: 20px; 
                                  padding-bottom: 20px; 
                                  width: 540px;
                                  height: auto;
                                  text-align:left;
                        .lbGallery ul { list-style: none; margin:0;padding:0; }
                        .lbGallery ul li { display: inline;margin:0;padding:0; }
                        .lbGallery ul li a{text-decoration:none;}
                        .lbGallery ul li a img {
                                  /*border color, width and margin for the images*/
                                  border-color: #3e3e3e;
                                  border-left-width: 10px;
                                  border-top-width: 10px;
                                  border-right-width: 10px;
                                  border-bottom-width: 20px;
                                  margin-left:5px;
                                  margin-right:5px;
                                  margin-top:5px;
                                  margin-bottom:5px:
                        .lbGallery ul li a:hover img {
                                  /*background color on hover*/
                                  border-color: #ffffff;
                                  border-left-width: 10px;
                                  border-top-width: 10px;
                                  border-right-width: 10px;
                                  border-bottom-width: 20px;
                        #lightbox-container-image-box {
                                  border-top: 0px none #ffffff;
                                  border-right: 0px none #ffffff;
                                  border-bottom: 0px none #ffffff;
                                  border-left: 0px none #ffffff;
                        #lightbox-container-image-data-box {
                                  border-top: 0px;
                                  border-right: 0px none #ffffff;
                                  border-bottom: 0px none #ffffff;
                                  border-left: 0px none #ffffff;
    /* EndOAWidget_Instance_2127022 */
    </style>
    <script type="text/xml">
    <!--
    <oa:widgets>
      <oa:widget wid="2127022" binding="#gallery" />
    </oa:widgets>
    -->
    </script>
    </head>
    <body>
    <div id="gallery" class="lbGallery">
      <ul>
        <li> <a href="/images/lightboxdemo1.jpg" title=""><img src="/images/lightboxdemo_thumb1.jpg" width="72" height="72" alt="Flower" /></a> </li>
        <li> <a href="/images/lightboxdemo2.jpg" title=""><img src="/images/lightboxdemo_thumb2.jpg" width="72" height="72" alt="Tree" /></a> </li>
        <li> <a href="/images/lightboxdemo3.jpg" title=""><img src="/images/lightboxdemo_thumb3.jpg" width="72" height="72" alt="" /></a> </li>
        <li> <a href="/images/lightboxdemo4.jpg" title=""><img src="/images/lightboxdemo_thumb4.jpg" width="72" height="72" alt="" /></a> </li>
        <li> <a href="/images/lightboxdemo5.jpg" title=""><img src="/images/lightboxdemo_thumb5.jpg" width="72" height="72" alt="" /></a> </li>
      </ul>
    </div>
    <script type="text/javascript">
    // BeginOAWidget_Instance_2127022: #gallery
                        $(function(){
                                  $('#gallery a').lightBox({
                                            imageLoading:                              '/images/lightbox/lightbox-ico-loading.gif',                    // (string) Path and the name of the loading icon
                                            imageBtnPrev:                              '/images/lightbox/lightbox-btn-prev.gif',                              // (string) Path and the name of the prev button image
                                            imageBtnNext:                              '/images/lightbox/lightbox-btn-next.gif',                              // (string) Path and the name of the next button image
                                            imageBtnClose:                              '/images/lightbox/lightbox-btn-close.gif',                    // (string) Path and the name of the close btn
                                            imageBlank:                                        '/images/lightbox/lightbox-blank.gif',                              // (string) Path and the name of a blank image (one pixel)
                                            fixedNavigation:                    false,                    // (boolean) Boolean that informs if the navigation (next and prev button) will be fixed or not in the interface.
                                            containerResizeSpeed:          400,                               // Specify the resize duration of container image. These number are miliseconds. 400 is default.
                                            overlayBgColor:                     "#999999",                    // (string) Background color to overlay; inform a hexadecimal value like: #RRGGBB. Where RR, GG, and BB are the hexadecimal values for the red, green, and blue values of the color.
                                            overlayOpacity:                              .6,                    // (integer) Opacity value to overlay; inform: 0.X. Where X are number from 0 to 9
                                            txtImage:                                        'Image',                                        //Default text of image
                                            txtOf:                                                  'of'
    // EndOAWidget_Instance_2127022
    </script>
    </body>
    </html>
    thanks again

  • Template not updating child pages {subject edited by moderator}

    I used templates for the sprymenu bar throughout the site. Recently, when i updated my nurse template (change the "2012 Upgrade" to "Upgrade" on the horizontal bar (see the red highlighted line in the code) and saved my change, I could not see the prompt asking me to confirm the updating of those linked child pages. I guessed i must have messed up the linking between the template (Nurses_Contentpage.dwt) and child pages (Nurses-inpatient.html and more html files). Where should I look at to fix this? Thanks!
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Template: Nurses_Contentpage.dwt
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <link rel="stylesheet" type="text/css" href="file://///cmc-childtest/departments/LearnEpic/style.css" />
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Clinical Support</title>
    <!-- TemplateEndEditable -->
    <script src="file://///cmc-childtest/departments/LearnEpic/SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <script type="text/javascript">
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'UA-25722711-1']);
      _gaq.push(['_trackPageview']);
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    </script>
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    <link href="file://///cmc-childtest/departments/LearnEpic/SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="wrap"><!-- TemplateBeginEditable name="EditRegion3" -->
      <div id="header">
        <h1>Clinical Support</h1>
        <h2> </h2>
      </div>
    <!-- TemplateEndEditable -->
      <div id="menu">
        <ul id="MenuBar1" class="MenuBarHorizontal">
        <li><a href="index.html" target="blank">Home</a>      </li>
        <li><a href="#" class="MenuBarItemSubmenu">Providers</a>
          <ul>
            <li><a href="Providers_Inpatient.html">Inpatient/ICU</a></li>
            <li><a href="Providers_Ambulatory.html">Ambulatory</a></li>
            <li><a href="Providers_ED.html">Emergency Dept</a></li>
            <li><a href="Providers_PeriopServices.html">Periop Services</a></li>
            <li><a href="Providers_MyChildrens.html">MyChildren's</a></li>
                            <li><a href="Providers_MedSstudents.html">Medical Students</a></li>
          </ul>
        </li>
        <li><a class="MenuBarItemSubmenu" href="#">Nurses</a>
    <ul>
    <li><a href="Nurses_Inpatient.html">Inpatient/ICU</a></li>
            <li><a href="Nurses_Ambulatory.html">Ambulatory</a></li>
            <li><a href="Nurses_ED.html">Emergency Dept</a></li>
            <li><a href="Nurses_PeriopServ.html">Periop Services</a></li>
            <li><a href="Nurses_MyChildrens.html">MyChildren's</a></li>
          </ul>
          </li>
            <li><a href="pharmacists.html">Pharmacists</a></li>
            <li><a href="Therapists.html">Therapists</a></li>
            <li><a href="Ancillaries.html">Ancillaries</a>        </li>
            <li><a href="#" class="MenuBarItemSubmenu">Clinical Support</a>
    <ul>
    <li><a href="ClinicalSupport_ASR_PAR_SPAR.html">ASR/PAR/SPAR</a></li>
    <li><a href="ClinicalSupport_Admitting_ED_FC.html">Admitting/ED/FC</a></li>         
    <li><a href="ClinicalSupport_MA_PCA_PCT.html">MA/PCA/PCT</a></li>
    <li><a href="ClinicalSupport_Radio_Lab_Techs.html">Radiology/Lab Tech</a></li>
    <li><a href="ClinicalSupport_HUcs.html">HUC</a></li>
    <li><a href="ClinicalSupport_HIM.html">HIM</a></li>
    <li><a href="ClinicalSupport_FinancialServ.html">Pt Financial Services</a></li>
    </ul>
            </li>
                   <li><a href="MultiAreaModules.html">Multi-Area Modules</a></li>
            <li><a href="trainers.html">Trainers</a></li>
           <li><a href="Upgrade.html">Upgrade</a></li>
      </ul>
        </li>
      </div>
    <div id="contentwrap"><!-- TemplateBeginEditable name="EditRegion4" -->
      <div id="content02">
        <h2>Clinical Support &gt; Area name</h2>
       <table id="hor-minimalist-b" summary="Epic Access Requirements">
          <thead>
            <tr>
              <th width="169" >Category</th>
              <th width="554">Topic
              </th>
            </tr>
    <!-- MORE CODE HERE OMITTED....-->
    </div>
    <div style="clear: both;"> </div>
    </div>
    <div id="footer">
    <p>&copy; Copyright 2014 <a href="http://cmc-childnet/ChildNet/Departments/LearningInstitute/index.asp" target="_blank">the Learning Institute, </a><a href="http://cmc-childnet/ChildNet/Departments/home/index.asp" target="_blank">Children's Medical Center Dallas, Texas </a></p>
    </div>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    One of the Child Nurse Pages: Nursee_inpatient.html
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><!-- InstanceBegin template="/Templates/Nurses_contentpage.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <link rel="stylesheet" type="text/css" href="style.css" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>NurseTraining - Inpatient/ICU</title>
    <!-- InstanceEndEditable -->
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <script type="text/javascript">
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'UA-25722711-1']);
      _gaq.push(['_trackPageview']);
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    </script>
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="wrap"><!-- InstanceBeginEditable name="EditRegion3" -->
      <div id="header">
        <h1><a href="#">Nurse Trainings</a></h1>
        <h2> </h2>
      </div>
    <!-- InstanceEndEditable -->
      <div id="menu">
        <ul id="MenuBar1" class="MenuBarHorizontal">
        <li><a href="index.html" target="blank">Home</a>      </li>
        <li><a href="#" class="MenuBarItemSubmenu">Providers</a>
          <ul>
            <li><a href="Providers_Inpatient.html">Inpatient/ICU</a></li>
            <li><a href="Providers_Ambulatory.html">Ambulatory</a></li>
            <li><a href="Providers_ED.html">Emergency Dept</a></li>
            <li><a href="Providers_PeriopServices.html">Periop Services</a></li>
            <li><a href="Providers_MyChildrens.html">MyChildren's</a></li>
                            <li><a href="Providers_MedSstudents.html">Medical Students</a></li>
          </ul>
        </li>
        <li><a class="MenuBarItemSubmenu" href="#">Nurses</a>
    <ul>
    <li><a href="Nurses_Inpatient.html">Inpatient/ICU</a></li>
            <li><a href="Nurses_Ambulatory.html">Ambulatory</a></li>
            <li><a href="Nurses_ED.html">Emergency Dept</a></li>
            <li><a href="Nurses_PeriopServ.html">Periop Services</a></li>
            <li><a href="Nurses_MyChildrens.html">MyChildren's</a></li>
          </ul>
          </li>
            <li><a href="pharmacists.html">Pharmacists</a></li>
            <li><a href="Therapists.html">Therapists</a></li>
            <li><a href="Ancillaries.html">Ancillaries</a>        </li>
            <li><a href="#" class="MenuBarItemSubmenu">Clinical Support</a>
    <ul>
    <li><a href="ClinicalSupport_ASR_PAR_SPAR.html">ASR/PAR/SPAR</a></li>
    <li><a href="ClinicalSupport_Admitting_ED_FC.html">Admitting/ED/FC</a></li>
    <li><a href="ClinicalSupport_MA_PCA_PCT.html">MA/PCA/PCT</a></li>
    <li><a href="ClinicalSupport_Radio_Lab_Techs.html">Radiology/Lab Tech</a></li>
    <li><a href="ClinicalSupport_HUcs.html">HUC</a></li>
    <li><a href="ClinicalSupport_HIM.html">HIM</a></li>
    <li><a href="ClinicalSupport_FinancialServ.html">Pt Financial Services</a></li>
    </ul> 
            </li>
                   <li><a href="MultiAreaModules.html">Multi-Area Modules</a></li>
            <li><a href="trainers.html">Trainers</a></li>
            <li><a href="2012Upgrade.html">2012 Upgrade</a></li>
      </ul>
        </li>
      </div>
    <div id="contentwrap"><!-- InstanceBeginEditable name="EditRegion4" -->
      <div id="content02">
        <h2>Nurses &gt; Inpatient/ICU</h2><br />
        <table id="hor-minimalist-b" summary="Epic Access Requirements">
          <thead>
            <tr>
              <th width="168" >Category</th>
              <th width="555">Topic
                </th>
            </tr>
            <tr >
    <!-- more code/content omitted -->
        <div style="clear: both;"> </div>
      </div>
    <!-- InstanceEndEditable -->
      <div id="sidebar02">
    <h3>   Nurses by Area</h3>
    <ul>
    <li><a href="Nurses_Inpatient.html">Inpatient/ICU</a></li>
    <li><a href="Nurses_Ambulatory.html">Ambulatory</a></li>
    <li><a href="Nurses_ED.html">Emergency Dept</a></li>
    <li><a href="Nurses_PeriopServ.html">Periop Services</a></li>
    <li><a href="http://cmc-childnet/ChildNet/Departments/LearnEpic/Nurses_MyChildrens.html">MyChildren's</a></li>
    </ul>
    </div>
    <div style="clear: both;"> </div>
    </div>
    <div id="footer">
    <p>&copy; Copyright 2014 <a href="http://cmc-childnet/ChildNet/Departments/LearningInstitute/index.asp" target="_blank">the Learning Institute, </a><a href="http://cmc-childnet/ChildNet/Departments/home/index.asp" target="_blank">Children's Medical Center Dallas, Texas </a></p>
    </div>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    <!-- InstanceEnd --></html>

    I do have the exact hierarchy of this site on both the test and production sites.
    If that were the case then DW would not change the links to file:/// links. Are you sure they didn't start that way? Typically they get that way when you insert an element into the page that is *outside* the root folder for the site.
    For the nurse template, there are 6 child pages. I am using a total of 5-6 templates and each template has 3-6 child pages.
    I don't see any reason why you would need so many templates for this simple layout. I haven't encountered a site I couldn't do with a single template yet. However, that's not answering your question.
    Is this lack of propagation of changes true for ALL your templates in this site or only one? Also, do you see it happen on other sites?

  • Put a child page into a region in a parent page?  (APEX 2.2.0)

    Hi, all,
    Thanks so much for all of your help previously.
    I want to have the entire contents of child page inserted into a region of parent page. The child page uses the "Empty Template" template and has an report region that uses the "No Template" template.
    The parent page has a region containing a single div into which I want to insert the child page. If I do this using JavaScript and htmldb_Get object, inserting the result of the AJAX request into the DIV, I get what I want. I can't figure out how to preload the page into the region.
    I've tried using the URL region, but I keep getting
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1674
    ORA-12545: Connect failed because target host or object does not existwhen I enter the URL for the child page.
    I can't use UTL_HTTP.REQUEST, either.
    select utl_http.request('http://myserver/f?p=100:100:12345678901234')
    from dual;I get roughly the same error. (I copy and paste the same URL that I use for the AJAX request. I can also type that URL into a browser and get the page.)
    I can get both Google's and Oracle's Web sites this way.
    My other option is to render the entire page to a string, store it in a VARCHAR2 / CLOB, and output it to the screen. Is there a way (maybe using WWV_FLOW) to render a page to a string?
    I want to avoid using DHTML when it's not needed and I don't think that I would need it to initially load the page.
    Thanks!

    Carl,
    (Sorry about the reply gap.)
    As best as I can tell, iframes can't auto-fit their contents without JavaScript. I've also heard mixed things about iframes and accessibility. The contents of the iframe also don't inherit the CSS definitions from the parent frame. (None of those may be good enough reasons to not use iframes, but I am totally unfamiliar.)
    There are workarounds for all of those problems, but I'm just as inclined to write some PL/SQL function that generates my page for me and call that from a PL/SQL region, since the page is so simple. It might take me less time to write the PL/SQL function and PL/SQL region than it will to make the iframes look pretty.
    Thanks for the reply!
    Message was edited by:
    Don_84
    Well, that's odd. When I changed my authentication scheme from what I was using to the database authentication (the DAD one), the utl_http.request call works, as does the URL region. So the authentication is getting in the way. I wonder if there is a (elegant) way around that?
    Message was edited by:
    Don_84
    Is WWV_FLOW.SHOW documented? In a PL/SQL region, I can call
    WWV_FLOW.SHOW(P_INSTANCE => '&SESSION.', P_FLOW_ID => '100', P_FLOW_STEP_ID => '1000');where 100 is my app number and 7000 my page number, but it only works if I have no other regions. Otherwise, the page entirely fails to render.

  • Modify Editable regions in template

    I created a main template  then created other templates from this templates.  I now realize that I will need to change the image in the header in some of the nested templates.  for example, there is a template for wisdom which has a child called wisdom videos.  I wanted to change the header image in wisdom which would affect all of its children.  I added an editable region to the main template which changed everything.  I then changed the image in wisdom, but it is not going through to the child wisdom video, which is what i want.
    How can i do that?
    Thanks

    I use templates (although I wouldn't touch nested templates with a 10-foot pole) and server-side includes.
    First, I mentally separate the page layout into three sections:
    1.  Stuff that will not change for the life of the site (i.e., the basic
    structural elements)
    2.  Stuff that *could* change from time to time (e.g., navigation elements,
    burst advertisements, section-specific navigation, etc.)
    3.  Stuff that *will* change from one page to the next
    Then I create a template containing all class1 elements.  Next I create
    server-side include files containing all class 2 elements and place them on
    the template as needed.  Note - some of the class 2 elements may be
    "section-specific elements", and their placement on the template will be
    subject to the next item.  Finally, I insert editable regions to cover the
    class 3 items, INCLUDING the section-specific navigation.
    This allows me to just cookie-cut the rest of the site.  I estimate that
    even for fairly large sites, about 80% of my work goes into planning and
    creating this template file.

  • Can't Delete Non-Editable Region in Template?

    Well, I can in existing templates but if I create a new one from an existing page using "Save as Template", when I try to delete a non-editable region in the template, DW won't let me.  I don't know why.  Aaaargh!
    It's my understanding I should be able to edit anything in a template.  I've tried existing DW and restarting.  I've tried using other pages as a basis for the template.  Every template I create won't let me delete non-editable regions.  I'm highlighting the non-editable region and pressing the delete key.  I can't delete.

    burro_mail wrote:
    Not sure DW is doing what you describe...
    But I am certain you could remove the region in code view.
    Even if you are a WYSIWYG-er and not a big code-head, it should be pretty easy to remove the region markers and everything between them...
    Trust me, it is.  I'm wondering if the problem is associated with the fact that the source page that I saved as a template was based on a template?  I just noticed that this new template refers to another template.  I'm thinking that means the other template is controlling what I'm trying to do in the current template.
    That's it.  I just tried saving a template under a different name (still retaining the correct template file extension) but did not do the save as template.  Now I can completely edit that template.  So you if you save a page that is controled by a template, as a template, that new template is controlled by the previous template.
    I've got a headache now.

  • Making head editable region in template

    What seems to be a new feature in DW 8.0.2 practically forces
    you to let "it" add a <noscript> routine so that Flash Text
    elements will be visible in IE6. In order for this automatic
    insertion to be done, apparently you must have the following line
    of code within the <head></head> region:
    <script src="../../Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    So I manually inserted the line into my template (because I
    couldn't figure out how to make the <head> region editable),
    then updated all my pages associated with the template. But somehow
    all those pages ended up with an absolute instead of a relative
    address, thus:
    <script src="file:///C|/Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    Now, my template is correct and the pages are incorrect, and
    I can't get the template to update the pages with the correct line
    of code (and I can't manually changes the code in the
    pages--because the region isn't editable). Consequently, the Flash
    Text objects are visible ONLY in IE6, and not in Firefox and
    Netscape.
    Anyone? ....Anyone?
    Reno

    You know you can talk me into anything (o;
    Jo
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    >I knew I could persuade you to update!
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    > ==================
    >
    >
    > "josie1one" <joleros[nospam]@yahoo.com> wrote in
    message
    > news:[email protected]...
    >> Ohh, OK, that was in 8 too. That explains why I had
    the occasional
    >> problem then. If it's still there I'll still use the
    copy and paste fix.
    >> Thanks Murray
    >>
    >> --
    >> Jo
    >>
    >>
    >> "Murray *ACE*"
    <[email protected]> wrote in message
    >> news:[email protected]...
    >>> See the checkbox to Prompt the user to download
    Flash? That's it.
    >>>
    >>> --
    >>> Murray --- ICQ 71997575
    >>> Adobe Community Expert
    >>> (If you *MUST* email me, don't LAUGH when you do
    so!)
    >>> ==================
    >>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>> ==================
    >>>
    >>>
    >>> "josie1one" <joleros[nospam]@yahoo.com>
    wrote in message
    >>> news:[email protected]...
    >>>> Hmm, am I in the wrong place? This is what I
    have
    >>>>
    http://jofinn.com/images/dw_flv.jpg
    >>>>
    >>>> --
    >>>> Jo
    >>>>
    >>>>
    >>>>
    >>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>> news:[email protected]...
    >>>>> There is a big textarea in the lower
    third of the setup panel for
    >>>>> inserting a Flash video - it's about
    adding the Flash detection markup
    >>>>> to the page, and it gives you an
    opportunity to specify the wording.
    >>>>> That's the one....
    >>>>>
    >>>>> --
    >>>>> Murray --- ICQ 71997575
    >>>>> Adobe Community Expert
    >>>>> (If you *MUST* email me, don't LAUGH
    when you do so!)
    >>>>> ==================
    >>>>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>>>> ==================
    >>>>>
    >>>>>
    >>>>> "josie1one"
    <joleros[nospam]@yahoo.com> wrote in message
    >>>>>
    news:[email protected]...
    >>>>>> OK, done it and swimming.
    >>>>>> Interesting though, I still don't
    see a Detection checkbox, only
    >>>>>> constrain.
    >>>>>>
    >>>>>> --
    >>>>>> Jo
    >>>>>>
    >>>>>>
    >>>>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>>>>
    news:[email protected]...
    >>>>>>> Please do!
    >>>>>>>
    >>>>>>> --
    >>>>>>> Murray --- ICQ 71997575
    >>>>>>> Adobe Community Expert
    >>>>>>> (If you *MUST* email me, don't
    LAUGH when you do so!)
    >>>>>>> ==================
    >>>>>>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>>>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>>>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM)
    >>>>>>> Technotes
    >>>>>>> ==================
    >>>>>>>
    >>>>>>>
    >>>>>>> "josie1one"
    <joleros[nospam]@yahoo.com> wrote in message
    >>>>>>>
    news:[email protected]...
    >>>>>>>> I've had this irrational
    fear for years - don't until I have to!
    >>>>>>>> Oddly enough I'm just
    looking at it now... may take the plunge (o:
    >>>>>>>>
    >>>>>>>> --
    >>>>>>>> Jo
    >>>>>>>>
    >>>>>>>>
    >>>>>>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>>>>>>
    news:[email protected]...
    >>>>>>>>> >I have DW 8 and
    Murray's reference to unchecking Detect is not
    >>>>>>>>> >there, I suspect
    it's 8.0.2 specific.
    >>>>>>>>>
    >>>>>>>>> Why on earth have you
    not updated?
    >>>>>>>>>
    >>>>>>>>> --
    >>>>>>>>> Murray --- ICQ 71997575
    >>>>>>>>> Adobe Community Expert
    >>>>>>>>> (If you *MUST* email me,
    don't LAUGH when you do so!)
    >>>>>>>>> ==================
    >>>>>>>>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>>>>>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>>>>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>>>>>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM)
    >>>>>>>>> Technotes
    >>>>>>>>> ==================
    >>>>>>>>>
    >>>>>>>>>
    >>>>>>>>> "josie1one"
    <joleros[nospam]@yahoo.com> wrote in message
    >>>>>>>>>
    news:[email protected]...
    >>>>>>>>>>I have DW 8 and
    Murray's reference to unchecking Detect is not
    >>>>>>>>>>there, I suspect it's
    8.0.2 specific.
    >>>>>>>>>>
    >>>>>>>>>> A workaround I use
    (yes, I have the same problem as you
    >>>>>>>>>> occasionally) is to
    create the video in a blank (non-templated)
    >>>>>>>>>> page, then copy and
    paste the code into a child page, save it and
    >>>>>>>>>> it works every time.
    >>>>>>>>>> Annoying to have to,
    but hey...
    >>>>>>>>>>
    >>>>>>>>>> --
    >>>>>>>>>> Jo
    >>>>>>>>>>
    >>>>>>>>>>
    >>>>>>>>>> "RyanJanus"
    <[email protected]> wrote in message
    >>>>>>>>>>
    news:[email protected]...
    >>>>>>>>>>> Sorry. I
    neglected to do this before. It might be helpful if
    >>>>>>>>>>> you had a link
    >>>>>>>>>>> to the website
    I'm working on. It's
    >>>>>>>>>>>
    http://www.usafacademyband.com.
    I
    >>>>>>>>>>> actually think
    the website works pretty well except for that one
    >>>>>>>>>>> little
    >>>>>>>>>>> annoyance with
    the Flash Videos.
    >>>>>>>>>>>
    >>>>>>>>>>> Ryan
    >>>>>>>>>>>
    >>>>>>>>>>>
    >>>>>>>>>>
    >>>>>>>>>>
    >>>>>>>>>
    >>>>>>>>>
    >>>>>>>>
    >>>>>>>>
    >>>>>>>
    >>>>>>>
    >>>>>>
    >>>>>>
    >>>>>
    >>>>>
    >>>>
    >>>>
    >>>
    >>>
    >>
    >>
    >
    >

  • Editable region in template not editable??

    I'm trying to add a Spry Image Slideshow (basic) to several files in Dreamweaver CS5. I have set up templates, and in the child pages, when I try to insert the widget it just says: "Making this change would require changing code that is locked by a template or translator. The change will be discarded." I have a Spry menu already on the page (although it doesn't show up on my laptop but does on my desktops).  What should I do?  A sample page is already uploaded here:  http://www.tomandlauriereese.com/bands/muzette/muzette.html.  I'm trying to add the photos to Col1 (an editable region).  Col2 allows me to add content, but Col1 won't.  Actually, I can't add anything to Col3 either (it's set up as an iframe right now).
    Please help!  Let me know what other information  you need; I'm new to this!
    Thanks,
    Laurie Reese, cellist

    I'm not really piling on here, but I'm confident your extensive use of absolute positioning is going to sadly return to bite you on this very nice looking layout.  Add some real-world content to one of those text regions, preview in the browser and start increasing the size of the text in the browser.  You'll get an overflowing mess in a hurry.
    I chose the doctype of xhtml 1.0 Transitional.  I'm not sure which type is best for this type of page.  I also tried html 4.0 Transitional, but still no luck.
    A doctype only does two things: a) it informs a validator of how to validate the code on the page, and b) it informs the browsers whether to render the page in quirks more or standards mode.  Because it's useful to be able to use validation as your first line of defense when encountering layout issues, you should therefore choose a doctype that is consistent with your skill and knowledge as a coder (as a first-order approximation).  In your case, I'm pretty sure that would be HTML 4.01 Transitional.  You can have DW do this for you by opening the template page and using FILE | Convert > HTML 4.01 Transitional.  Be aware that this will only affect the content in NON-editable regions of your child pages as is expected with any template changes.
    I did notice that the Head editable region is way underneath all the other code; it's at line 506; but there's nothing in there.  Should I move the "<!-- TemplateBeginEditable name="head" --> to the top somewhere?
    As long as that region is actually in a legal location between <head> and </head> it doesn't matter where it is.  Since it is, then you can just leave it.
    What should be in that region?
    This is the region that allows you to add javascript behaviors to child pages, like image swaps, or show/hide divs, or even page-specific stylesheet/javascript links.  Without it, you could not do that.
    Where is it you are trying to add this widget?  Which editable region?

  • Can't click inside editable region in template based HTML document in CS5

    Hi Everyone,
    I m having a strange problem in Dreamweaver Cs5. After making the html page based on template, when i am opening the HTML page to edit content in editable region, I couldnot click inside the editable region. I can make changes in code view but not in design view in Dreamweaver Cs5.
    Please help if anyone knows the solution. It is really creating a mess for me.
    Thanks,
    Komal

    One of the sites is www.ShelbyVideo.com.
    The code for one of the pages is:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/index.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <meta name="description" content="SHELBY VIDEO SERVICES: Shelby, NC Video services that are inexpensive, professional, and thorough! Offering corporate and wedding video production services in and around Shelby North Carolina and South Carolina." />
    <meta name="keywords" content="shelby video, shelby videographer, shelby videography, shelby nc video, north carolina shelby video, shelby video camera, shelby videos, north carolina videos, nc video, shelbyvideo, shelbyvideo.com, shelby video production, shelby video services, cleveland county video, cleveland county wedding video" />
    <title>Shelby Video Production Services: SheblyVideo.com offering videography services in the Carolinas.</title><!-- InstanceEndEditable -->
    <link href="css/main.css" rel="stylesheet" type="text/css" media="projection,screen" />
    <!-- InstanceBeginEditable name="head" -->
    <!-- InstanceEndEditable -->
    </head>
    <body class="body">
    <div id="wrapper">
      <div id="header">
        <p><a href="http://www.shelbyvideo.com"><img src="images/shelby-video-logo.jpg" alt="Shelby Video Services" name="weddingVideo" width="216" height="77" border="0" id="weddingVideo" /></a></p>
        <p><a href="index.html">HOME</a>   <a href="shelby-nc-video-services.html">SHELBY VIDEOS</a>   <a href="shelby-video-demos.html">DEMOS</a>   <a href="shelby-video-prices.html">PRICES</a>   <a href="shelby-video-faqs.html">FAQ'S</a>   <a href="shelby-video-north-carolina-reviews-testimonials.html">TESTIMONIES</a>   <a href="shelby-video.html">BOOK US</a></p>
      </div>
      <div id="mainContent"><!-- InstanceBeginEditable name="CONTENT" --><br />
        <h1>ShelbyVideo.com</h1>
        <div id="carolinaWeddingVideoDiv">
          <object width="300" height="182">
              <param name="movie" value="http://www.youtube.com/v/QUSnPSLdnG0&amp;hl=en&amp;fs=1&amp;" />
              </param>
              <param name="allowFullScreen" value="true" />
              </param>
              <param name="allowscriptaccess" value="always" />
              </param>
              <embed src="http://www.youtube.com/v/QUSnPSLdnG0&amp;hl=en&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="300" height="182"></embed>
          </object>
        Shelby Video Demo</div>    <p> </p>
        <p>Welcome to  Shelby Video Services. We have been producing  videos in Shelby North Carolina and South Carolina since 2004. </p>
        <p> </p>
        <p>Your video will be professional and comprehensive. We will beautifully cover your video production in a way that will propell your business into your market and/or enable you to relive your special event over and over and enjoy sharing with others.</p>
        <p> </p>
        <p> </p>
        <p> </p>
      <!-- InstanceEndEditable --></div>
      <div id="footer">© <a href="index.html">Shelby  Video Services</a><br />
      <a href="shelby-nc-video-services.html">shelby nc video services</a> | <a href="shelby-video.html">start here</a> | <a href="shelby-video-demos.html">demos</a> | <a href="links.html">links</a> | <a href="sitemap.html">site map</a> | <a href="shelby-video.html">contact</a> | <a href="shelby-video-north-carolina-reviews-testimonials.html">testimonials</a></div>
    </div>
    <script type="text/javascript">
    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
    </script>
    <script type="text/javascript">
    try {
    var pageTracker = _gat._getTracker("UA-9484651-2");
    pageTracker._trackPageview();
    } catch(err) {}</script>
    </body>
    <!-- InstanceEnd --></html>
    Because I didn't create the code, rather it was dreamweaver, i believed that DW is obviously broken. Because I have a bunch of sites I made in earlier versions and when I start using a newer versions, CS5, I now can't access the editable region in any of them it seems DW is broken. So, I didn't think the code was necessary. I thought it was something that others have already experienced and resolved. However, that doesn't seem to be the case. Thanks though for helping with what appears to be broken. Hopefully it's an easy fix because there's other sites I have that this annoyance is plaguing me...

Maybe you are looking for

  • How to properly pass credentials from WCF service to another?

    I have a client application that calls a WCF service and passes client credentials like so: OrderService.OrderServiceClient sc = new OrderService.OrderServiceClient(); sc.ClientCredentials.UserName.UserName = userName; sc.ClientCredentials.UserName.P

  • Itunes crashed - now it won't work at all - tried to uninstall but can't re

    So - itunes was playing away happily when it just stopped - I tried to force quit it but no luck - it would just stay in the dock and I could not even get it out of the dock. I tried dragging the itunes icon from the application folder to the trashca

  • Combining files to create a PDF - stalls, then doesn't work

    My organization has just pushed out Office 2013, and one person has had trouble when she combines files to create a pdf. At first, it seems like the process works, but when it comes to the "Merging Files" stage, it hangs up - it doesn't even finish c

  • Download report result views in separate sheets

    Hi, I have a requirement in OBIEE report in which the result is being displayed in Pivot table as well as Chart view. My requirement is while downloading the report in excel sheet, I want the report view needs to be downloaded in 02 separate workshee

  • Email address cannot be unlinked from Facebook account

    Hi, I would like to decouple my Facebook account from Spotify.  I happened to create my account against my Facebook account and, after deactivating my Facebook account, found that I could no longer log into Spotify.  I reactivated my Facebook account