How to hide content area name in portlet?

When I add category portlet, it'll show content area name as
sub banner. I want to hide it. But I want to hide sub banner
only this portlet. What should I do? Please tell me.
Thank you,
Sirin

Hi Sirin,
Try this:
Go to Navigator -> 'Content Area' tab select 'Edit Root Folder'
click the 'Style' tab click the style properties link ->
'Folder Layout' tab click on 'sub folder' edit link, unmark
display region banner check box.
You can do the same procedure when you edit your folder and
click 'Folder style' follow the above next steps
Hope this meet your requirement
Regards

Similar Messages

  • Hide Content Area Home link

    How can we hide 'Content Area Home' link when Search Results are returned.
    We are also trying to hide the 'Bulk Action' and 'Save Search' links. Any pointers? We are going live on Portal Content Areas this week and we need to get these things sorted.
    Thanks for your responses.

    In 3.0.9, you can customize Search Portlet. Create your own page
    and then put the search portlets in it.

  • Question on how to Hide the User Name, Password, and Domain fields in the MDT Wizard

    MDT 2012 U1
    Deploying Windows 7 via Offline Media (ISO) to MS Virtual PC's
    I am looking on how to Hide the User Name, Password, and Domain fields which are prepopulated in the MDT wizard via the CS.ini (Not so concerned about the Domain field as I am User Name and Password)
    We do need the Computer Name and OU fields to be seen, so skipping the wizard is not a option
    The client just does not want these fields to be seen by the end users, they dont want them to even know the account name used for adding the machine to the domain, of course the password is not displayed but it must not be displayed either.
    But since we use the fields they must still  be fuctional just not seen.
    Thanks.....
    If this post is helpful please click "Mark for answer", thanks! Kind regards

    You shouldn't have to edit DeployWiz_Definition_ENU.xml. You should only need to add "SkipAdminPassword=YES" to the CS.ini file and your authentication information.
    Example:
    [Settings]
    Priority=Default
    Properties=MyCustomProperty
    [Default]
    OSInstall=Y
    SkipCapture=NO
    SkipAdminPassword=YES
    UserID=<MyUserID>
    UserPassword=<MyPassword>
    UserDomain=<MyDomain.com>
    SkipProductKey=NO
    SkipComputerBackup=YES
    SkipBitLocker=NO
    -Nick O.
    Nick,
    SkipAdminPassword=YES is for:
    You can skip the Administrator Password wizard page by using this property in the
    customsettings.ini.
    I am hidding the Username/Password/and domain field in the computer name Wizard pane which is read from the cs.iniDomainAdmin=xxxxx
    DomainAdminPassword=xxxxx
    DomainAdminDomain=xxxxxx
    JoinDomain=xxxxxx
    If this post is helpful please click "Mark for answer", thanks! Kind regards

  • How to hide the file name (the bizarre number assigned by the camera) when exporting an image version in aperture from an album. Pl understand I want to keep the file name in the project library version.

    how to hide the file name (the bizarre number assigned by the camera) when exporting an image version in aperture from an album. Pl understand I want to keep the file name in the project library version.

    Within Aperture you have Images, which are constructed on-the-fly from two files (the Master and the Version).  You get an image-format file _only_ when you export an Image.  You select the file name (usually a scheme) when you create an image-format file (that is, when you export).  Look under "Aperture→Presets→File Naming" for built-in Presets.  You can, of course, create your own or customize any provided.
    The Preset is applied to only the file newly created by your "export" command.  It is not applied to the Image in Aperture (unless you rename your Versions or your Masters).

  • How to separate content area from the image area in cs6

    how to separate content area from the image area in cs6? looks just fine in design view but when opened up in explorer my text /content area is over the image area. the content is suppose to be below the image not over it. How do I move it down? Everything I have tried has not worked ;(

    Is your image in the CSS (background) or the HTML (foreground)? 
    Try copying and pasting this code into a new, blank document.  Change placehold.it images to your own.  Save and preview in browsers.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 with CSS 2-Col Layout</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!--[if IE]>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <![endif]-->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <style>
    /**CSS Reset**/
        padding: 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    img {
        width: 100%;
        vertical-align: baseline;
    /**Layout**/
    body {
        padding: 0;
        width: 90%; /**adjust width in px or % as desired**/
        margin: 0 auto; /**this is centered**/
        background: #CFF;
        color: #505050;
        font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
        font-size: 100%;
        box-shadow: 2px 2px 4px #333;
    header {
        margin: 0;
        padding: 0 1%;
        width: 100%;
        background: #B00202;
        color: #FFF;
    /**top menu**/
    nav {
        background: #EAEAEA;
        font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        font-weight: bold
    nav ul {
        margin: 0;
        padding: 0;
    nav li {
        list-style: none;
        display: inline-block;
        margin: 0 3% 0 5%;
    /**menu link styles**/
    nav li a {
        color: #666;
        text-decoration: none;
        line-height: 2.5em;
        padding: 6px;
        border: 1px solid #CCC;
    /**on select or mouseover**/
    nav li a:hover, nav li a:active, nav li a:focus {
        background: #CCC;
        color: #505050;
    #wrapper {
        background: #EAEAEA;
        overflow: hidden; /**float contaiment**/
    /**main content**/
    article {
        padding: 0 2%;
        background: #FFF;
        float: left;
        width: 70%;
    figure {
        width: 80%;
        margin: 4% auto 4% auto;
        text-align: center;
    /**right sidebar**/
    aside {
        padding: 0 2%;
        float: left;
        width: 30%;
    footer {
        clear: both;
        background: #B00202;
        color: #FFF;
        text-align: center;
        margin: 0;
    /**typography**/
    header h1, header h2 {
        display: inline;
        color: #F5DD83;
        padding: 0 1%;
    h3 {
        color: #2294AE;
        margin-bottom: 0
    p { margin: 0 0 1em 0 }
    figcaption {
        text-align: center;
        font-style: oblique;
        font-size: small;
        color: #2294AE;
    </style>
    </head>
    <body>
    <!--begin header-->
    <header> <h1>Sitename</h1>
    <h2>|  Responsive CSS Layout</h2>
    </header>
    <!--begin navigation-->
    <nav>
    <ul>
    <li><a href="#">Menu Item1</a></li>
    <li><a href="#">Menu Item1</a></li>
    <li><a href="#">Menu Item1</a></li>
    <li><a href="#">Menu Item1</a></li>
    <li><a href="#">Menu Item1</a></li>
    </ul>
    </nav>
    <div id="wrapper">
    <!--begin main content-->
    <img class="banner" src="http://placehold.it/1056x100/198EBA/FFFFFF&text=Banner.jpg" alt="banner" />
    <article> <h3>Article</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    <figure> <img src="http://placehold.it/500x325" alt="placeholder">
    <figcaption>Figure 2 Caption</figcaption>
    </figure>
    </article>
    <!--begin right sidebar-->
    <aside> <h3>Aside</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus. </p>
    <hr>
    <p>Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    <hr>
    <p>Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    </aside>
    <!--end wrapper--></div>
    <!--begin footer-->
    <footer> <small>© 2014 Your Site Name. All rights reserved</small> </footer>
    </body>
    </html>
    Nancy O.

  • Existing content area as a portlet programmatically?

    Does anyone know how to expose existing content area as a portlet programmatically?
    I have to write a script that would need to create and "expose" existing content areas as portlets.
    Thanks in advance,
    Alex.

    Did you try refreshing your portlet repository? What release of Portal are you currently using? Which version of the PDK? On which platform?
    Thanks,
    Harry
    testing ignore below!
    http://portalstudio.oracle.com

  • Discoverer Report: How to find Business Area name from Report Name.

    Hi
    I opened a report in Disco Desktop 4 -> Resonsibiolity --> Report Name.
    So I know Report name but don’t know which Business Area it belongs to.
    How to find Business Area Name from Report Name?
    Cheers
    Vijay

    Hi,
    There is no relationship between reports and business areas. Each report can be built from many folders. Each folder can be in many business areas.
    However you can try the following SQL which may give you the result you want for an v5 EUL. You will have to modify for Discoverer 4 EUL:
    select distinct doc_name, obj.obj_name folder_name, bas.ba_name
    from eul_us.eul5_documents doc
    , eul_us.eul5_elem_xrefs xref
    , eul_us.eul5_expressions exp
    , eul_us.eul5_objs obj
    , eul_us.eul5_ba_obj_links bol
    , eul_us.eul5_bas bas
    where xref.ex_from_id = doc.doc_id
    and doc.doc_name = &your_report
    and xref.ex_to_id = exp.exp_id
    and obj.obj_id = exp.it_obj_id
    and bol.bol_obj_id = obj.obj_id
    and bas.ba_id = bol.bol_ba_id
    Rod West

  • Posting a content area as a portlet.

    I am using a combination of content area portlets and PDK developed portlets. When I publish the folders in the content areas as a portlet they can sometimes be added to a page and sometimes cannot. All the time they show up on the provider list but I cannot understand why sometime I can add them and sometime I cannot add them to a page. All things are remaining the same.
    Is there some checklist that I run against to see where I am going wrong?
    Thanks in advance.
    null

    Did you try refreshing your portlet repository? What release of Portal are you currently using? Which version of the PDK? On which platform?
    Thanks,
    Harry
    testing ignore below!
    http://portalstudio.oracle.com

  • How to hide content in my page..

    Hello support,
    How can i hide my discussions, to be shown in my page, exacting how to hide contents tab in my SCN page so that no one can see my discussions, who visit to my page.
    Thanks.

    No. You can't hide the content tab from your profile.
    I can see you haven't posted any discussion yet. Why you want to hide it ?

  • How to hide the folder name in a KM Navigation Iview

    Hi,
    Scenario,
    I am using a KM Navigation Iview with LinkListExplorer Layout set. The Folder Name appears at the top of the collection.
    Please can someone tell me how I can hide the folder name for the iview. i.e I do not want the folder name to appear in the iview.
    Appreciate your help.
    Thanks,
    Vaishali

    Folder name is located in the breadcrumb
    remove your breadcrumb in your collectionrenderer of the layout set you are using.
    Check the layout set you are using in your KM navigational iview.
    Raghu

  • Hide Content Area in Advanced Search page

    How can we hide some Content Areas in the 'Advanced Search' page (3.0.9)?
    Thanks.

    You can create a test case based on the JHS Demo (shipped with JHeadstart 10.1.2.2) or the HR Schema (see http://www.oracle.com/technology/products/jdev/tips/muench/jhstutorial/index.html#setuphrschemaanddata). Please e-mail it to [email protected],
    * removing the cabo folder from the web root (public_html) before zipping it, it makes the zip much smaller
    * renaming the .zip file to something like .zipped, otherwise our mail server will not process it
    * including detailed steps to reproduce the problem.
    Thanks,
    Sandra Muller
    JHeadstart Team
    Oracle Consulting

  • Cannot publish a folder in my content area as a portlet

    All,
    Has anyone out there experienced or encountered the following problem depicted below. If yes, please let me know what you did or what steps/procedures you implemented to resolve this problem.
    1. Go to content area an click the "Edit Folder" link.
    2. Click the "Create Folder" link an select "container" as your folder type.
    3. Click the next button and enter your folder display name and internal name. Leave the Category combo box as is General).
    4. Click the finish button.
    5. Edit the new folder.
    6. Under the "Portlet Properties" section, set the "publish as portlet" checkbox.
    7. Click the "Apply" or "Ok" button.
    When I click the "apply" or "Ok" button, I receive the following error message:
    Error: (WWS-00000)
    Copyright) 2001, Oracle Corporation. All Rights Reserved
    Location: PORTAL30.wwv_main.main?p_language=us&p_cornerid=11470&p_edit=1&p_siteid=35&p_currcornerid=11470&p_calledfrom=1
    I then click the "back" link on this error page that takes me back to the folder properties page. When I click the "apply" or "ok" button again, I am taken back to my content area page, which is the normal way for this process to work.
    When I try adding a "URL" item to this folder, I get a blank page after hitting OK.
    Next, I then try to add this folder as a portlet on my page. This folder portlet does not appear in portlet repository.
    I subsequently go to the portlet repository and click the "refresh" link. I again encounter the following error message:
    Error: (WWS-00000)
    Copyright) 2001, Oracle Corporation. All Rights Reserved
    Location: http://www.reeis.usda.gov/servlet/page?_pageid=52&_dad=portal30&_schema=PORTAL30&_type=site&_fsiteid=2&_fid=1&_fnavbarid=1&_fnavbarsiteid=2&_fedit=0&_fmode=2&_fdisplaymode=1&_fcalledfrom=1&_fdisplayurl=
    Oracle support is currently working on this problem through metalink. But, if anyone out there has encountered this problem and had it resolved, can you please forward your solution to me.
    This is very urgent.
    Abrom

    In the Catalog, select the folder for the report(s) you want to update in the Folders pane. It should then appear in the Tasks pane (bottom left) with some options.
    Select 'Permissions' and make sure that 'Hidden' attribute is unchecked. That worked for me.
    There's also a 'Show Hidden Items' check box at the top right of the Catalog area that should be checked to view the filters in the Catalog area (rather than when ediiting a report).
    Edited by: Raj on Apr 11, 2013 2:44 PM

  • How to hide contents using toggle button

    Hi,
    I am new to sap ui5. I have scenario where i have a matrix layout and some contents in it. There is also a button which on click should unhide the contents like label and textfield inside the same layout along with other contents. I see there are ways  of doing it through css3 or jquery, how can i hide and unhide contents with a button.
    Thanks and Regards,
    Ravikiran

    Hi Ravi,
    You can hide content inside your layout in so many ways.
    1. Give id to your controls.
        On button click you can get that control by using
        sap.ui.getCore().byId("id").setVisible(false);
    2.  If you have bound your controls inside a parent control.
         Give Id to your patent control.
         Use method findElements() to get the child elements.
         This will return the array of child controls.
         Hide the element at particular index using array[index].setVisible(false);
    Hope it will help.
    Regards,
    KK

  • How to hide content in design view within Dreamweaver?

    How can I hide content in design view within Dreamweaver?
    I have a tabbed content menu that uses some javascript. Everything looks great in Live view, but when I go to design view, all the content goes way beyond the div. How can I make it to where I can hide the content in that div in design view or wrap it completely inside of there? It's really hard to explain which is why I provided some pictures!
    LIVE VIEW
    DESIGN VIEW
    Thank you in advance for all the help!
    Dalton

    Humm....... you want to hide it in Design View whilst working on the rest of the site?
    If that is the case set the menu container <div> to display: none; -
    <div id="menu" style="display: none;">This is the content menu</div>
    Then either set it to display: block; when you're ready to view it live or remove the style completely.

  • Blank content area using navbar portlet

    Hi, using portal 3.0.9.8.2 win2000
    I have a content area where 2 groups have the same rights (view rights on sublevel folders) I have the navigation bar, consisting of the available categories, posted as portlet as well as a few subfolders.
    both roles can view and navigate the folder portlets perfectly from their respective pages. the navbar is displayed for both groups as well.
    But for one group when clicking on a category in the navbar it opens the content area, the navbar is displayed but the contentarea itself remains blank.
    To check I created another navbar displaying a list of folders: same result.
    I deleted the group from the administer tab, recreated it and set access rights all over again within the content area for that group: same result
    please help: this is driving me nuts

    Try, to use Item Type URL like /pls/portal30/portal30_DEMO.TASK_HOME.SHOW, it's not good but work.
    null

Maybe you are looking for