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

  1. #1

    Default Custom HTML Items

    I just started administering contribute and was wondering if I were to make a
    contentbox "div with an id styles by CSS" could a person using contribute
    somehow point and click something to add that content box to their page and
    then add content inside of the box?

    DC_Eric Guest

  2. Similar Questions and Discussions

    1. Creating master page where global items arearranged ABOVE local items
      When you create a mater page, obviously all the items are arranged below anything on the individual pages. Is there a way of creating a master...
    2. Adding Custom Items to the Panel Group Menu
      I have created custom panel groups for my Extension and would like to add custom items to the panel group menu. Can someone please tell me if this...
    3. JavaScript: html list items within list items?
      Hi, I've seen how to implement a JavaScript to change the CSS class of every other list item in an unordered list, but, being new to JavaScript,...
    4. possible for publishers to edit Library Items /recurrent items like navigation?
      I'd love to see this possibility too, but I think it's not possible.
    5. possible for publishers to edit Library Items / recurrent items like navigation?
      No, you have to use an include of some sort. If you don't want to use SSI you can do it with Javascript. Search Google with the keyword "Javascript...
  3. #2

    Default Re: Custom HTML Items

    This is a nice idea. Maybe you could try using CSS to hide and show these
    regions on the website and use an editable region inside these div-tags for
    your users to edit. Haven't tried it myself yet, but maybe it can be done.

    grtz
    Hayo

    ThinkInk Guest

  4. #3

    Default Re: Custom HTML Items

    They really are not regions. They are just content boxes. Basically a box with
    an outline. The top would be the title of the box with a color background. then
    you would put your info inside the box. But it wouldn't make sense to put a ton
    of these all over the page and then have them invisible. I was hoping a using
    could just use some command where they can insert their box.

    DC_Eric Guest

  5. #4

    Default Re: Custom HTML Items

    Actually, you can make a Dreamweaver template that does this. Define an area as
    a repeatable and optional region. I defined one of these and Dreamweaver allows
    you to add, subtract, and move the regions up or down.

    ewriter Guest

  6. #5

    Default Re: Custom HTML Items

    its not a region its a content box

    example of what a content box is:
    [url]http://www.hud.gov/[/url] look at the right where it says "homes for sale"
    it has a red top and cream body. I want users to be able to insert items like
    that on their pages.

    DC_Eric Guest

  7. #6

    Default Re: Custom HTML Items

    Region is Dreamweaver terminology for what you're describing. DW calls that an
    Editable Region or an Optional region--a place to hang your content. Adobe has
    some tutorials or content on DW templates as does the DW help file.

    ewriter Guest

  8. #7

    Default Re: Custom HTML Items

    I think I do understand what you mean now.
    Maybe you could create a class in CSS with the proper color background and a
    background image for the top of the box.
    I used this CSS for a h6 heading that kind of functions like something you
    describe:

    ---
    .content h6 {
    color:#ffffff;
    text-align:left;
    font-size:11px;
    width: 540px;
    height: 110px;
    padding:10px 10px 10px 7px;
    margin-left:20px;
    background-image:url(../img_site/voorproef.gif);
    background-repeat:no-repeat;
    }
    ---

    It looks like this:
    [url]http://www.verleidkundiginstituut.nl/vi_voorproeven.php[/url]

    grtz
    Hayo

    ThinkInk Guest

  9. #8

    Default Re: Custom HTML Items

    [q]Originally posted by: ThinkInk
    I think I do understand what you mean now.
    Maybe you could create a class in CSS with the proper color background and a
    background image for the top of the box.
    I used this CSS for a h6 heading that kind of functions like something you
    describe:

    ---
    .content h6 {
    color:#ffffff;
    text-align:left;
    font-size:11px;
    width: 540px;
    height: 110px;
    padding:10px 10px 10px 7px;
    margin-left:20px;
    background-image:url(../img_site/voorproef.gif);
    background-repeat:no-repeat;
    }
    ---

    It looks like this:
    [url]http://www.verleidkundiginstituut.nl/vi_voorproeven.php[/url]

    grtz
    Hayo[/q]


    I did do that its called

    <div class="contentbox">

    </div>

    But I can't figure out how to make contribute insert these anywhere they want
    in the editable regions.


    DC_Eric Guest

  10. #9

    Default Re: Custom HTML Items

    I see what you did. you sected all the text and then applied the h6 header to
    it. that works great if you use a box with text like yours however my boxes
    have header. Much larger text that is white on a color background.

    I think it basically means I need to edit the actual contribute application\
    because I am not finding a way for contribute to add predefined library items
    or use snippets which are native to dreamweaver

    DC_Eric Guest

  11. #10

    Default Re: Custom HTML Items

    Yup, that's exactly what I mean. I do something similar with CSS and a Dreamweaver template that has an optional region defined using CSS heading and class styles.
    ewriter Guest

  12. #11

    Default Re: Custom HTML Items

    Well you could still try to use CSS.

    Use h5 and h6 and make h5 the header of your box and h6 the content. You make
    them fit to eachother with CSS and you can vary the text size and color in h5
    and h6.

    ThinkInk Guest

  13. #12

    Default Re: Custom HTML Items

    I think this is a good work around if I can't add a content box option under insert. I let you guys know if I figure a way to add this to contribute.
    DC_Eric 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