Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default P7 problem top menu

    I have removed the 'Forum' option from the top menu. The code is in my library
    and whole site was updated with the deletions.

    I adjusted the top menu width, so that it would look OK. When tested locally,
    it all looked OK in E7, Firefox and Safari.

    However, when I uploaded all the pages, it looked and worked OK in E7. In
    Safari, the old 'Forum' still showed and in Firefox the menu was shorter, ie
    less the deleted Forum element.

    What adjustments do I have to make for it to show OK?

    you may see it at [url]http://www.gardensoflondon.co.uk[/url]


    Karlhevera Guest

  2. Similar Questions and Discussions

    1. Pop-up Menu problem
      I know this is not a very exciting topic, but for me its a big deal because I am a beginner and I cant get it working! I am using Dreamweaver...
    2. Pop up menu problem
      hi i made a pop up menu and it has sub menus, the fireworks automatically puts a black arrow into the menu to show that there are available sub...
    3. Menu Problem - PLEASE HELP
      I created a site entirely in a flash movie, menu included. but when i publish my site the menu actions do not work anymore...any help at all is...
    4. Pop-up menu problem.
      Hi all, My problem is this, when i create a fireworks web page and I add a popup menu to it and preview it, it all looks and works fine. When I ...
    5. Pop up menu problem.. please help!
      See this Technote 16848: http://www.macromedia.com/support/fireworks/ts/documents/fwmx_pop-up_menusnframesets.htm If you're on Fireworks 4 see this...
  3. #2

    Default Re: P7 problem top menu

    The menu is working fine. Sounds like you just need to clear your browser
    caches.

    On a different note, you shouldn't set font-size in pixels, and you
    shouldn't set it on the LI selector... as it will disable text animation.
    Change these rules in your menu style sheet:

    #p7PMnav {
    margin:0;
    padding:0;
    }
    #p7PMnav li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 16px;
    }

    To this:

    #p7PMnav {
    margin:0;
    padding:0;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 1em;
    }
    #p7PMnav li {
    list-style-type: none;
    margin: 0;
    padding: 0;
    }

    Note, I am answering this post instead of the email you sent to our support
    address, as there has been a problem in the past with our emails not getting
    to you for one reason or another.

    --
    Al Sparber - PVII
    [url]http://www.projectseven.com[/url]
    Fully Automated Menu Systems | Galleries | Widgets
    [url]http://www.projectseven.com/go/Elevators[/url]


    "Karlhevera" <webforumsuser@macromedia.com> wrote in message
    news:g82gdk$ivg$1@forums.macromedia.com...
    >I have removed the 'Forum' option from the top menu. The code is in my
    >library
    > and whole site was updated with the deletions.
    >
    > I adjusted the top menu width, so that it would look OK. When tested
    > locally,
    > it all looked OK in E7, Firefox and Safari.
    >
    > However, when I uploaded all the pages, it looked and worked OK in E7. In
    > Safari, the old 'Forum' still showed and in Firefox the menu was shorter,
    > ie
    > less the deleted Forum element.
    >
    > What adjustments do I have to make for it to show OK?
    >
    > you may see it at [url]http://www.gardensoflondon.co.uk[/url]
    >
    >
    Al Sparber - PVII Guest

  4. #3

    Default Re: P7 problem top menu

    MANY thanks for your prompt reply. Will do as suggested. Posting your reply here may also be of use to others..
    karl,London
    Karlhevera Guest

  5. #4

    Default Re: P7 problem top menu

    Have adjusted the code and cleared all the internet temp files. But the
    problem still exists in both FF and Safari, this time the correct menu items
    are shown, but still shorter. Is there something else I have to do to my PC,
    so at it all also shows OK on my machine?
    regards K

    Karlhevera Guest

  6. #5

    Default Re: P7 problem top menu

    Hi Karl,

    It looks the same to me in IE7, Firefox, and Safari. Here's a quick capture:
    [url]http://www.projectseven.com/testing/customers/karl/screen.jpg[/url]

    --
    Al Sparber - PVII
    [url]http://www.projectseven.com[/url]
    Fully Automated Menu Systems | Galleries | Widgets
    [url]http://www.projectseven.com/go/Elevators[/url]


    "Karlhevera" <webforumsuser@macromedia.com> wrote in message
    news:g83as0$f1m$1@forums.macromedia.com...
    > Have adjusted the code and cleared all the internet temp files. But the
    > problem still exists in both FF and Safari, this time the correct menu
    > items
    > are shown, but still shorter. Is there something else I have to do to my
    > PC,
    > so at it all also shows OK on my machine?
    > regards K
    >
    Al Sparber - PVII Guest

  7. #6

    Default Re: P7 problem top menu

    Problem SOLVED - thanks for the advice
    K
    Karlhevera 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