Edit CSS pop-up menus with Contribute?

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

  1. #1

    Default Edit CSS pop-up menus with Contribute?

    Hello,

    I'm wondering if it is possible to add and remove menu-items in CSS pop-up menus created in Fireworks 8 with Contribute 3?

    Anyone?

    Best, le_bon
    le_bon Guest

  2. Similar Questions and Discussions

    1. Are Flyout menus possible in contribute
      Is it possible to create a flyout menu in contribute? Would I have to make one in Dreamweaver? If so, how would I do that? My website is in asp....
    2. Editing Drop Down Menus in Contribute
      I have a client who is using contribute and wants to edit drop down menus. These drop down menus link to individual pdfs and she changes the names...
    3. Removing Contribute Menus from Browser
      I would be most grateful if someone would tell me how to remove the Contribute menus from my browser. Thanks, Pluviosilla:frown;
    4. Contribute and drop down CSS menus
      Is it possible to edit drop down horizonal CSS menus with Contribute? I'd like to recommend this product to a client but their site (which I'm...
    5. Can Contribute Edit an SSI?
      This is my first post so I hope I'm not asking dumb questions. On a small site I have each page containing the link command for the old NN4 CSS...
  3. #2

    Default Re: Edit CSS pop-up menus with Contribute?

    No. However if you look into "Suckerfish" CSS flyout menus, you may be able to
    do it that way. Suckerfish uses CSS to style a bulleted list which can become a
    flyout menu. My advice is to put the bulleted list inside of a server side
    include then call to it on each of your pages.

    You can allow the Contribute user to edit the bulleted list (with hyperlinks
    following each bullet of course) as an HTML page. But when the pages are viewed
    from a browser the bulleted list (with help from CSS and a little javascript
    for IE) will render as a flyout menu.

    Check out this two exmples:

    [url]http://cssdreams.com/xtras/scripts/flyout-menus.html[/url]
    [url]http://cssdreams.com/xtras/scripts/flyout-menus2.html[/url]

    More info:

    [url]http://www.htmldog.com/articles/suckerfish/[/url]

    mzanime.com Guest

  4. #3

    Default Re: Edit CSS pop-up menus with Contribute?

    mzanime.com > Thanks, looks like i should try that! :)

    Best,
    le_bon
    le_bon Guest

  5. #4

    Default Re: Edit CSS pop-up menus with Contribute?

    So... a little clarification, please. If we put the bulleted list in an html
    file that becomes a server-side include...

    a) how can the user navigate to the include file? i thought Contribute doesnt
    have a FileMgr like DW does. I thought users just browse the site and click
    'edit' whent they see the page they want to edit. Does Contribute let them just
    click on the server-side include (the UL navbar), right there on the page
    they're looking at, without using a file mgr?

    b) Being a server-include, that file would have just <ul><li> etc.. no
    <html><head><body> tags. So i assume Contribute does not add those tags in when
    it saves the page back to the server? I have used a similar app (WebEdit Pro
    from Interspire) that does exactly that.. incorrectly adds <html><head> etc,
    which breaks the include, of course.

    thanks in advance for any help.
    todd

    hottoddy Guest

  6. #5

    Default Re: Edit CSS pop-up menus with Contribute?

    >> a) how can the user navigate to the include file? i thought Contribute
    doesnt have a FileMgr like DW does. I thought users just browse the site and
    click 'edit' whent they see the page they want to edit. Does Contribute let
    them just click on the server-side include (the UL navbar), right there on the
    page they're looking at, without using a file mgr?

    They can't, you'd just have to provide a user with the includes URL. Also, I
    recommend only ONE user know how to find this include. Otherwise you may have
    problems, they might accidently remove it, or screw up its code, etc. Notice in
    the examples I posted that the unordered list contains: <ul id="nav"> This ID
    attribute is REQUIRED otherwise CSS can not select the list and apply styles to
    it. So they should never delete the list and crate a new one, the list needs to
    always remain, they should only add/remove individual links to it. Also, every
    bullet must have a hyperlink, otherwise it'll render kinda skewed.
    >> b) Being a server-include, that file would have just <ul><li> etc.. no
    <html><head><body> tags. So i assume Contribute does not add those tags in when
    it saves the page back to the server? I have used a similar app (WebEdit Pro
    from Interspire) that does exactly that.. incorrectly adds <html><head> etc,
    which breaks the include, of course.

    No, from my experience Contribute does not add those type of tags.

    mzanime.com 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