Content layout on Contribute

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

  1. #1

    Default Content layout on Contribute

    I just need to find out if is it possible on contribute to be able to upload
    changes on a website without in anyway altering the design, like for example on
    the news page, would it be possible to have on contribute fields where the user
    can input news with seperate fields for the date and a field for the news?
    Basically whereby the page will always have a standard format?

    mrmatenge Guest

  2. Similar Questions and Discussions

    1. Content editors and Contribute
      I am the webmaster, and I want the content editor to edit pages from her computer. The manuals discuss the key and somewhere it mentions that users...
    2. Contribute 4 Jumbled Layout
      I am having a problem. I have a site that was being edited in Contribute 3 with no trouble. When we upgraded to contribute 4 the site's layout...
    3. Active Content - Flash - fix for Contribute Users
      Greetings, I have a group of users that use Contribute. Many of these users create Flash Paper forms and embed them in a standard template. These...
    4. Contribute destroys tablesess CSS/XHTML site layout
      I just tried to use Contribute. I like it but I was dissapointed with the rendering engine. When I go to edit mode site layout is destroyed. Heights...
    5. Contribute Locking Content Problem
      I'm haveing trouble locking content that i don't want chnaged. I'm using the template begnin commands ie: <!-- TemplateBeginRepeat...
  3. #2

    Default Re: Content layout on Contribute

    Taht is possible. You can design templates in Dreamweaver with so called
    Editable Regions. When you open such a page in Contribute only the Editable
    Regions are available for editing. You can also handcode these regions. See
    this post:
    [url]http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=55&amp;cati[/url]
    d=290&amp;threadid=1281929&amp;highlight_key=y&amp ;keyword1=template

    ThinkInk Guest

  4. #3

    Default Re: Content layout on Contribute

    thanx for that response, so basicaly its not possible to define those editable regions using contribute instead of dreamweaver?
    mrmatenge Guest

  5. #4

    Default Re: Content layout on Contribute

    You can of course edit the source code of any page using f.i. Notepad and
    Contribute. In the menu go to (if you have the proper rights set): File,
    Actions, Edit source in External application. To adjust which application you
    need to adjust the Preferences (Edit, Preferences).

    ThinkInk Guest

  6. #5

    Default Re: Content layout on Contribute

    one other question, is it possible that after applying a css code to a page on
    dreamweaver like for example on the news page in a way that the date has its
    own formating and text has its own formating, then blocking it so that the user
    uploading the content cannot change the text formating on contribute? if
    possible, how can that be achieved?

    mrmatenge Guest

  7. #6

    Default Re: Content layout on Contribute

    Maybe something like this:

    1. Create a css file style-users.css for the styles the users do need, include
    this in all the head sections of the pages (or your template), if they need
    none, then don't do this.
    2. Adjust the Users and Roles settings by administering the roles of the
    users, so the can't use styles other then the ones specified by the admin
    (Edit, Adminsiter websites, Users and Roles, Edit Role Settings, Styles and
    fonts)

    ThinkInk Guest

  8. #7

    Default Re: Content layout on Contribute

    Thanx a million for the help, i really appreciate it,
    mrmatenge Guest

  9. #8

    Default Re: Content layout on Contribute

    Hi, 1 more question, is it possible on dreamweaver to define a date format in
    the editable region like for example on the news page in a way that the user
    cannot delete that date on contribute but only have athourity to edit it?

    mrmatenge Guest

  10. #9

    Default Re: Content layout on Contribute

    Use javascript or PHP and make sure Contribute is set to prevent users from editing/removing scripts.
    ThinkInk Guest

  11. #10

    Default Re: Content layout on Contribute

    Awsome!! So wat if i want the user to update the news page and automatically the system updates the news synopsis section on the home page?
    mrmatenge Guest

  12. #11

    Default Re: Content layout on Contribute

    PHP:
    -
    change format as you like: [url]http://nl3.php.net/manual/en/function.date.php[/url]
    -
    code example:
    <?php
    $date = date("j-n-Y");
    echo $date;
    ?>

    Javascript:
    -
    view: [url]http://www.tizag.com/javascriptT/javascriptdate.php[/url]
    -
    code example:
    <script type="text/javascript">
    <!--
    var currentTime = new Date()
    var month = currentTime.getMonth() + 1
    var day = currentTime.getDate()
    var year = currentTime.getFullYear()
    document.write(month + "/" + day + "/" + year)
    //-->
    </script>

    ThinkInk Guest

  13. #12

    Default Re: Content layout on Contribute

    Cool, So wat if i want the user to update the news page on contribute and automatically the system updates the news synopsis section on the home page?
    mrmatenge Guest

  14. #13

    Default Re: Content layout on Contribute

    Use PHP includes: <?php include("updated-file.inc.php"); ?>
    ThinkInk Guest

  15. #14

    Default Re: Content layout on Contribute

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