Make non-editable sections of webpage?

Ask a Question related to Macromedia Contribute General Discussion, Design and Development.

  1. #1

    Default Make non-editable sections of webpage?

    I'm designing a site using contribute. I'm wondering if I can take a webpage
    that is already completed and make certain sections of it uneditable.... such
    as the main links, or certain divs... Is there a way to do this? Or can this
    only be accomplished with templates?

    Thanks so much for all and any help!

    areikiera Guest

  2. Similar Questions and Discussions

    1. Make non-editable region invisible
      Is there a way to make the non-editable regions invisible to certain user groups, or all users? My template has a good amount of .net, javascript,...
    2. Webpage in Edit Mode displays NO editable data!
      I used Dreamweaver MX to develop our company's Intranet. Our HR Director makes changes to the Job Postings page on her own using Contribute 2. ...
    3. Cannot make page editable
      I'm a Contribute Administrator at my company and we currently have a few sites with pages that are locked and there doesn't seem to be anyway to...
    4. Using a webpage to make a text file
      Hi Im pritty stuck I need to make a error report form which takes in info enetered in a form on a webpage from people which have access to that...
    5. Adding slice sections is distorting my webpage
      I have a site with a rollover buttons on the top of the page and I want to add an image below the buttons now. Everything looks okay on the webpage...
  3. #2

    Default Re: Make non-editable sections of webpage?

    making certain sections of your page uneditable using contribute is not possible, however you can to it using dreamweaver.


    jheycie Guest

  4. #3

    Default Re: Make non-editable sections of webpage?

    This is possible to create by handcoding, but you have to create editable
    regions and not non-editable regions.
    Contribute understands the editable region code, also when it's not a
    dreamweaver template (using dreamweaver templates of course has a lot of other
    advantages).

    The code you need looks like this: <!-- TemplateBeginEditable
    name="content" -->content<!-- TemplateEndEditable -->


    Place it like this in your page and the lorem ipsum p's are non editable, the
    sentence 'This content is editable...' is editable. The head section and title
    are also editable (convenient to adjust meta-tags through contribute):

    <!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>

    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <!-- TemplateEndEditable -->


    <!-- TemplateBeginEditable name="head" -->
    <meta name="Keywords" content="keywords" />
    <meta name="Description" content="description" />
    <!-- TemplateEndEditable -->


    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    </head>

    <body>

    <p>"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
    tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
    quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
    consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
    cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
    proident, sunt in culpa qui officia deserunt mollit anim id est laborum."</p>

    <!-- TemplateBeginEditable name="content" -->This content is
    editable...<!-- TemplateEndEditable -->


    <p>"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
    tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
    quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
    consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
    cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
    proident, sunt in culpa qui officia deserunt mollit anim id est laborum."</p>

    </body>

    </html>

    ThinkInk Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139