Hover Hyperlink State in Drop-Down Menu and other Hyperlink display problems

Hi World!
So, I'm finishing my new website for a client, but a have some problems:
At first:
I putted a Drop-Down Menu and it contains hyperlinks. Normal. But, I can't give a specific state to each hyperlink in the under-menus, I only can put a state for the global link in the Under-Menu! I can put a hover state to a normal HyperLink but not those into a Drop-Down Menu! It is normal?
How can I make that each link in the Under-Menu has a specific hover state and not all together in the same group! (pictures jointed)
(what I want to do with the links into the menu. - Juste a picture, not from A-Muse)
Then:
When I want to manage my website on BusinessCatalyst, I see strange underlines under my Menu links! (picture). But on Adobe Muse, I see no underline to these links! What's the matter? ^^
(when it's on the prewiew mode)
(On A-Muse)
RESOLVED! But not completely. I've made a Hyperlink-style, but it doesn't works...
On the prewiew (with the hovering mouse)
EDIT: In the menu, "Accueil" and *Gérants Indépendants" musn't open another window under. So I made independent forms on the menu. But can I make that those one are in the menu TOO? I don't want to open the blue window for those one.
Thanks a lot!
O.

http://metisfiance.businesscatalyst.com/
That's the link!
No I just can't "activate" the hover-modes, like the pictures! Normally, Adobe Muse must be easy to use and i used Muse like I have to do and so,.. It doesn't work^^ Why? You have now the link, I hope you can help me

Similar Messages

  • Bookmarks disappeared in bookmarks drop down menu and bookmarks toolbar disappeared too after upgrading

    I still have all my bookmarks so they are not lost (I can find them under 'bookmarks'>'Edit bookmarks' and also when I put them in the left side windowframe by clicking 'View'>'Sidebar'>'Bookmarks'
    I saw them appear once again in the dropdown menu but now they're gone again.
    The Firefox help page suggest to go to the 'add ons window' and select 'Extentions'>'Torbutten' but I don't even have that. They say that if you don't find the button, that means the torbutton is not installed. And then they leave you without another possibility. But I think that's only for when your bookmarks are totally lost anyway.
    I always use the drop down menu and the bookmarks toolbar so would love to get it back. Adding, erasing and moving the bookmarks in the 'edit bookmarks' window all works just fine.

    This issue can also be caused by a missing "Bookmarks Toolbar items" on the Bookmarks Toolbar.
    * Make sure that you have the "Bookmarks Toolbar" visible: "View > Toolbars"
    * Check in "View > Toolbars > Customize" that the "Bookmarks Toolbar items" is on the Bookmarks Toolbar
    * If the "Bookmarks Toolbar items" is not on the Bookmarks Toolbar then drag it back from the Customize window onto the Bookmarks Toolbar
    * If you do not see the "Bookmarks Toolbar items" then click the "Restore Default Set" button

  • Drop down menu and null pointer exception

    I am trying to build a drop down menu that gives you options on sorting a list (eg. it sorts on the Title) . The drop down must show which sort option has been selected after the sort occurs.
    I keep getting a "java.lang.NullPointerException". I realize this error arises from not assigning a variable to a specific object in java. I'm a .net developer who got thrown into customixing a java application and I just don't see the error. The error message didn't say on which line this occured but it is in the posted code.
    It worked for a while and now i gives me this error.
    Can someone help me please!?!?
    <%String     strCheck = new String("");%>                     </td>
                    <form action="ChangeSorting.jsp?recordView=<jsp:getProperty name='CumulusBean' property='recordView'/>" id="changeSortingForm" target="invisibleFrame" method="POST">
                         <td>
                   <select name="uid" size="1" onChange="document.getElementById('changeSortingForm').submit();">
                   <%if (session.getAttribute( "theUid" ).equals ("{1e58eab1-f625-4d6b-be82-ef0ea493cb7a}"))  {
                   strCheck = ("selected");
                    }%>
              <option value="{1e58eab1-f625-4d6b-be82-ef0ea493cb7a}"<%=strCheck%> >
                Title          </option>
    </form>     Thanks,
    Luis

    This is not JSF ..
    Anyway, it looks like that the following code returns nullsession.getAttribute( "theUid" )and invoking the equals() on it thus causes a NullPointerException.
    So check if this attribute really exists in the session and add a nullpointer check to the code. For example:if (session.getAttribute("theUid") != null && session.getAttribute("theUid").equals("blah")) { }

  • How to store session variables in drop down menu (and radiobutton/checkbox)

    How am I going to store session variables in the drop down menu, radio button, checkbox.
    In text area, I do like below:
    <input type="text" name="membershipno" size="5" maxlength="50" value="<%=((session.getValue("Smembershipno")!=null)?session.getValue("Smembershipno"):"") %>">
    Any idea?

    Hi jeffkyt79, I could have answered this on Expert's Exchange. But I suppose it would be hard as the site is down right now :-(
    Here is sample code for the form:
    <form action="" name="form1">
    <input type="text" name="field1" value="<%
    if (session.getAttribute("field1")!=null) {
    out.println(session.getAttribute("field1"));
    } %>"><br>
    <input type="text" name="field2" value="<%
    if (session.getAttribute("field2")!=null) {
    out.println(session.getAttribute("field2"));
    } %>"><br>
    <input type="text" name="field3" value="<%
    if (session.getAttribute("field3")!=null) {
    out.println(session.getAttribute("field3"));
    } %>"><br>
    <input type="checkbox" name="check1" value="tick"<% if (session.getAttribute("check1")!=null) out.println(" checked"); %>><br>
    <% String selRadio=(session.getAttribute("r1")!=null)?(String)session.getAttribute("r1"):""; %>
    <input type="radio" name="r1" value="yesdot"<% if (selRadio.equals("yesdot")) {out.println(" checked");} %>>
    <input type="radio" name="r1" value="nodot"<% if (selRadio.equals("nodot")) {out.println(" checked");} %>><br>
    <select name="sel">
    <% String selOption=(session.getAttribute("sel")!=null)?(String)session.getAttribute("sel"):""; %>
    <option value="option1"<% if (selOption.equals("option1")) {out.println(" selected");} %>>OPTION 1
    <option value="option2"<% if (selOption.equals("option2")) {out.println(" selected");} %>>OPTION 2
         <option value="option3"<% if (selOption.equals("option3")) {out.println(" selected");} %>>OPTION 3
    </select>
    </form>
    And here's the revised javascript function to put in form1.jsp:
    function newWin() {
    f=document.form1.elements;
    str="?";
    mypage="test2.jsp"; // I've hardcoded the url for testing but you can fix this
    for (i=0;i<f.length;i++) {
    if (f.type=="text") {
    if (f[i].value!="") {
    str=str+f[i].name+"="+f[i].value+"&";
              continue;
         if (f[i].type=="checkbox"||f[i].type=="radio") {
         if (f[i].checked) {
         str=str+f[i].name+"="+f[i].value+"&";
         if (f[i].type=="select-one") {
         str=str+f[i].name+"="+f[i].options[f[i].selectedIndex].value+"&";
    str=str.substr(0,str.length-1);
    // now open the popup
    mypage+=str;
    win=window.open(mypage, 'myname'); // I've left out the winprops but you can fix this
    If you can ask any more questions, could you do it on EE (if possible!!). I know this works because I've tested it.

  • In Edit this Bookmark box there is no drop-down menu and there used to be!

    When we ask to "bookmark this page" we are presented with the appropriate box but there is no drop-down menu on demand just three options from the past followed by an empty box. We used to be presented with all our bookmark categories and then we did something which stopped this (cannot remember what) and we cannot recover the original presentation. Hope this is clear? Please forgive incorrect terms!

    Not really clear, but I will try to clear up some of what you see, and tell you that you can fix most of the problems by installing the "'''Add Bookmark to Here2'''" extension, which can help clear up some of the ambiguities, but not all of them, so read the explanation below.
    The main problems are:
    # You can't really do much unless/until you expand the dialog that is the first drop-down button that appears by itself at the far right as [V] or as [^]. With the extension you can make the expansion automatic for each time you open the bookmark dialog.
    # The drop-down to the left shows the most recently bookmarked to folders, but once you click on it you will be at the selected folder and can scroll through all of your bookmarks, expanding where necessary to see subfolders but not bookmarks.
    # Below that is a drop-down for tags, this is the most confusing thing every added to a dialog because it gets close to and confused with other drop-downs. My suggestion is if you don't use tags, eliminate the tag display entirely with the extension.
    Additional advantages of installing the extension.
    # Adds back the keyword field, which is essentially a single alias for a bookmark and will allow you to invoke a commonly used bookmark without the foolish additional searching and clicking to lookup or use a bookmark, and it allows you to include substitution values associated with a shortcut. (see [http://dmcritchie.mvps.org/firefox/kws.htm keyword shortcuts] for examples and how to make your own).
    #Allows you to make use of the Description field, you can modify it to suit yourself, but correctly made web pages have a description, and you can include that or modify how it reads for your bookmark. The description is not searchable when you try to search your bookmarks.
    #Like its name implies you select right-click a bookmark folder and use the "Add Bookmark Here" to bookmark into the folder. Feature further enhanced if you install the "Multiple Tab Handler" extension.
    #The text areas within the dialog are expandable by moving the bottom border of the areas, see the third picture shown on the add-ons page.
    References:
    * '''[https://addons.mozilla.org/firefox/addon/add-bookmark-here-2/ Add Bookmark Here ²]''' extension
    * -- my notes -- http://dmcritchie.mvps.org/firefox/firefox.htm#addbookmarkhere2
    * -- more notes -- http://dmcritchie.mvps.org/firefox/addbookmarkhere2.txt
    * [https://addons.mozilla.org/firefox/addon/multiple-tab-handler/ Multiple Tab Handler] extension
    * -- my notes - -http://dmcritchie.mvps.org/firefox/multiple_tab_handler.txt
    Additional references:
    * [https://support.mozilla.com/en-US/questions/836619 How do I save a page to my imported favorites? Double clicking the star does not allow me to scroll all of my folders to choose and neither does clicking on &quot;bookmarks"? | Firefox Support Forum | Firefox Help]
    * [http://webcache.googleusercontent.com/search?q=cache:http%3A%2F%2Fkb.mozillazine.org%2FBookmark_dialog Bookmark dialog - MozillaZine Knowledge Base] (cached copy) -- real link is [http://kb.mozillazine.org/Bookmark_dialog here].
    * [https://support.mozilla.com/questions/872310 Can one add an item to the bookmarks toolbar bookmarks menu? | Firefox Support Forum | Firefox Help]
    Additional disambiguation may be needed:
    :"bookmark categories" -- suggested last used bookmark folders, or bookmark folders, or tags -- I think I covered those above if not, indicate what you meant.

  • Difference between Drop down menu and F4 help

    Hi ,
    I have developed a  adobe form in which i  have a drop down menu  for a field wage type ....
    I have created a Badi which is  linked to the field Wage type in the form......  In that Badi i have created a F4 help . ..
    What i want to know is that whether it will serve the purpose of drop down menu  or not ? because i have not attached that badi till now with that field in the form .......
    Is there any function module for a drop down menu which i want to put for my field .?
    Thanks a lot  in advance

    For drop down,
    check the FM
    VRM_GET_VALUES
    VRM_SET_VALUES

  • Drop Down Menu on Page to Display Different Content

    I need to put a drop down menu into a page. People would be able to select form the menu and get different content on the page. These would not be links to other pages.
    I do not want the menu items to be links to other pages, but separate content all on the same page. Kind of like a anchor, but instead of all the text being displayed at once the text only displays when chosen from the drop down.

    You could also use jQuery to show/hide divs.
    http://jsfiddle.net/MdSTW/14/
    http://jsfiddle.net/NancyO/nFPuW/
    Nancy O.

  • Spry Tabbed Panels overwritting Flash drop down menu in IE but display fine in Firefox

    I am having an issue with Spry Tabbed Panels appearing above
    a Flash drop down menu in IE6 & IE7 but it works fine in
    Firefox. Would someone be able to educate me on what I can do to
    fix this problem. The page that is exhibiting this problem is
    http://us.shuttle.com/performance.aspx
    I’ve add “WMODE” to my flash menu,
    also updated “SpryTabbedPanels.js to version 0.5 –
    pre-release 1.6”, but neither way is
    helping…….

    Thank you very much for the suggestion. Yes, this is how I
    tried:
    .TabbedPanels {
    margin: 0px;
    padding: 0px;
    float: left;
    clear: none;
    width: 100%;
    z-index: 1000;
    I’ve been tried setting Z-index to from 50 to 2000 in
    attached css, but still not working.

  • I clicked the full screen choice on the firefox drop down menu and now the firefox icon has disappeared. How do I get it back?

    I used the pull down menu on the firefox icon on the left hand upper corner to create a full a screen. Once the full screen was created the icon disappeared and I cannot go back to regular screen. HELP.

    If you run Firefox in full screen mode then press F11 or Fn + F11 to toggle (Mac: command+Shift+F).
    If you are in full screen mode then hover the mouse to the top to make the Navigation Toolbar and Tab bar appear.
    You can click the Maximize button at the top right to leave full screen mode or right click empty space on a toolbar and use "Exit Full Screen Mode" or press F11.
    *Press F10 or tap the Alt key to bring up the "Menu Bar" temporarily if the Menu Bar is hidden.
    *Use "Firefox > Options" instead of "Tools > Options" if the menu bar is hidden.
    See also:
    *https://support.mozilla.com/kb/Menu+bar+is+missing

  • I would like to create a web that gives users choices from drop down menu and it then calculates the results back to them and copy to me

    Hello I am a wedding planner and have decided to create new website.   I would like to have the user make choices of different items and have it calculate so that they can print it off.  Like an estimate of what costs would be to plan a wedding .  I will be giving them different selections to choose from  in drop down or radio selections .
    I was thinking much like a shopping cart but that seems too involved is there a simpler way.   Thank you for any help.

    Just based on your question I can tell that you're probably not experienced enough to develop something like a shopping cart. Hiring a web developer is the way to go, as previously said.

  • I have created a drop down menu and duplicated it in other parts of the document.

    When a selection is made in a box, they all change.  How can I fix it so that every drop down is independent?

    The "#" indicates the number of the field with the same name. This is referred to as a "widget" and for most fields it can be a problem. Only buttons, check boxes, and radio buttons can have widgets and work independently within limits. Check boxes and radio buttons with the same name but different option values allow only one selection within the group of like named fields.

  • Drop Down Lists, and other Problems after upgrade

    Noticed the problem on http://www.autotrader.com/cars-for-sale/?expandAllOptions=true&Log=0
    Drop down lists do not respond they way they did last week - before 36.0.1 upgrade.
    Choose a brand, and then you are supposed to be able to select from a list of models. Not happening.
    I have several of the privacy add-ons (see below) but they have not changed with the upgrade (unless they too were upgraded automatically.)
    FF is becoming less and less of a joy to use as the years go by.

    Note that your System Details list shows that you have a user.js file in the profile folder to initialize prefs each time Firefox starts.
    The user.js file is only present if you or other software has created this file and normally it wouldn't be there.
    You can check its content with a plain text editor (right-click: "Open with"; do not double-click).
    The user.js file is read each time Firefox is started and initializes preferences to the value specified in this file, so preferences set via user.js can only be changed temporarily for the current session.
    You can delete the user.js file if you didn't create this file yourself.
    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    Windows hides some file extensions by default.
    Among them are .html and .ini and .js and .txt, so you may only see file name without file extension.
    You can see the real file type (file extension) in the properties of the file via the right-click context menu in Windows Explorer.
    See also:
    *http://kb.mozillazine.org/Preferences_not_saved

  • Is it possible to make an  animated drop down menu  and still use  the menu widget?

    Hi- I am trying to create a menu bar that is hidden with just a tab exposed  to indicate that there is a menu  there. Upon  rollover,  the full menu bar slides down and reveals the menu items.  I can't find a way to make it smoothly  slide down so I settled for the Photoshop button and just moved the button position in Photoshop to fake it.    The problem is  now I need to find a way to still use the menu widget along with this.  if that can't be done,  can I use the Photoshop button and populate the menu there and abandon the menu widget?
    Someone suggested using  Edge Animate ( why the hell is this a separate  software from Muse?)  to make the animation.  If that's a possibility,  can the menu widget be used with the Edge file that's imported?  please help me get to where I need to go  however it needs to happen!  Thanks in  advance.
    Here's a link to a screenshot of my menu: http://www.groovindj.com/menu.jpg
    Here's a site that  does  pretty much what I'm looking to do... www.bagigia.com

    Ok, thanks! I have another way to do what I'm trying to do, I just thought it might be better to do it this way. Obviously I was wrong!
    Thanks again!

  • Trying to reinstall cs4 on my old G5.  doesnt recognize previous version when I select it from drop down menu and put in serial #

    I'm trying to reinstall CS4 on my G5, but when I put in the serial number it doesn't recognize it.  I installed Creative suite premium without trouble but can't get beyond that. My G5 isn't an Intel processor so cant go out and buy new software.  I have discs and sn #'s.

    Piper and me it looks like you have a full version of Photoshop CS4 registered under this account.  Have you tried downloading a fresh copy of the installation files from Download CS4 products?  If so is there any event which occurred on this Mac which is leading you to need to reinstall Photoshop CS4?

  • When left click drop down arrow and other items, dialog box constantly pops up instead of performing action. how can I turn it off, or must I uninstll mozilla?

    When using mozilla for web searches, each time I click to correct a word or grammar a dialog box constantly comes up like a right click box asking if want to copy, cut correct spell etc. when I click to search at the magnifying glass another box keeps coming up. Seems like everything I left click when in mozilla springs up a dialog box. Pretty frustrating and does not happen when I use AOL search without mozilla. The right click box comes up as it should but need to lose this left click box or firefox. I already checked mouse touch pad properties and made sure R click main.

    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that temporarily turns off hardware acceleration, resets some settings, and disables add-ons (extensions and themes).
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu:
    *In Firefox 29.0 and above, click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    *In previous Firefox versions, click on the Firefox button at the top left of the Firefox window and click on ''Help'' (or click on ''Help'' in the Menu bar, if you don't have a Firefox button) then click on ''Restart with Add-ons Disabled''.
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".<br>
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, theme, or hardware acceleration. Please follow the steps in the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.

Maybe you are looking for