How do i edit the links in the top nav bar on an enterprise wiki site?

I would like to edit and change the links in the top nav bar on my enterprise wiki.
Currently the links are "About this wiki" and "Recent" a drop down menu with links.
I would like to change "About this wiki" to a "Home" page link and remove the "Recent" drop down menu and links. I also would like to be able to add more links to the to the top nav bar.
I there anyway I can do this one an enterprise wiki site?
Thanks
James T.F

Hi,
According to your post, my understanding is that you wanted to edit the links in the top navigation bar on an enterprise wiki site.
I try to reproduce the issue, however, my enterprise wiki site don’t have the drop down menu.
How did you add the Recent link?
How did you create the drop down menu?
Did you use the seattle master page or olso master page?
It will be better if you can descript more detail and provide some screenshots.
You can use JavaScript to add and remove the items in the drop down menu.
More information:
Add items in Drop Down List or List Box using Javascript
Asim Sajjad: DropDownList Add/Remove Item Using Javascript
HTML DOM Select remove() Method
Best Regards,
Linda Li
Linda Li
TechNet Community Support

Similar Messages

  • HT2490 How do I make the top tab bar stay on the screen all the time

    How do I make the top bar stay on the screen all the time?

    "Top tab bar"?
    The top of the screen is where the applications menus appear on the left and system icons (time, volume. etc) appear on the right side.
    This entire area is "covered over" when you enter into "Full Screen" mode. You can expose it while still in full screen by moving your cursor over the area.

  • Email feedback link in webhelp top nav bar, can it be done?

    RH8 HTML
    Hi all,
    I've been trying to add a button to the top nav in webhelp, I want the button to send an email back to me, with a specified subject line, and hopefully the url, or title of the topic the user is looking at.
    I want users to be ableto look through my webhelp, find a page, click the Feedback button, it launches outlook, or whatever using the mailto function, I'd like to append the topic title they are looking at so I can see what they are commenting about.
    Has anyone done anything like this before?
    Can it be done using JS.
    I've found this code, which I added to a new custom toolbar item in the Javascript section, but so far it doesnt work.
    <script>
    u = window.location;
    m = "Feedback";
    function mailThisUrl(){
    window.location = "mailto: [email protected]"+document.Mailer.address.value+"?subject="+m+"&body="+document.title+ " "+u;
    </script>
    any help greatly appreciated!!!

    There are a couple of options in Snippets on my site.
    See www.grainge.org for RoboHelp and Authoring tips
    Follow me @petergrainge

  • How do I vertically center links in spry horizontal nav bar?

    OS: Mac OS 10.6.7
    APP: Dreamweaver CS5.5
    Browser: Opera, Safari, Firefox, Chrome
    At first, positioning looked great in Chrome and Firefox but was off in Safari and Opera. The link text appeared half on the background image and half below it.
    After ample fiddling, vertical positioning is not working in any browser. Please let me know what properties, in what combination, used on which HTML objects will get me reliable results.
    HTML:
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <link href="../styles/styles.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div class="container">
      <div class="header"><a href="../index.html"><img src="../images/banner.jpg" width="848" height="160" alt="Dorsay &amp; Easton LLP, Indian Law, Home Page" /></a></div>
       <div class="menuImg">
      <ul id="MenuBar3" class="MenuBarHorizontal">
        <li id="home" name="home"><a href="../index.html" title="Home page">Home</a></li>
        <li id="practice"><a href="../practice.html" title="Practice Areas">Practice Areas</a></li>
        <li id="team"><a href="../team.html" title="The Team at Dorsay &amp; Easton">The Team</a></li>
        <li id="contact"><a href="../contact.html" title="Contact Us">Contact Us</a></li>
        <li id="canoe"><a href="#"> </a></li>
      </ul>
    </div>
    CSS:
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
         list-style-type: none;
         font-size: 110%;
         cursor: default;
         width: auto;
         background-image: url(../images/menubackgrd.jpg);
         vertical-align: middle;
         position: relative;
         height: 38px;
         margin: 0px;
         padding-top: 0px;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
         z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
         margin: 0;
         list-style-type: none; /* jacq addition. not working? */
         cursor: pointer;
         float: left;
         position: relative;
         height: 38px;
         padding: 2px;
    ul.MenuBarHorizontal a {
         font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
         color: #CC6;
         text-decoration: none;
         padding-top: 10px;
         padding-right: 12px;
         padding-bottom: 10px;
         padding-left: 12px;
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
         font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
         color: #FFC;
         text-decoration: none;
         margin: 0px;
    ul.MenuBarHorizontal a:active
         color: #FFC;
         text-decoration: none;
         margin: 0px;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    /* commenting out all submenu style info
    ul.MenuBarHorizontal ul
         margin: 0;
         padding: 0;
         list-style-type: none;
         font-size: 100%;
         z-index: 1020;
         cursor: default;
         position: absolute;
         left: -1000em;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
         left: auto;
    /* Menu item containers are same fixed width as parent
    ul.MenuBarHorizontal ul li
         width: 8.2em;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%)
    ul.MenuBarHorizontal ul ul
         position: absolute;
         margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
         left: auto;
         top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides
    ul.MenuBarHorizontal ul
         border: 1px solid #CCC;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%)
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
         background-image: url(SpryMenuBarDown.gif);
         background-repeat: no-repeat;
         background-position: 95% 50%;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%)
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
         background-image: url(SpryMenuBarRight.gif);
         background-repeat: no-repeat;
         background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%)
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
         background-image: url(SpryMenuBarDownHover.gif);
         background-repeat: no-repeat;
         background-position: 95% 50%;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%)
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
         background-image: url(SpryMenuBarRightHover.gif);
         background-repeat: no-repeat;
         background-position: 95% 50%;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
         position: absolute;
         z-index: 1010;
         filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
         display: inline;
         f\loat: left;
         background: #FFF;
    #practice {
         height: 38px;
    #home {
         height: 38px;
         margin-left: 5px;
    #team {
         height: 38px;
    #contact {
         height: 38px;
    #canoe {
         height: 38px;
         width: 285px;
    .menuImg {
         background-image: url(../../../DW-CIB/images/menubackgrd.jpg);
         height: 38px;
         width: 848px;
         position: inherit;
         visibility: visible;
         z-index: 2;
         top: auto;
         bottom: inherit;
         vertical-align: middle;
    Thanks!
    gotsowell

    Try line-height: 19px; and display: block; (as shown) on the following css seletor :
    ul.MenuBarHorizontal a {
         font-family: Lucida Sans Unicode, Lucida Grande, sans-serif;
         color: #CC6;
         text-decoration: none;
         padding-top: 10px;
         padding-right: 12px;
         padding-bottom: 10px;
         padding-left: 12px;
         line-height: 19px;
         display: block;
    Normally setting a height on a container which you have no control over is not a good idea. The text can be enlarged and that will throw everything off. The best way is to set no heights at all but use padding and make sure your background image is flexible enough to accommodate the text enlargement.
    ul.MenuBarHorizontal a {
          padding: 12px 12px;
         display: block;

  • [iPhone] How to have Edit, Back, and Add buttons in Nav bar at same time?

    Hello,
    Just getting into the iPhone. I've looked but I must be missing something fundamental.
    I have a table view which drills down to another table view. Simple enough. On the second level table view, I need the "back" button to get back to the parent but I also want an Edit button so I can delete child rows and I want an add "+" button so I can add child rows. If I specify the Edit button, on the left, I loose my "back" button and can't get back to the parent table. If I put Edit on the right, I have no place for the Add button. What am I missing?
    Thanks,
    Tom

    Thanks, yeah, I see that I could enable the add function with edit now. I'm not sure how to really do this however. It looks like I have to insert "phantom" rows in the table view that say "Add item" and the green + will go next to those?
    Seems like I'd be playing games with the cellForRowAtIndexPath delegate to do that or is there some magic that happens to make the phantom row?
    Where do I put the phantom row - top of the list, bottom of the list? Do I somehow auto-scroll to it?
    I guess these are probably basic questions that some tutorial will have that I just haven't read yet. I'm just not sure what to look for.
    Thanks for your help,
    Tom

  • In Pages, how do I edit the "My Card" data?

    in Pages, how do I edit the "My Card" data?
    I can't get a sender field to select my Email address or mobile phone.
    I've searched the Help file for "My Card" and come up with nothing.
    I've looked in My Contacts and edited the data where my name has a little blue bust (figuring MAYBE that's the My Card),
    but everything looks correct in there, so the sender field isn't pulling data from here.
    So WHERE DO SENDER FIELDS COME FROM?

    Peter:
    First of all, THANKS for the quick reply. However it’s not working, either from the Link Inspector, or directly from the Menu. Here’s the steps to reproduce the problem:
    I start with a new blank document, then pull down the Insert menu / Sender Field / Name / First Name, all it does is insert the word “First Name” into the document.
    Pull down the Insert menu / Sender Field / Phone / Home Phone, all it does is insert the words “Home Phone”.
    Same with all the other fields.
    In other words, Sender Fields are not pulling data from the Contacts list.
    I have done as you suggested, even closing both the Pages program AND Contacts, then starting Contacts first before starting Pages, in the hope that the link between the two will be established when starting Pages.  Still no good.
    I got it to work once last night (which was a good sanity-check for me to know I was doing it right) after editing my contact data inside the Contacts program, but I can’t get it to work today. I’ve tried rebooting, restarting Contacts, starting contacts BOTH before and after starting Pages. But it still won’t go.
    It’s hard to believe this program is an Apple product, seeing how unreliable it is.
    Any other suggestions?
    Vic

  • How do I edit the "favoriteprocess.aspx" template in DNN?

    How do I edit the "favoriteprocess.aspx" template in DNN?  Here is a link to the page:
    http://www.visitspartanburg.com/FavoriteProcess.aspx?OID=2185366&OTYPE=35

    On the BC Admin, you can find it under Site Manager > Module Templates > Favorite Layouts.
    Nicole - BCGurus.com

  • HT1438 How do you edit the content of i cloud?

    How do you edit the content of i cloud?

    The feature is not supported in Pages.
    See these earlier discussions of similar questions:
    Re: Compare documents in Pages as you do in MS Word
    Re: can you do document compare in pages, can you do document compare in pages
    Re: App to compare two pages files?
    Dale Gillard offers some useful comments in the last linked discussion.
    Requests for feature enhamcements or additions should be made via the Feedback channel. You'll find Provide Pages Feedback in the Pages menu in Pages '09.
    Regards,
    Barry

  • HT5622 How can i edit the credit card detail information?

    How can i edit the credit card detail information?

    Sorry, no one here can help you. If the above link won't help, contact iTunes support:
    http://www.apple.com/support/itunes/

  • Security questions have incorrect information how do I edit the information?

    Security questions have incorrect information how do I edit the information?

    How to reset your Apple ID security questions.
    Go to appleid.apple.com, click on the blue button that says 'Manage Your Apple ID'.
    Log in with your Apple ID and password. (If you have forgotten your Apple ID password, go to iforgot.apple.com first to reset your password with a password recovery email)
    Go to the Password & Security section on the left side, and click on the link underneath the security questions that says 'Forgot your answers? Send reset security info email to [email]'.
    This will generate an automated e-mail that will allow you to reset your security questions.
    If that doesn't work, or  there is no rescue email link available, then click on 'Temporary Support PIN' that is in the bottom left side, and generate a 4-digit PIN for the Apple Account Security Advisor you will be contacting later.
    Next, go to https://getsupport.apple.com
    (If you see a message that says 'There are no products registered to this Apple ID, simply click on 'See all products and services')
    Choose 'More Products & Services', then 'Apple ID'.
    A new page will open.
    Choose 'Other Apple ID Topics', then 'Forgotten Apple ID Security Questions'.
    Click the blue 'Continue' button.
    Select the contact option that suits your needs best.

  • HT4910 I have a simple question or 2. 1) how can I see what is on my icloud and how do I edit the data if I do not want it on icloud. 2) I have an app that I would like to update data - it doesn't appear to be doing that, how can I fix that? It is the mob

    1) how can I see what is on my icloud and how would I edit the data that is on it?
    2) I am having problems with an app syncing data with pc - how can I fix that? It is mobile noter.

    Welcome to the Apple Community.
    You can see what's in iCloud collectively at settings > iCloud > storage & back up > manage.... You can only edit the data through the appropriate app (contacts, calendars etc)
    For problems with 3rd party apps, contact the developer.

  • How do I edit the iCloud account information on my new iPhone 4?

    How do I edit the iCloud account information on my new iPhone 4? I changed in on the iCloud web site, but it still has the old email address on the phone. The address is not able to change...am I missing something?
    Also, the first time I started the phone, I put my email address instead of my son's address, now when I try to set up iMessage, it asks for my password associated with my address and not my son's address.

    Yes...I tried that and It did work...Thank you.
    Now the other item...iMessage still have my email address and I want my son's address. I have the iCloud registered with his address, I have not found where I can edit that.

  • Does anyone know how to simply edit the text in the spine of hard cover, 40 page book in the book mo

    Does anyone know how to simply edit the text in the spine of hard cover, 40 page book in the book module? I can click into any other text window and edit and change attributes but I am locked out of editing text when it comes to the spine of the book. I spoke to Blurb support and they referred me to Adobe. I spent 45 minutes with support here - no one knew. I am still waiting for a call back with an answer... not holding my breath as it's been a few hours now. HELP!!!

    Thanks for your reply John. I have experienced all the fiddly aspects you mentioned - these are attributes and although changing them requires the skill of a surgeon's hand - it's the actual editing of the text I can't seem to access anymore. The box just won't allow me to do anything except change attributes. Does that make sense? And it's only on the spine where I am having this issue. Puzzled! I have even rebooted the program and just now the computer - to no avail. 

  • How do you edit the duration of multiple still images?

    FCP X has a default duration for still images when you import them. After importing, how can I edit the duration of multiple clips?
    I've tried selecting them all, control-click and change duration, but nothing changes.
    BTW I want to make them 5 frames each...
    thanks for any help
    Craig

    Thanks Tom, I've tried that. and nothing happens.
    I presume that I type the 5 in the number sequence thing above the timeline?

  • I downloaded a vector file from Shutterstock. How do I edit the text in Photoshop? If i enlarge the image- the pixels are awful and the image is distorted.

    i downloaded a vector file from Shutterstock. How do I edit the text in Photoshop? If i enlarge the image- the pixels are awful and the image is distorted.

    jessicae28493569 wrote:
    i downloaded a vector file from Shutterstock. How do I edit the text in Photoshop? If i enlarge the image- the pixels are awful and the image is distorted.
    What is the file format of the vector you downloaded?  Custom Shapes have a .PSP extension, and are placed according to this table.
    Preference filenames and locations in Photoshop CC
    They will then be loadable from the Custom Shapes drop down — click on the cog icon > Load shape > Find your downloaded vector.
    Once placed in the image, it will appear as a Shape layer, and can be edited with the Path, and Direct Selection tools (black and white arrows on the toolbar)

Maybe you are looking for

  • AP1200 dual SSID's with 128 bit encryption

    I trying to setup a AP1200 radio with two different SSID's with encryption. Each SSID must use a different 128 bit WEP encryption. Both SSID's must have simultaneous access to the wireless radio. I get the client & radio associated but can not pass d

  • Scenario for interface between a non sap system and a SAP erp

    Hello, I need some help in order to elaborate a interface between a SAP ERP and a non-sap system with the help of a XI system.    -  At first regarding the interface from the non sap system and a SAP ERP :        the non sap system sends a flat file

  • Zen Sleek Photo - Product Key C

    I?have recently purchased a new computer. I have loaded 250 CD's on my Zen Sleek Photo from an old computer & want to transfer all the CD's to my new computer by the the Sync Manager. I was able?to load the software?on the new computer but it wont le

  • MI IPAD QUEDO LA PANTALLA ECHO NEGRA Y ASUL QUE PUEDO ASER

    HOLA ME pueden ayudar con mi ipad que se quedo prendido pero con la pantalla echo negro

  • Hotmail account not working on Yosemite's Mail app

    I've tried everything I've found on the internet so far trying to get my hotmail account to work the way it was before my update to Yosemite, with no success. A few days ago it stopped syncing messages properly, and now it just shows them as download