Content Folder Style vs. Page Style

We have everything looking the way we want within the content area. However, when we put a folder into a page via a portlet, the page style overrides the portlet style. As the portlet style give you more options, based on text type, we would prefer to keep this. Is there any way to retain the content folder's style within the page?

We have found the same issue. Ultimately we would like to allow end users to apply page styles over the top of the content area styles. The problem, as you pointed out, is that the page styles do not have the same options as the content area styles.
The issue we have occurs when a content area style has sub headers enabled for regions and categories and they are overlayed with a page style. The page style treats the content area subheaders (all levels) as if they are the same level of subheader. The result is three levels of subheaders that have the page subheader style applied to them. So, if you used three distinct colors for the various content area subheader levels, the page style overlays them with a single color making it hard to differentiate between the content area subheader levels.
We are submitting this to oracle as an issue in hope that they will make the page style and the content area style options consistent.

Similar Messages

  • Applying Page style sheets to a Content Area.

    We have embeded a Folder within a Content Area that has been published as a Portlet and is displayed within a Page. There is a link within the displayed folder which displays another Folder within the Content Area that we have doctored to appear like the Page (by including other Portlets, Nav Bars, same regions etc.). But the second tier (Content Area) does not mimic the Page Style of the home page, ie. we can't mimic Portlet header colours etc. How can we sort this???
    Thanks in advance.

    Just to clairfy, are you trying to make a folder look like a page, and asking how to impose a page style onto a folder? If so, you can edit your folder style to resemble your page style.
    null

  • Loop Page Style Sheet to set file name.

    I am exporting pages to jpgs and pngs using a script that pulls the name from an applied style sheet.
    http://forums.adobe.com/message/5913479#5913479
    the above works perfectly if I only want to specify one style sheet as the file name.
    the challenge may need to use different style sheets on each page to create the name.
    I am not sure how to loop through each page and grab the style in play.
    or if I need to loop at all.
    This is where I am...
    function MakePNGfile()
         for(var myCounter = 0; myCounter < myDoc.pages.length; myCounter++)
              if (myDoc.pages.item(myCounter).appliedSection.name != "")
                   myDoc.pages.item(myCounter).appliedSection.name = "";
          var myStyle1 = "sheetlabel-text";
          var myStyle2 = "sheetlabel-text-2";
          var myParagraphs = myDoc.pages.item(0).textFrames.item(0).parentStory.paragraphs; 
              var myPageName = myDoc.pages.item(myCounter).name;
          var myPNGPrefix = "";
         for( i = 0; i < myParagraphs.length; i++)
             var paragraph = myParagraphs.item(i);
    if (paragraph = myStyle1)
        (myPNGPrefix = getParagraphContent(myDoc.paragraphStyles.item("sheetlabel-text"),  myDoc.pages.item(myCounter))+ '-0' + myPageName)
    else
        (myPNGPrefix = getParagraphContent(myDoc.paragraphStyles.item("sheetlabel-text-2"),  myDoc.pages.item(myCounter))+ '-0' + myPageName)
    Thanks for your help!

    Good to hear .
    Find attached the next version. You can now insert in 'paraStyleNames' as many style names as you want. The script will check from left to right, if there is one found on the page. If this is true, the script will ignore the other styles.
    Removing leading zero should work now.
    Maybe one problem: If one page contains no style, this page will be exported nevertheless with it’s correct page number, but with the founded text of the previous page. If this can never happen, we are done and you should mark the answer as correct. If this is a real problem for you, please let me know, what should happen in this case and I will try to fix that too.
    // Export pages as JPG with additional info by Kai Rübsamen
    // http://forums.adobe.com/message/6326425#6326425
    main ();
    function main() {
    var curDoc = app.activeDocument;
    // Array of paragraph Style names
    var paraStyleNames = ["h1", "h2"]; // insert here your para names !
    var missingParaStyles = [];
    // check, if the styles are valid
    for ( var p = 0; p < paraStyleNames.length; p++ ) {
        var curName = paraStyleNames[p];
        // if the style is missing, push it to the array
        if ( !curDoc.paragraphStyles.itemByName(curName).isValid ) {
            missingParaStyles.push( curName );
    // if some styles are missing, give an alert
    var nMiss = missingParaStyles.length;
    if ( nMiss > 0 ) {
        var display = missingParaStyles.join( "\r" );
        alert ( "Missing para(s):\r" + display );
        exit();
    // loop through all pages
    for ( var i = 0; i < curDoc.pages.length; i++ ) {
        // the current page
        var curPage = curDoc.pages[i];
        // the current pages name
        var pName = curPage.name;
        // controls the loop
        var controller = true;
        // all paragraphs on the current page
        var allPageParas = curPage.textFrames.everyItem().paragraphs.everyItem().getElements();
        // loop through all paragraphs and check, if one has the para style applied
        for ( var p = 0; p < allPageParas.length; p++ ) {
            if ( !controller ) break;
            // the current para
            var curPara = allPageParas[p];
            // loop through the styles
            for ( var n = 0; n < paraStyleNames.length; n++ ) {
                if ( curPara.appliedParagraphStyle.name == paraStyleNames[n] ) {
                    var paraContents = curPara.contents;
                    var paraString = "-" + paraContents.replace( /\s+$/ , "" ).replace( /\s+/g , "-" ).toLowerCase();
                    controller = false;
                    break;
                } // end if
            } // end for paraStyleNames
        } // end for allPageParas
        //~ var folderPath = "~/-client/JOYS - Just Organize Your Stuff/-Art/-art-book-kindle/";
        var folderPath = Folder.desktop;
        if ( pName < 10 ) {
            var appendix = "-0" + pName + paraString;
        else {
            var appendix = "-" + pName + paraString;
        var filePath = folderPath + "/" + curDoc.name.replace(/\.indd$/,"") + appendix + ".jpg";
        var myFile = File( filePath );
        with ( app.jpegExportPreferences ) {
            jpegQuality = JPEGOptionsQuality.high; // low medium high maximum
            exportResolution = 72;
            jpegExportRange = ExportRangeOrAllPages.exportRange;
            pageString = pName;
        curDoc.exportFile( ExportFormat.jpg, myFile, false );
      } // end for pages
    } // end main
    –Kai

  • Panel contents overlap when using borderSkin style and layout=absolute

    This problem has been reported on several occasions
    (http://bugs.adobe.com/jira/browse/SDK-14806)
    and there are several articles that talk about this:
    http://dougmccune.com/blog/2008/01/17/followup-about-flex-panel-bug/
    http://dougmccune.com/blog/2008/01/12/calling-********-on-a-resolved-flex-bug/
    I´m not an expert but think I found a fix/workaround for this.
    frameworks\projects\framework\src\mx\containers\Panel.as
    Must to be changed in the viewMetrics() method.
    Line:
    973- if (FlexVersion.compatibilityVersion < FlexVersion.VERSION_3_0) 974- {
    Replace by:
    if ((FlexVersion.compatibilityVersion < FlexVersion.VERSION_3_0) || (getQualifiedClassName(border) != "mx.skins.halo::PanelSkin") || (getStyle("borderStyle") != "default") ) {

    Hi Andres,<br /><br />I haven't tried to verify your fix, but would you be willing to fill out a contributor agreement and submit an official patch?<br /><br />Matt<br /><br /><br />On 4/25/08 12:34 PM, "Andres Serral" <[email protected]> wrote:<br /><br />A new discussion was started by Andres Serral in<br /><br />Developers --<br />  Panel contents overlap when using borderSkin style and layout=absolute<br /><br />This problem has been reported on several occasions<br />(http://bugs.adobe.com/jira/browse/SDK-14806)<br />and there are several articles that talk about this:<br />http://dougmccune.com/blog/2008/01/17/followup-about-flex-panel-bug/<br />http://dougmccune.com/blog/2008/01/12/calling-********-on-a-resolved-flex-bug/<br /><br />I´m not an expert but think I found a fix/workaround for this.<br /><br />frameworks\projects\framework\src\mx\containers\Panel.as<br />Must to be changed in the viewMetrics() method.<br /><br />Line:<br />973- if (FlexVersion.compatibilityVersion < FlexVersion.VERSION_3_0) 974- {<br /><br />Replace by:<br />        if ((FlexVersion.compatibilityVersion < FlexVersion.VERSION_3_0) || (getQualifiedClassName(border) != "mx.skins.halo::PanelSkin") || (getStyle("borderStyle") != "default") ) {<br /><br />________________________________<br />View/reply at Panel contents overlap when using borderSkin style and layout=absolute <a href=http://www.adobeforums.com/webx?13@@.59b51731><a href=http://www.adobeforums.com/webx?13@@.59b51731><br />Replies by email are OK.<br />Use the unsubscribe <a href=http://www.adobeforums.com/webx?280@@.59b51731!folder=.3c060fa3><a href=http://www.adobeforums.com/webx?280@@.59b51731!folder=.3c060fa3>  form to cancel your email subscription.

  • Repost:Use Page style feature for portlet

    All,
    How do i simulate the 'use page style' feature for a custom portlet ? Currently, I have to hard code the style.
    thanks

    The following is from one of the sample portlets (comments incl):
    Display the content of the portlet in the show mode.
    Use the wwui_api_portlet.portlet_text() API when generating the content of the portlet so that the output uses the portlet CSS.
    htp.p(wwui_api_portlet.portlet_text(
    p_string => 'Hello World - Mode Show'
    ,p_level => 1
    I assume this is what you are looking for--the level would be the Portlet Text level, and you could substitute a parameter.
    HTH!

  • I do NOT want to import styles to pages when I paste from another document.

    I do NOT want to import styles to Pages when I paste from another document.I do NOT want to import styles to pages when I paste from another document.

    fruhulda wrote:
    Then don't do it. Use Paste and Match style in the Edit Menu. You don't need to go by other applications which Niel suggested.
    It's not always the best soluce.
    Example:
    copy group of 3*3 cells from a Numbers table
    Paste in Pages gives a table with every style attributes.
    Paste and Match Style gives nine paragraphs of raw text, one by cell, exactly what we get when pasting in a TextEdit Rtf window and converting it to Text.
    Running my good old huge script :
    --{code}
    set the clipboard to the clipboard as text
    --{code}
    then Paste, gives three paragraphs with cell's contents separated by TAB characters exactly as what we get when pasting in a TextEdit Text window.
    Yvan KOENIG (VALLAURIS, France) lundi 27 juin 2011 14:42:23 iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • Tab page style

    hi
    i am using rich face components in my page.
    i have a page with a rich:tree component.
    on the click of each node, it show different tagPages.xhtml .this is done by getting the selected node from the backend and showing the corresponding page.
    And on the rich:tree reRendered attribute, i have given the id og the a4j:outputPanel, where the tabPage.xhtml is there.
    and when i run the page and click the tree node the tabPages.xhtml is coming.but the problem is that, the styles i have applied to the tab pages is not coming. when i run the pages individualy, the style is coming.
    wht is it like this????
    is it beacause i reRendered the component???
    plz help me.
    it woruld be a great hekp.
    thnkx and rgds

    I am not sure how this will help you, but i will share my experience
    I created a new 3.0.9.8.1 portal instance(development) and i migrated all users,groups,content areas,pages
    from production instance also on 3.0.9.8.1
    The pages were all set to the "Style for Public Home Page" and they did not respond to any change in the page style.
    We are not using Style for Public Home Page, hence i deleted the style. The pages now started using
    the actual styles associated with them.
    I also noticed that that our production instance has multiple copies of the same styles (which is as a result of bug in page import utility).
    After a few days i tried firing up the portal in Netscape 4.7, i got this error
    http://servername:7777/pls/portal30/PORTAL30.wwpob_app_style.render_css?p_style_id=5
    Not Found
    The requested URL /pls/portal30/PORTAL30.wwpob_app_style.render_css was not
    found on this server.
    The portal opens fine in Netscape 6.2 and all versions of IE.

  • How do you select all paragraphs using the same style in Pages 5.2?

    I'm trying to find how to select all paragraphs using the same style in Pages 5.2 without any success.  I writing a book and I need to able to adjust all my paragraph styles globally.  I see how upgrade my paragraph style when I do something new, but not how to revert back to the orginal template.
    For example, in my custom template for my book I have 12 font for a review questions paragraph style.  I changed the font size for all this paragraph style to 18 font.  Now I want to change it back to size 12 font.  But I have this paragraph style at the top and bottom of my document.  How to I select all of my review questions style so I can make the font change to all at the same time? 
    I just upgrade to Pages 5.2 from Pages '09. 
    Thanks for the help,
    Rob

    The Pages User Guide might help here.
    Better to post your topic in the Pages designated community > Pages: iWork: Apple Support Communities

  • How to simulate 'Use Page style' for a portlet

    All,
    How do i simulate the 'use page style' feature for a custom portlet ? Currently, I have to hard code the style.
    thanks

    uploaded gif under mime repository

  • Mozilla page is in No Style although I changed it into Basic Page Style so I can't see Themes

    I have installed Lion Family theme, and I updated Firefox to latest version today. After installing firefox to latest version, I could not see my theme so I tried to look for new theme but I could not see to pictures for the themes. I thought it is in No Style so I checked the Page Style but it showed me that the website is in Basic Page Style. So I tried to ask for help to Mozilla support and I also found that all Mozilla pages are in No Style but other websites such as Facebook, Apple and Youtube are in Basic Style. What's wrong with that?

    hello minpyaesone, please make sure that your system's clock is set to the right date, time and timezone: time.is

  • Managing Styles in Pages 5

    Hi,
    two questions regarding paragraph style management:
    1. Is it possible to combine numbering/bullets (list styles) with paragraph styles? Imo numbering should naturally be a styling element of a paragraph just like font size, weight etc...
    2. For a work-around to the above, is there a way to "select all paragraph X" text in a document? Previously it was possible to select for example all "Header 1" styled text through the styles menu and apply changes.
    I need to do some changes in a larger document and add numbering to all headline styles.
    Thanks for any help!
    p.

    1. No. Use Pages '09
    2. No. Use Pages '09
    Peter

  • Character styles in Pages 5

    Can't find Character styles in Pages 5. After a couple of hours of work I am about ready to jump back to Microsoft Word, which annoys me beyond belief. At least Pages 09/11 had Character styles, AND hot keys for styles (even if they were limited to F-keys).
    I use several different styles constantly through my documents, including character styles, and Pages 5 is letting me down BIG time.
    OK, it's cool to have object styles - I can dig that.
    BUT WHY ELIMINATE CHARACTER STYLES?
    Sorry for shouting.
    What a pity. Maybe the iWork software engineers don't actually work for Apple . . . yeah, that could be it. Or they don't actually USE the products they design.
    I encourage everyone to make liberal use of Apple's feedback page, http://www.apple.com/feedback/

    I posted this in another thread before I discovered this one:
    I just upgraded to Pages 5.
    I opened a document that I'd been working on in the previous version of Pages. It has several styles, incuding a bulleted list style called "main bullet".
    I attempted to apply that style to a section of text, and while it did indent the text properly, it did not add bullets. (Also, in the Style panel a bullet does not appear next to the "main bullet" style as it does in Pages 4. This was my first clue that something was wrong.)
    So I went back in the text to a bulleted list that uses the "main bullet" style. I selected the text, then went to the Style panel and chose "main bullet" > update style. This did not seem to help. The "main bullet" style still has no bullet next to it in the Style panel, and when I tried again to apply it to some text, the bullet doesn't appear.
    I decided to try a different style, in this case "body". I went to a section that has the "main bullet" style, selected it, and applied "body". The indentation changed, but it did not remove the bullet as it was supposed to.
    Is this a bug, or do styles work differently in Pages 5?
    It appears that styles do not include formatting like bullets, which, if true, is a huge problem.
    I was also upset to learn that once I've opened a document in Pages 5, I can no longer open it in Pages 4. So I'm essentially stuck with Pages 5 whether I like it or not.
    Is anyone else noticing this?

  • Yahoo home page doesn't display correctly. All my other sites are OK. Page style is set to "Basic Page Style. What else can be wrong?"

    Yahoo home page does not display properly, while all my other web pages do display correctly. I checked View, Page Style, and it is set to Basic Page Style. What else can be wrong?

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Youtube has no page style in Firefox, but works on all other browsers.

    Since yesterday I have not been able to use Youtube. Not only does the site itself have no page style, but Youtube videos embedded on other sites don't show up either. Youtube works fine on the other browsers I've tried (IE, Chrome, and Opera). I've already checked, I don't have page styles disabled for Youtube.
    == URL of affected sites ==
    http://youtube.com

    I have no idea what you're asking. How do I find out?

  • After updating numbers and pages I can no longer copy multiple cells from numbers and paste and match style to pages.

    After updating numbers and pages I can no longer copy multiple cells from numbers and paste and match style to pages.  I used to be able to select multipule cells in a row (such as company name, address, etc.) then paste and match style on to a pages letter. I found the paste and match style option in the edit menu, however it will only work one cell at a time. Before the update is was working great.

    For diagnosing purpose thy the procedure in a new user account and see if it works there. You create a new user account in the System Preferences > Accounts. If it works in the new account it is probably a corrupt plist file that needs to be deleted.

Maybe you are looking for

  • Since i updated the wifi on iMac internet runs slow

    Bought imac 27 inch 2.7ghz with 4gb ram last week - everything was running fine - super fast - i havent done anything of note on the computer - installed photoshop, trial version of word etc etc. I updated a few things yesterday - namely the wifi upd

  • Error message when installing Indesign CS3 trial. I need help ASAP

    I have searched the forums and adobe.com and have tried everything that I saw. None of it worked for me. I have tried and tried to install Indesign CS3 trial. I keep getting the error message: Indesign has encountered a problem and must close. I have

  • What does "save" do in MS Office 11 for the mac?

    I'm not sure this is the right forum to ask this in, but here goes: Using MS Office 11 for the mac, if I view mail in my inbox, and click "Save" in the file menu, what does this do? Where is the file saved? "Save As" is grayed out, so this doesn't wo

  • Data missing in PDF (external send - Medium 5)

    We have an output condition record (ZSOR) that is configured for Medium types 1(print) & 5(email PDF). When a sales order is saved ZSOR medium type 5 is automatically determine and the user who created the order (VBAK-ERNAM) receives an email with th

  • Administrator Error installing Air

    I have a Vista 64 bit machine with SP 2.  By clearing all of my Temp Folders and Deleting all the extra "old" Adobe Air entries in my Registry, I was able to install 2.7 without any issues.  You don't even have to be logged in as an Adminstrator (if