Primary navigation in header

How can i have primary navigation in header? What are the file that i need to modify? I am using portal 10.3.

CSS is for look and feel , and the positioning of a DOM element in HTML is also part of that. Youll need to look up CSS. if you are willing for a javascripted menu , then you only need put a placeholder in the header and replace contents on the fly.

Similar Messages

  • Remove/hide navigation panel header

    Hi,
    I tried making the expand and collapse icons to 0px and also made the detailed navigation iView "tray" property to false but it did not help me.
    I have to hide or remove the navigation panel header(the expand/collapse panel). Thanks in advance.
    Rgds,
    Janvi.

    Hi Patel,
    To hide the navigation panel header there is nothing to do with the theme editor. For that you have to edit the default frame work page.
    Open PCD>>Portal Users>>Std Portal users>> Default frame work page
    Select the Desktop inner page from the default inner page and edit>> select the delatiled navigation iview and choose edit...
    Select the Apppearence Tray from the Property Catogary drop down.
    Make the <b>Show Tray</b> option to NO... save and close ...
    This will hide the detailed navigation header.
    If u want to hide the header of other iviews like portal favorites in the navigation pannel these are the steps to follow.
    Regards
    gEorgE

  • Remove Navigation panel header  scrollbar and Design Bar

    Hi guys,
    I need your help. I want to remove the Navigation panel header  scrollbars and Design Bar from the Navigation Panel.
    Please how can I do that.
    Looking forward for your response.
    Dakata A. Ibrahim

    Hi Abdu,
    You can change them from the Theme editor under System Administration-> Portal Display. Edit the required theme .
    You can change the height and width of the scroll bar images to 0px. Similarly for the design bar also you could do that else you can make the url to design bar to some blank image that coincides with your background color.
    Hope this helps,
    Regards,
    Uma.

  • Direct navigation of header text of vd53 from alv

    Hi expert
    I have created one alv report based on the delivery level.The user need to know the hader text information of VD53.I alredy developed click event in the report.The problem is user need so many navigation reach the header text.The user want to navigate directly to the header text.
    Please give any soln for this
    Regards
    Manoj

    Hi Manoj,
    U have to make a BDC recording VD53 upto that particular screen. now in the click event make a call transaction for the BDC recording in Error mode.
    This will help user to navigate to the particular screen without interacting.
    Amitava

  • Link to folder in a room - missing header area and navigation panel

    Hello Community,
    I have a problem, again. While creating favorites to specific folders I got a problem while using and "publishing" them.
    While using the "send to..." feature the recipient gets an eMail with the link to this folder. When clicking this link he gets as the result the opened folder, displayed in a browser. Until now nothing really unexpected.
    What we want is that he gets not only the opened folder. We want that he gets the whole navigation around it (navigation panel, header area) for the specific room the folder is in.
    Now my question. Is it possible to create a link with this behavior?
    Thanks for every hint in advance!
    Regards,
    Frank

    Hi Frank,
    if you have navigated to the room / within the room to the room part you want, check the page toolbar, choose "Add to Portal Favorites", add it under some name; then in IE choose Favorites, right-click on the favorite just added, right click, properties (or just call it). The upcoming URL of the form http://portal:50000/irj/portal?NavigationTarget=navurl://1f9eaddf81792cb6f2b9f05381cce360&&NavTargetAsRoot=true should do the trick (this at least holds from SP14 on).
    Hope it helps
    Detlev

  • Report Header is hided when navigating in the Group Tree

    Hello there,
    I have an issue when navigating in CR reports by using the Group Tree.  When I chose an entry in the tree, the Report header is hided.  Please advise what needs to be changed in order to keep the report header during Group Tree navigation
    thanks

    Report Header is only visible on the first page of the report. If you click on an entry that is on the first page of the report, is the report header visible then?
    If you want the information in the report header visible on every page, consider moving it to a page header.

  • Problem in navigating 2 second page

    Hi ,
    actually the scenario is like this:
    1) when i give the partner no as input it will display the output details as guid,header,item,object_type,partner_no.---first page
    2) Again if i click on the header in this output it have to go next page and have to display the details of header like service order,process type etc.
    here upto first part i done .and the i created next page also
    i done the following code in first page oninput processing
    CASE event_id.
      WHEN 'clickon'.
        navigation->set_parameter( 'header' ).
        navigation->goto_page('second.htm' ).
    ENDCASE.
    i done the following code in next page oninitialization
    data: header type crmd_orderadm_h-guid.
    header = request->get_form_field( name = 'header' ).
    select object_id
    guid
    posting_date
    process_type
    created_by from crmd_orderadm_h INTO corresponding fields of
    table index1
    WHERE guid EQ header.
    now the problem is i m not able to click on header of first page output .after clicking on that i have to display next page details.
    Please solve the problem
    Thanks,
    Usha

    i created 2 pages.
    in first page
    LAYOUT:
    <html>
    <head>
    <title>
    Retrieving service order details
    </title>
    </head>
    <body>
    <form>
    <form method = "post" action= "first.htm">
        partner_no: <input name= "partner_no" /> <br>
        <input value="submit" type= "submit"/>
        </form>
    <% if not index[] is initial.     %>
      <table>
      <tr>
      <td width= "150" align= "left"><b>GUID</b></td>
      <td width= "150" align= "left"><b>HEADER GUID</b></td>
      <td width= "150" align= "left"><b>ITEM GUID</b></td>
      <td width= "150" align= "left"><b>OBJECT_TYPE</b></td>
      <td width= "150" align= "left"><b>PARTNER_NO</b></td>
       </tr>
      <% loop at index into wa  .     %>
       <tr>
       <td width= "150" align= "left"><%= wa-guid    %></td>
    <td width= "150" align= "left"><a href= "second.htm"><%=wa-header    %></a></td>
       <td width= "150" align= "left"><%= wa-item    %></td>
       <td width= "150" align= "left"><%= wa-object_type    %></td>
       <td width= "150" align= "left"><%= wa-partner_no  %></td>
        </tr>
        <%Endloop.      %>
    <%data:temp(20) type c.
      move wa-header to temp.    %>
      </table>
    ONINITIALIZATION:
    data: partner_no type crmd_order_index-partner_no.
    partner_no = request->get_form_field( name = 'partner_no' ).
    select guid
    header
    item
    object_type
    partner_no from crmd_order_index INTO corresponding fields of
    table index
    WHERE object_type eq 'BUS2000140' and partner_no eq partner_no.
    ONINPUTPROCESSING
    CASE EVENT_ID.
      WHEN 'clickon'.
        navigation->set_parameter( name = 'head'
                                    value = 'temp').
        navigation->goto_page( 'second.htm' ).
    ENDCASe.
    type definitions:
    types:it_index type standard table of crmd_order_index,
          wa_index  type crmd_order_index.
    PAGE ATTRIBUTES:
    index type it_index
    wa type wa_index
    head type c
    temp type c
    I_N SECOND page :_
    LAYOUT
    <html>
    <head>
    <title> Service order details</title>
    </head>
    <body>
    <table>
    <tr>
      <td width= "150" align= "left"><b>GUID</b></td>
      <td width= "150" align= "left"><b>OBJECTID</b></td>_
      <td width= "150" align= "left"><b>POSTINGDATE</b></td>_
      <td width= "150" align= "left"><b>PROCESSTYPE</b></td>_
      <td width= "150" align= "left"><b>CREATEDBY</b></td>_
    </tr>
    <% loop at index1 into wa1.     %>
    <tr>
       <td width= "150" align= "left"><%= wa1-guid   %></td>
       <td width= "150" align= "left"><%= wa1-objectid  %></td>_
       <td width= "150" align= "left"><%= wa1-postingdate %></td>_
       <td width= "150" align= "left"><%= wa1-processtype    %></td>_
       <td width= "150" align= "left"><%= wa1-createdby  %></td>_
        </tr>
       <% endloop.     %>
    </table>
    </body>
    </html>
    TYPE DEFINITIONS:
    TYPES:itindex1 type standard table of crmd_orderadm_h,_
          waindex1 type crmd_orderadm_h._
    PAGE ATTRIBUTES:
    index1 type itindex1_
    wa1 type waindex1_
    temp1 type c
    head type c
    ONINITIALIZATION
    data:temp1(20) type c.
    data:head(20) type c.
    temp1 = request->getform_field( name ='head' )._
    select guid objectid process_type posting_date created_by_
       from crmdorderadm_h into CORRESPONDING FIELDS OF TABLE index1_
      where guid eq temp1.
    now the problem is i m not able to displaying second page output..
    Plz solve this problem.
    THANKS,
    Usha
    Edited by: Usha Rani Rachamalla on Jan 23, 2008 7:59 AM

  • Navigation tabs top and left side

    Hi
    I've never built a site with tabs both across the top as well as the left side.
    across the top is supposed to be the categories and within each category, I want to have the related navigation down the left side.
    is each of the tabs going to end up being a page? if so, how do you make the pages cascade behind each other like file folder tabs?
    or are the tabs going to become links to the various pages?
    how would you set that structure up? I'm looking at the example of the Sushi Bar website in GoLive CS2 but thats not really what I want
    any direction would be great
    thanks
    best, M/

    >or are the tabs going to become links to the various pages?
    Yes, that's likely going to be the way to go if the tabs are the primary navigation. If they were the secondary navigation, might be worth looking into the Spry tabs, or a similar JavaScript option:
    http://labs.adobe.com/technologies/spry/samples/tabbedpanels/tabbed_panel_unobtrusive.htm
    http://labs.adobe.com/technologies/spry/home.html

  • Photoshop as primary editor

    I'd like to have Photoshop as my primary image editor in Dreamweaver but am unable to get it to work. When I click on the "edit" icon in the properties panel it opens Microsoft Photo Editor instead. Here's what I've done so far to fix this:
    1) Go into Dreamweaver's settings Edit > Preferences > File Types/Editors and deleted all of the editors, leaving only Photoshop and then making it my Primary editor by highlighting it and selecting "Make Primary." This heading now has (primary) next to it, and there are no other editors to chose from.
    2) According to Microsoft's website, their photo editor is a part of their Office package and is not able to be uninstalled. One can, however, go into the Control Panel and under Add/Remove Programs, select the entry for MS Office and change the program so photo editor is "Not Available." This has also been done.
    I still get the pencil icon for the photo editor in the properties panel when I should be getting the "Ps" icon. Has anyone run into this problem or know of a fix?

    You have to set Photoshop as your default editor for this type of image.
    From the windows explorer, right click on an image / photo and select open with, from this menu select Photoshop, just below the program options there is a check box which says always open this type of file with selected program select this, click O/k.
    PZ

  • How to display the images in the custom pluggable navigation.

    Hi,
    I have created a custom pluggable navigation and i need to show my custom images for the tabs in the primary navigation. where do i need to put my images and how will i need to render the images. Any thoughts will be helpful.
    Thanks in advance - Emmanuel

    1- put your images in a directory under the web app directory. Example: app/images/
    2- in your jsp, use: String file = application.getRealPath("/images/"); to get the images directory. See http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/ServletContext.html#getRealPath(java.lang.String)
    3- it's not the right forum to post this kind of question. Post them in the JSP/Servlet JSTL forum instead

  • Disable "collapse/expand navigation panel"

    Hello,
    I would like to hide the arrow symbolizing the collapse/expand navigation panel functionallity and the arrows to resize the navigation panel... Is this possible? If yes, does anybody know how I can realize that?
    Kind regards,
    dominik

    Hi
    refer this thread
    remove/hide navigation panel header
    Regards
    Ganesan S

  • Top Navigation error in clean SharePoint 2010 install

    Hello,
    When I configure top navigation with heading and links underneath, it works fine on full screen. However, if I scroll down a little bit and then hover it, it gets ugly. Please see the image. What could be the issue? How can I fix this problem?
    http://img838.imageshack.us/img838/6029/vdcu.png
    I tried it in new site collection, I get the same error.
    Thanks

    Hi,
    Did you modify the master page?
    What web browser are you using?
    To exclude the web browser cause, use other web browser and see if the issue persists.
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Sub Navigation

    Hi All,
    I'm trying to create a portal with primary and sub navigation bars. EBCC allows
    me to create a primary navigation bar (portal pages). Clicking each tab in the
    primary navigation bar, different sub navigation tabs will be displayed. Does
    anyone know how to create a sub navigation bar under primary portal pages (tabs)?
    Thanks for your help in advance

    We had to custom build it for our portal. We also had to customize the adminstration
    console to manage the sub nav.
    "keith" <[email protected]> wrote:
    >
    Hi All,
    I'm trying to create a portal with primary and sub navigation bars. EBCC
    allows
    me to create a primary navigation bar (portal pages). Clicking each tab
    in the
    primary navigation bar, different sub navigation tabs will be displayed.
    Does
    anyone know how to create a sub navigation bar under primary portal pages
    (tabs)?
    Thanks for your help in advance

  • Fixing the detailed navigation view.

    Hi
    We all know that we can expand or shrink the detailed navigation view. Is there any way to make the detailed naviagtion view immovable I mean it should have fixed width and it cannot be expanded or shrinked.
    Thanks in advance
    Srikant

    Hi DV,
    We can remove the expansion and shrinking of the navigation panel by removing the navigation panel header, using the theme editor. U cannot remove it as such but u can reduce the size to a minimum so that it wont be visible at all.
    The detailed navigation panel is an iview. It can be found in PCD>>Portal Users>>Std Portal Users>>Default Frame work page>>Desktop inner page. There u cna see the detailed navigation panel and u can edit its properties over there.
    Hope this Helps
    gEorgE

  • Sub navigation ease

    Just started using muse for wireframing and am loving it so far. The automatic pseudo flow chart it creates is super helpful, and this will save so much time vs. omnigraffle etc. My only real frustration so far is the navigation widgets and not having the ability to just show the sub navigation on its own and be automatically generated. For example on some interior pages i would like the sub nav on its own always displayed. It's possible to replicate the menus manually, but it seems very time intensive and frustrating with extensive revisions. If that feature is added this would be a remarkable tool for wireframing out large complex sites and become widely adopted in the professional industry.  http://www.avdel-global.com/en/products/breakstem-fasteners/avibulbr.html

    We had to custom build it for our portal. We also had to customize the adminstration
    console to manage the sub nav.
    "keith" <[email protected]> wrote:
    >
    Hi All,
    I'm trying to create a portal with primary and sub navigation bars. EBCC
    allows
    me to create a primary navigation bar (portal pages). Clicking each tab
    in the
    primary navigation bar, different sub navigation tabs will be displayed.
    Does
    anyone know how to create a sub navigation bar under primary portal pages
    (tabs)?
    Thanks for your help in advance

Maybe you are looking for