Click event on sub page menu makes my master page menu go away..???

I've populated a menu using xml retrieved from a stored procedure and all is working great, except when I select an item from the sub menu and call a click event and it makes my main menu on my site.master go away and shifts the current aspx page up.
<asp:Menu ID="mnu_catproj" runat="server" BackColor="#B5C7DE" DynamicEnableDefaultPopOutImage="False" DynamicHorizontalOffset="2"
DynamicPopOutImageTextFormatString="" Style="position: relative;" Font-Bold="True" Font-Italic="False" Font-Names="Verdana" Font-Size="X-Small"
ForeColor="White" Orientation="Horizontal" StaticEnableDefaultPopOutImage="False" StaticSubMenuIndent="10px" >
<DataBindings>
<asp:MenuItemBinding DataMember="Category" TextField="#InnerText" ValueField="#Value" />
<asp:MenuItemBinding DataMember="Project" TextField="#InnerText" />
</DataBindings>
<DynamicHoverStyle BackColor="#CC9900" ForeColor="#0000CC" />
<DynamicMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />
<DynamicMenuStyle BackColor="#B5C7DE" />
<DynamicSelectedStyle BackColor="#507CD1" />
<StaticHoverStyle BackColor="#284E98" ForeColor="White" />
<StaticMenuItemStyle HorizontalPadding="5px" VerticalPadding="2px" />
<StaticSelectedStyle BackColor="#507CD1" />
</asp:Menu>
Protected Sub mnu_catproj_MenuItemClick(sender As Object, e As MenuEventArgs) Handles mnu_catproj.MenuItemClick
lblCategory.Text = mnu_catproj.SelectedItem.Parent.Text.ToString()
lblProject.Text = mnu_catproj.SelectedItem.Text()
btnMD_submit.Enabled = True
End Sub
I know the click event is calling the subroutine but the Master Page menu goes away
<asp:Menu ID="MainMenu" runat="server" DataSourceID="XmlDataSource1" Font-Names="Verdana" ForeColor="#333399" ScrollDownImageUrl="/Images/menuSeparator.gif" StaticPopOutImageUrl="/Images/menuSeparator.gif" Orientation="Horizontal" DynamicPopOutImageUrl="~/Images/triangle-16.gif" ItemWrap="True" CssClass="menuStyle" Height="27px">
<DataBindings>
<asp:MenuItemBinding DataMember="Menu" Depth="0" TextField="text" Selectable="False" />
<asp:MenuItemBinding DataMember="SubMenu" Depth="1" NavigateUrlField="url" TextField="text" ValueField="url" />
<asp:MenuItemBinding DataMember="SubMenu" Depth="2" NavigateUrlField="url" TextField="text" ValueField="url" SelectableField="url" />
<asp:MenuItemBinding DataMember="SubMenu1" NavigateUrlField="url" TextField="text" ValueField="text" ToolTipField="#Value" TargetField="target" />
</DataBindings>
<DynamicHoverStyle BackColor="#003399" Font-Size="X-Small" ForeColor="White" Font-Bold="False" />
<DynamicMenuItemStyle HorizontalPadding="10px" VerticalPadding="5px" BackColor="#E5E5E5" BorderColor="#999999" BorderStyle="Solid" BorderWidth="0.01em" Font-Size="X-Small" ForeColor="Black" />
<DynamicMenuStyle BackColor="#E5E5E5" />
<DynamicSelectedStyle BackColor="#507CD1" Font-Size="X-Small" />
<StaticHoverStyle BackColor="#FF9900" ForeColor="White" Font-Bold="False" />
<StaticMenuItemStyle HorizontalPadding="15px" VerticalPadding="4px" />
<StaticMenuStyle CssClass="menuStyle" />
<StaticSelectedStyle BackColor="#FFCC66" />
</asp:Menu>
finally: this works fine in Firefox browser but not in IE or Chrome

Hi DeanO78O,
This forum is to discuss problems of Windows Forms. Your question is not related to the topic of this forum.
You could  post it in the dedicated ASP.Net Forum
http://forums.asp.net for more efficient responses, where you can contact ASP.NET experts.
Best regards,
Youjun Tang
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • How do you fire a button click event on apex page from fancybox iframe that was created by page

    I am trying to fire off the button click event from fancybox iframe. The apex page has a button that launches a fancybox iframe which is loaded with an APEX form. On close of that fancy box, I am trying to fire a click event on the parent page which will refresh a div with html that is created with plsql. The button on the page works as expected when clicked from the page. It will show a debug alert message to prove it was called and then load the div with the correct data. I am unable to fire off this button click from the fancybox iframe when it closes.
    A couple of points:
    I using Plug-in: Execute PL/SQL Code and Return Content ("PLUGIN_MULEDEV.SERVER_REGION_REFRESH") to place the create fancybox statement. It is used to populate a div using plsql.
    The name of the button on the main page is P2020_REFRESH_SECTION_BUILDER_BTN.
    The click dynamic action on the button is calling the plugin to replace the html in the div.
    The data in the form in the fancybox is being saved to the database. On close of the fancybox box I want to refresh the div so the new record is included in the div html.
    Can anyone help. Here is the fancybox code:
      function customProcessOnReadyState4(){
        for (var i=0;i<11;i++){
          $( "#tabs"+i ).tabs();
          $("#createNewExerciseLink"+i).fancybox({
              ''width''         : ''60%'',
              ''height''        : ''70%'',
              ''autoScale''     : true,
              ''transitionIn''  : 200,
              ''transitionOut'' : 200,
              ''type''          : ''iframe'',
              ''onClosed''         : function() {
                                         window.parent.$(''#P2020_REFRESH_SECTION_BUILDER_BTN'').click();
    Here are the dynamic actions assigned to the button:
    5 - Execute JavaScript Code
    alert("Starting refresh");
    10 - Execute PL/SQL Code and Return Content [Plug-in]
    begin
      SCTUI.create_sct_tabs2(:P2020_CREATE_SECTION_LOV, '1');
    end;

    user setActionListener...
    <af:setActionListener from="#{bindings.XXX.inputValue" to="#{backingbean.variable}"
                  <af:inputText value="#{bindings.Email.inputValue}"
                                label="#{bindings.Email.hints.label}"
                                binding="#{backingBeanScope.backing_ShuttlePage.it2}"
                                id="it2">
                    <f:validator binding="#{bindings.Email.validator}"/>
                  </af:inputText>
                  <af:commandButton text="commandButton 2"
                                    binding="#{backingBeanScope.backing_ShuttlePage.cb2}"
                                    id="cb2" action="passing">
                    <af:setActionListener from="#{bindings.Email.inputValue}"
                                          to="#{processScope.detail}"/>
                  </af:commandButton>next jsf page:
                <af:outputText value="#{processScope.detail}"
                               binding="#{backingBeanScope.backing_ProcessScope.ot1}"
                               id="ot1"/>setPropertyListener also should work
    <af:setPropertyListener from="#{bindings.Email.inputValue}" to="#{processScope.detail}" type="action"/>

  • Sharepoint 2010 Custom Visual Webpart button click event firing on page refresh

    I have developed a Visual Webpart to create a list in SP using vs2010 and  the button click event I have written the list create method. If I click the button list is created successfully.  And I refresh the page again list is creating(Again button
    click event is triggering).please help me to solve the issue.
     protected void Button1_Click(object sender,
    EventArgs e)
                SPWeb web
    = SPContext.Current.Web;
                //SPList list=web.Lists["Auto"];
                SPList list
    = web.Lists[DropDownList2.SelectedItem.Text];
                if
    (string.IsNullOrEmpty(TextBox1.Text)
    || string.IsNullOrEmpty(DropDownList1.Text))
    Label4.Text =
    "Fields Are Empty";
                else
    if (DropDownList1.SelectedItem.Text
    == "Single line of Text")
                    list.Fields.Add(TextBox1.Text,
    SPFieldType.Text,
    true);
    SPView viewname = list.Views["All Items"];
                    viewname.ViewFields.Add(TextBox1.Text);
    //viewname.Update();
                    list.Update();
    Label4.Text =
    "Field Created Successfully";
    TextBox1.Text =
    string.Empty;
    // Label4.Text = string.Empty;

    Hi,
    This is because the request is sent to the server when you refresh the page.
    A workaround for this is that we can “provide a refresh link that redirects to the same page (or if you have some action causing the refresh programmatically, you could just
    redirect to the page after that, with Response.Redirect)
    so that page is requested by the browser (with GET method, default with hyperlinks)”.
    More information:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/45648b39-1229-405c-ac9e-60eb82905982/click-event-getting-fired-on-page-refresh
    Or we can use the Session to save a value which used as a flag for us to check whether it is a page refresh and perform accordingly.
    http://www.codeproject.com/Articles/28099/Refresh-Page-Issue-in-ASP-Net
    http://www.codeproject.com/Articles/10240/Detecting-Page-Refresh
    Thanks
    Patrick Liang
    TechNet Community Support

  • Directory view of sub-pages

    I have a request from my client that I am not to sure how to do. They want to be able
    to pull up a zip file with layers of folders and sub-folders. They want one of two possibilities:
    1) Create one region that would contain the main folder. They click on it and it opens up
    a series of sub-folders beaneath it. If the sub-folder has documents or other just items then they
    should display in a second region. Essentially make it look it Explorer.
    2) Almost exactly the same as 1 except everything is displayed in one region.
    I tried a sub-display item but it works in more of a drill down approach (opening
    up new pages when I click on the sub-page).
    Is there any way I can get the explorer type of look and feel.

    Thought as much.
    Here you go.
    Re: Controller customization
    The code is for a pge navigator, but you can write the query against wwv_corners
    and get the same result.
    I think you might be talking about something different. If i were to zip up
    a folder full of several subfolders, add the zip file to my root page of the portal
    and then unzip it, the portal automatically takes the sub-folders within
    the zip and translates them into sub-pages. I dont have a problem with that.
    It is almost what I want. The problem I have is that to get to anything you
    have to drill down through the sub-pages. I would like it all contained
    within a region. Ie. If I have a folder named HR and clicked on it within
    the region it would expand WITHIN the region (rather than going to a separate
    page) to display the sub-folders (similar to the way Windows Explorer) works. And if I
    clicked on a sub-folder it would expand to show its contents within the region.
    This way I can see the folder, sub-folder and contents all at the same time in the
    same region.
    The Object Map link sort of does this but when I click on the link it still goes
    to a separate page to display the tree hierarchy and it doesn't display the contents
    of a sub-page (plus it displays every page group created by every developer and we
    would like to limit it to just show the page groups and pages that a
    user has access to).
    I tried an I-Frame and it sort of worked. It kept everything in the same region on the
    root page but when I clicked on a folder it drilled down to the next sub-page
    rather than expand it like Windows Explorer does. So it's only advantage is that
    it doesnt take you out of the region, it drills down to the sub pages within the
    region.
    Maybe I have to develop something myself, I dont Know. I was just hoping there
    was a quick and dirty way to get it to work.

  • How to propagate an event to another page.

    Hi guys,
    I have a page (say Main.jsp), which will instantiate another page(say Sub.jsp) when is loaded on screen. Means at the same time user can see both Main.jsp & Sub.jsp on the same screen. (Sub.jsp is called by Main.jsp). There is a button on Sub.jsp and
    I want to handle the �onclick� event in Main.jsp in stead of in Sub.jsp.
    On the other words, I want to propagate the button clicked event from Sub.jsp to Main.jsp Any idea for this?
    Thanks

    Yes this a button click, which is suppose to handle by
    java script on another page.
    Here is sample code from both Main.jsp & Sub.jsp and
    i did what you suggested(as follow) but didn't work and received an error.
    Sub.jsp
    <HTML>
    <input type="button" id="BtnEnter" onclick="BtnEnterClicked()">
    </HTML>
    Main.jsp
    <HTML>
    <form name="formMain">
    </form name="formMain">
    <SCRIPT>
         function BtnEnterClicked(){
         alert('Button ENTER in Sub.jsp is clicked');
    </SCRIPT>
    </HTML>
    Please let me know if i missed something.

  • Project Server 2010 - Triggering event handler on click event of PDP

    Hi,
    We are trying to trigger an event handler/ process on click event of PDP page (similar to Project Details Page). Users do not have rights to checkin the project.
    So just on click event of pdp - an event handler or process should trigger.
    Could you please suggest me best possible way for the same? Thanks.
    Best Regards,
    Abhijit
    +91 8600577750

    There may be multiple reasons for this.
    1. SharePoint timer Job is malfunctioning:
    For this try restarting SharePoint timer Job. through SP Powershell:
    Stop SPTimerv4 , Start SPTimerv4
     2: SharePoint Cache is full:
    Reset SharePoint Cache by deleting all XML files ( except cache.ini
    )  in SharePoint Cache located in System Drive\ProgramData\Microsoft\SharePoint\Config\<GUID>
    3: Check if Microsoft Project Server Event Service is running in Services.msc, try restarting it.

  • How to make a menu (opened by an on click event) stay open on the following pages

    Hi,
    I have a side menu that shows the main headings only, when clicked it displays the rest of the menu using and slide effect, with an option to close the menu, on reversing the slide. This all works perfectly but what i want to be able to do is, when a users opens a menu and then uses that menu to navigate to another page, on that new page i want that menu that was opened to stay open on this next page.
    The code i have so far is below:
    // the function for the effect
    function MM_effectBlind(targetElement, duration, from, to, toggle)
        Spry.Effect.DoBlind(targetElement, {duration: duration, from: from, to: to, toggle: toggle});
    // the function to ensure the menu is unopened on page load
    function myFuncDisplay (){
    document.getElementById ('menu1').style.display='none';
    document.getElementById ('menu2').style.display='none';
    document.getElementById ('menu3').style.display='none';
    document.getElementById ('menu4').style.display='none';
    document.getElementById ('menu5').style.display='none';
    <body onload="myFuncDisplay ();">
    // the first menus code in the side menu that creates the on click and close menu actions
    <p onclick="MM_effectBlind('menu1', 1000, '0%', '100%', false)"  onMouseOver="this.style.color='#FFFFFF';" onMouseOut="this.style.color='#333333';">Menu One </p>
        <div id="menu1">
              <p class="close" onclick="MM_effectBlind('menu1', 1000, '100%', '0%', false); " onMouseOver=" this.style.color='#333333';" onMouseOut="this.style.color='#FFFFFF';"> close menu </p>
            <p><a href="firstLink.php">First Link</a></p>
            <p><a href="secondLink.php">Second Link</a></p>
            <p><a href="thirdLink.php">Third Link</a></p>
    I have tried setting a variable in the on click event then in the function myFuncDisplay() doing if else clauses to check if the variable was set and if so displaying the div as block in that function, expecting just that menu to display opened in sunsequent pages, it didn't work, itstead it displayed all menus open?
    Please can someone help me with a suggestion of how I can make this work, thank you in advance, i look forward to any replies.

    Hi,
    thanks for your reply, i am not actually using the spry menu, i am using the 'blind' effectthat I have adapted as per the code given, I wanted to make a menu that would open on click and the effect i have used works well, now  however I want the effect to remain open on different pages, as explained. i am looking for a way of adapting the function that makes the rest of the menu hidden on page load. So on page load the menu is hidden as per adapted code, apart from the menu heading, if the menu heading is clicked the menu opens, with an option to close it, if the user clicks on a link in the menu the new pages loads and the menu is   closed as per the onload instruction , I want a way to distinguish if the menu was clicked in one page it will recognise that and in the next page will not hide that particular menu until the user closes it themselves.
    Hope that makes it a bit clearer? look forward to any further help.

  • Trying to make seperate sub pages for a website?

    I have a website that I would like to make sub pages for.
    Example www.marisaleigh.com/411
    Can I make sub pages in iweb? How can I do that?
    THANKS!
    Marisa

    You need to select some text or an object in order to make the enable hyperlink to become available.
    You can create a hyperlink to your payment page by adding some text (something like "Click here to order" or whatever), selecting the text and go to the link pane and select the Link to External page. Then put http://www.LASTARBABIES.com/payment into the URL window. Then you can format the link color and rollover color in the Format section of the link pane.
    The resulting link would look something like this: Click here to order". You can set the page to open in a new window or not.

  • Force click event in a jsf page

    Hello, i need make automatic click event to login in a system.
    i get the user and password by session, but i don't want the user make more login.
    Example:
    My main page(login A)------> ( login B)Other applications
    I need automatic login on B using user/password from login A.
    Thanks

    ok if i understand your quest you want to not have a user login on the same page? so log in for one application log in for both?
    what you could do is setup a viewHandler and in the createView() check if the user is loged in i.e pull username and password from session
    if the user is loged in then create the View for you first page in B. if the user is not loged in create the view for the login B page
    thats the best way to do this
    or a hack way is to have javascript that clicks the login button on login B
    :)

  • Make Double Click event on Row, Matrix

    Hi All,
    I'm new in SDK and sorry for my English.
    Please show me how to make double click event on Row of  Matrix, i have created a table contain all Draft which Docstatus is open and order by ObjType(DocType), but i can't using Link Button on DocNum Column to view Object Detail . I think another way to do that is make a double click event on each row of matrix. Can I do like that ? plz show me . Thank for any suggestion.
    Thanks

    Hi Shafi,
    This is my .srf file
    <items><action type="add"><item uid="MTX_Data" type="127" left="15" tab_order="0" width="620" top="41" height="285" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1"><AutoManagedAttribute /><specific SelectionMode="2" layout="0" titleHeight="19" cellHeight="19" TabOrder="0">
    This is my code draw a form with matrix
    Private Sub DrawForm()
            Try
                'Read File interface
                LoadFromXML("DraftOpen.srf")
            Catch ex As Exception
                MessageBox.Show(ex.Message)
            End Try
            oForm = SBO_Application.Forms.Item("DRFOPEN")
            ' Add Items       
            ' Add a matrix
            oMatrix = oForm.Items.Item("MTX_Data").Specific
            oMatrix.SelectionMode = SAPbouiCOM.BoMatrixSelect.ms_Single
    This is my event
    Private Sub SBO_Application_ItemEvent(ByVal FormUID As String, ByRef pVal As SAPbouiCOM.ItemEvent, ByRef BubbleEvent As Boolean) Handles SBO_Application.ItemEvent
            If pVal.FormUID = "DRFOPEN" And pVal.ItemUID = "MTX_Data" And pVal.EventType = SAPbouiCOM.BoEventTypes.et_DOUBLE_CLICK And pVal.BeforeAction = True Then
                Try
                    oForm = SBO_Application.Forms.Item("DRFOPEN")
                    Dim omatrix As SAPbouiCOM.Matrix
                    omatrix = oForm.Items.Item("MTX_Data").Specific
                    If omatrix.RowCount > 0 Then
                        For i As Integer = 1 To omatrix.RowCount
                            If omatrix.IsRowSelected(i) = True Then
                                MessageBox.Show(omatrix.Columns.Item(1).Cells.Item(pVal.Row).Specific.value)
                                MessageBox.Show(omatrix.Columns.Item(2).Cells.Item(pVal.Row).Specific.value)
                            End If
                        Next
                    End If
                Catch ex As Exception
                    SBO_Application.MessageBox(ex.Message)
                End Try
            End If
    please help me to check this code. i don't know why it's still not working with double click event. sorry to disturb you.
    Edited by: PeterHoang on Aug 30, 2011 10:15 AM

  • Every time I click on a web page an advertisement or MAC Keeper page opens up.  I have pop-up blocker on. How do I make this stop?

    Every time I click on a web page an advertisement or MAC Keeper page opens up.  I have pop-up blocker on. How do I make this stop?

    There is no need to download anything to solve this problem.
    You may have installed the "VSearch" trojan. Remove it as follows.
    Malware is always changing to get around the defenses against it. These instructions are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data before proceeding.
    Step 1
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including any that have the word "Spigot," "Trovi," or "Conduit" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    Reset the home page and default search engine in all the browsers, if it was changed.
    Step 2
    Triple-click anywhere in the line below on this page to select it:
    /Library/LaunchAgents/com.vsearch.agent.plist
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item named "com.vsearch.agent.plist" selected. Drag the selected item to the Trash. You may be prompted for your administrator login password.
    Repeat with each of these lines:
    /Library/LaunchDaemons/com.vsearch.daemon.plist
    /Library/LaunchDaemons/com.vsearch.helper.plist
    Restart the computer and empty the Trash. Then delete the following items in the same way:
    /Library/Application Support/VSearch
    /System/Library/Frameworks/VSearch.framework
    ~/Library/Internet Plug-Ins/ConduitNPAPIPlugin.plugin
    Some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    The problem may have started when you downloaded and ran an application called "MPlayerX." That's the name of a legitimate free movie player, but the name is also used fraudulently to distribute VSearch. If there is an item with that name in the Applications folder, delete it, and if you wish, replace it with the genuine article from mplayerx.org.
    This trojan is often found on illegal websites that traffic in pirated content such as movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the Internet criminal behind VSearch has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing has not done so, even though it's aware of the problem. This failure of oversight has compromised both Gatekeeper and the Developer ID program. You can't rely on Gatekeeper alone to protect you from harmful software.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • How to display link content on the the same sharepoint page on click event

    "How to display link content on the the same sharepoint page on click event"
    Detail:
    we are using a document library where all html files are stored/uploaded.  we would like to display/open the html file on the same sharepoint page where all the files are listed.
    Thanks.

    Use jQuery and set the target to self to the anchor tag
    Regards,
    Sairam Avacorp Technologies

  • Menu Widget States on Sub Pages?

    Quick question:
    how do I preserve states while on sub pages within a navigation structure?
    for example:
    site has 4 pages: home, services, portfolio, contact
    page services has 4 sub pages: A, B, C, D.
    Menu widget links to top level navigation, providing 4 buttons.
    when on ../site/services the active state is present
    but, then on .../site/services/C the active state is gone.
    menu is located in the master page.
    i would like it so that when i visit ../site/services and then any subsequent subpages, the menu active state is preserved until i move to another top level page (home, contact, etc).
    Your insight is appreciated.

    Hello,
    If the A,B,C,D pages are child pages (sub pages) to the "services" page that is appearing as the top level page for these four pages, then changing the menu type from "Top Level Pages" to "All Pages" should do the trick and the top level page should stay on the active state while it's sub pages are visited.
    Hope this helps.
    Cheers
    Parikshit

  • Creating sub pages

    How does one do this in iWeb?

    Keep main page in the navigation menu and then for your sub pages, you don't put them in the nav menu - open the Inspector and then click on Page and then click on the box that has "don't include page in nav menu" and that is it.
    You then create your own links on the sub pages back to the main page and wherever you want by using either shapes or text boxes or whatever.
    To make the whole process easier, you could always ditch the iWeb page template nav menu by turning it off and creating your own text based nav menu, which makes creating sub pages easier - you just don't include what you don't want.

  • How do I create sub-pages in iWeb?

    Hi, How do I create sub-pages in iweb like it does in this website
    http://www.e-alliance.ch/index.php?id=405
    with all the main menus "about us", "advocacy capacity", etc?
    Thank you for your help!!!
    Boaz

    To create sub pages, just ensure that the main menu item is in the main menu and then for the sub pages themselves, ensure that they are NOT in the main menu and you link back by creating links instead.
    For example, you could use Staff as a main menu item, so Staff would be in the main menu and then descriptions of different staff members would be underneath, but not in the main menu - they would have separate links that you create and then hyperlink.
    If you want to make drop down menus in iWeb, as in the site that you linked to, you can't do this directly in iWeb itself.  You have to make it and then upload various css files to your web host and link to it in iWeb etc.  It is quite a complex task to create drop down menus in iWeb.  If you want to do that, then I would suggest that you use a different app instead - take a look at http://www.everwebapp.com.

Maybe you are looking for

  • Iphone not recognized by itunes or iphoto

    Help please! iTunes and iPhoto no longer recognizes my iphone 4. I have a MacBook Pro... I have checked for all software updates on both... IOS 7.0.2 on iphone is installed Latest version for iTunes installed (11.1.1 or something) The reason for inst

  • Converting PDFs to PDF/X-1a: yay or nay? (prepress question)

    Hey, folks.  As part of my production duties for a nationally distributed monthly mag, I receive PDF ads and check them over to make sure they're suitable for print (CMYK colours, bleed, type safety, 300 DPI, etc.), for which I use Acrobat's prefligh

  • Printing multiple photos per page ?

    in Canon easi print you can select many photos and/ or many copies of the photo and select how many per page. for example : 2 x photo A, 3 x B, C, D & E ; 8 photos total on 2 x A4 sheets. or you could select 8 on 1 page, or 2 on 4 pages... Does Mac h

  • Error E_GOOGLE_DEVICE_LIMIT_REACHED

    I downloaded Adobe Digital Editions and I am trying to add my first book but I am getting a pop-up that reads "Unable to download Error getting License, License Server Communication Problem: E_GOOGLE_DEVICE_LIMIT_REACHED" What does this mean and how

  • System problems after applying patches

    Hi all, I was patching our netweaver 2004s system and now I am not able to use any transaction anymore. First I updated the Abapkernel and the SPAM itself. Then I started applying the Abap support packages. I had no problem applying patch level 7 and