New portal theme from a custom style sheet

Hi,
I want to create a portal theme using custom CSS sheets. Is there a possibility?? Any documentstion or other pointers would be helpful.
Thanks,
Vineeth

Hi Vineeth ,
I will recomend you not to do that as there are loads of CSS which consitute and make the theme for the Portal .What, i would recomend is to create a theme using standard portal provided functaionality and then edit the css for giving some special effects.
you can find the CSS at
usr\sap\<sid>\<instance>\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\portalapps\com.sap.portal.design.portaldesigndata\themes\portal\sap_standard
usr\sap\<sid>\<instance>\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\portalapps\com.sap.portal.design.urdesigndata\themes\portal\sap_standard
Thanx
Pankaj

Similar Messages

  • Is it possible to change the color of a layer of a Customs CSS from an External Style sheet?

    Hi,
    I have sucessfully link External .css  file to my HTML page and able to change the font size of the headlines and the paragraph.
    What I am not able to do is to ADD the color my Custom CSS from the External sheet.  I have difined the color attribute as a 'Advance'
    and gave it the same name "#bigwraper" that is has in my HTML file.
    Attached is the color outline of my 'Blank Layout' with colors?
    Thank you.
    Dreamer101.1

    Hi Murray,
    I am building a web site on which the entire content would be changed at least daily. The website would have similar design to www.Helium.com
    The page will have CCS layout boxes in which different content would  be pasted.
    To re-phrase my question:  I want to know how to change the color of a layer from an external style sheet?
    Because my home page 'Sidebar' and colors would be the same for all page, only the content of different pages would be different.  If I want to change a color of my web side pages, I need to learn how to do it in one spot through an External Style Sheet.
    I am amble to link my external style sheet and to change H1 tag and to give it different colors. But I was not sucess with change the color of a layer on which my content sits around.
    I took out the color from my HTML page and gave the same name to the layer in my External Style Sheet with the same color.
    Hope my question and the reason I was able to clarify.
    cheers,
    Dreamer101.1

  • Numbered List and Bulleted List w/ Custom Style Sheet

    Hi,
    I am a new user to RoboHelp 7, and must say I find it useful
    but also painful to use. Currently I’m trying to solve
    something that feels like a bug in RoboHelp 7, but before I give in
    and accept defeat I wanted to check with the forum.
    I have FrameMaker 8, and import the files to RH where I use
    them to create WebHelp projects.
    Here’s a short procedure:
    1. I Import my files with a predefined style sheet matching
    the FM styles.
    2. I also check the Convert to HTML list option and set all
    numbering and bullet styles to User defined.
    - After import RH does the usual thing and creates a bunch
    of style sheets on its own
    3. I select all the files from the Topic List pod and apply a
    new custom style sheet. This enables me to have one style sheet for
    all the HTML files with the right layout and formatting
    4. I generate the output, and RH uses the new style sheet
    reference
    The resulting HTML files shows that the output is not the
    same as the generated HTML shown in RH’s HTML editor view
    - Editor view: <li class=”style”>
    - Browser view: <li>
    6. If I make a change (e.g. add a space) and save the HTML
    file, and generate the project again the HTML is correct in the
    browser
    One could argue that it’s not a big problem; however,
    with a large project this is starting to look more like a nightmare
    Does anyone know of this problem, and if so can it be fixed?
    Kind regards,
    Jon

    Is this the time when I get really angry at Adobe for creating the worst FrameMaker/RoboHelp integration ever? No! However, I must admit that I'm amazed that they are unable to solve an important feature as conversion of lists from a FrameMaker document to a RoboHelp WebHelp project. When I say conversion I mean a clean conversion with minimal interference from RoboHelp that allows me to use CSS to its full extent.
    Here's the problem, and this was also the problem with RoboHelp 7 and FrameMaker 8. BTW, I use standalone versions (not TCS 1 or 2).
    Figures: First image depicts FrameMaker 9's Paragraph Designer and the Autonumber format for a paragraph named VizNumbered. Second image depicts the RoboHelp 8's conversion setting.
    FrameMaker uses Autonumbering in front of paragraphs to create lists. This means that you in RoboHelp need to manage two formats, the autonumber and the paragraph style.
    RoboHelp does of course not (by default) use Autonumbering in front of paragraphs because a RoboHelp WebHelp project is HTML based, and list tags in HTML can perfectly handle any formatting of text etc.
    RoboHelp will convert, when "Convert Autonumber to HTML List" is selected, the Autonumber in FrameMaker to a list tag (LI). By default this will generate a list with a lot of margin, font and other CSS properties that tries to simulate the way the list is laid out in the FrameMaker document. In addition to the list tags it will convert the FrameMaker paragraph to a P tag which it inserts within a list tag. The issue you will experience with this is that indentations with the paragraph tag does not align properly between line 1 and 2. At the same time the WebHelp project will not look the same in IE, Firefox or Chrome. That is, Chrome and Firefox will look the same, and IE different. IE has the WYSIWYG feel, but it does not comply well with W3C standards (i.e. using P tags enclosed by LI tags is not a good idea ...).
    Selecting "Convert Autonumber to RoboHelp List" does something similar, but is not recommended at all!
    So, here's the big question. How can I make sure RoboHelp understands that I ONLY need to define a list tag with a CSS class attribute attached to it?
    Today I basically only get the following:
    <li><p class=""></p></li> or,
    <p class=""></p>
    What I want is the following:
    <li class=""></li>
    Can this be solved with today's versions, can anyone help me, or do I have to wait for the Adobe development team to realize this and to fix it?

  • Custom style sheets

    hi,
    I want to create custom style sheets which has some new styles that I can specify but these styles use the styles from blaf.xss and i can overwrite the properties of those styles!
    I was successful in overwriting the blaf styles but I want to have my own style tags. I just want to have different names because, right now if I want to change the background color of a <rowLayout> I had to use the styleClass="OraBgColorDark" in the <rowLayout> tag which inturn uses the <style name="DarkBackground" > and in my custom.xss i had to overwrite the <style name="DarkBackground" > and provide a property called "background-color" with a certain color that I wanted. But what if did this
    <style name="MyColor">
          <!-- this is from the balf -->
          <includeStyle name="OraBgcolorDark">   
          <property name="background-color">#FFFFC0</property>
        </style>In the rowLayout i could specify the styleClass like this styleClass="MyColor"!!!
    I tried it but didn't get it to work. Can anyone suggest me the possible reasons or how I can reach my goal to have a stylesheet that has its own new tags that i could use?
    regards,
    raj

    please disregard the post. Read the Jdev doc a bit more and found the solution.
    regards,
    raj

  • How to open NEW PORTAL PAGE from current portal page ?

    I'm very confuse with my problem.
    I have 2 portal page.
    portal page I has 2 portlet : portlet A & portlet C.
    portal page II has 2 portlet : portlet B & portlet C.
    Now my customer want : start with portal page I, when i submit portlet A, program will open portal page II.
    I don't know the way to call new portal page from current portal page. Help me, please.
    Thanks.
    Edited by: young_hero on Oct 30, 2008 1:12 AM

    Could you please help me how to call a .html page
    from a Pl/Sql procedure or trigger ?
    Thanks & Regards
    Kalyani KothaKalyani,
    Could you explain a little more exactly what you're trying to acheive? I'm not quite sure what it is you're asking for. Are you asking: "how would you/can you open a browser and direct it to a URL with PL/SQL?"
    Earl

  • New Portal Theme not showing up in list

    Hello fellow experts,
    I'm using EP 7 sp10...I've created a new portal theme, it shows up on the Portal Display page, under my Themes, however it does not show up in the drop down list (Content admin/Portal Content/portal users/standard portal users/every user core role) as an option for a portal theme...
    Please advise!
    Sincerely,

    Hi Scott,
    Please very these steps,
    Themes:
    System Administration
                  -->
             Portal Display
                            -->
                        Theme Editor 
                                  -->
                              Choose a Theme
                                          -->
                                          Make Changes
                                            If Any
                                                     --> Save It
                                                                -->
                                                                Desktop and
                                                                 Display Rules
                                                                          -->
                                                                          Portal Content                                                                               
    --->
                                                                          Portal Users
                                                                          <--
                                                                 Standard Portal
                                                                       Users
                                                                 <--
                                                            Copy [Default Frame
                                                             Work Page & Desktop]
                                                        <--
                                              Paste it In a New Folder
                                            Rename the Desktop
                                           <--
                                             1).Open The Renamed Desktop
                                             2). Open Folder Themes (sys) and R.C
                                             3).Add theme to DESKTOP.
                                             4) Save it.
                                             <--
                                     Open ->portal Admin -> SuperADmin
                                  <--
                          Open -> Master Role Collection
                          <--
                    Select a Role/user/group from Master Role Collection
                 <--
              R.c on Renamed Desktop and “add Portal Desktop To Expression".
            <--
       Open Renamed Dektop,Select the theme,
        <--
      Hit the Button "Set Default" (save)
       <--
    Logoff and Logon the Portal Page.
    Regards,
    Ramganesan K.

  • Is Custom Style Sheet Working?

    I'm trying to use a custom style sheet, in order to block ads, but I don't think it works in this version of Safari. (on OS X 10.4, I use a custom CSS file and it works great.) In the Windows beta, it does nothing.
    I even tried a simple custom style sheet to hide all images:
    img { display: none ! important }
    and set that, but all image still display.
    So, is it broken??

    Cool! That does work.
    Except...
    I had downloaded the nightly Webkit build for Windows (nightly.webkit.org) - which btw has the nifty "inspect Element" menu item enabled!
    But - that doesn't like the custom style sheet - Safari would crash every time I tried to load a page that had some element that would have been blocked. I even tested it with a simple custom stylesheet that just has:
    img { display: none ! important };
    At least I don't have to wait long to try it with a new Nightly build!

  • Km/docs/etc/wpceditor/css/runtime/ is using all custom style sheets(runtime

    Hello ,
    I am using km/docs/etc/wpceditor/css/runtime/File.css for web content where File.css is a custom stylesheet. This works fine. If I upload more than one custom style sheets, all of them are simultaneously used even though am only referencing one style sheet in the custom JSP layout. How can I use only one custom style sheet that I reference in my JSP layout:
    <LINK REL="stylesheet" HREF="irj/go/km/docs/etc/wpceditor/css/runtime/File.css" />

    Hi Vishal,
    Can you be more specific when you said
    "But if some styles does not match in that specified css Then it will refer the other css present at runtime folder."
    In my case,am using 3 custom style sheets(File1.css, File2.css, File3.css). At run time, all my pages are using all 3 style sheets, even though, I have referenced only one stylesheet in the JSP layout:
    <LINK REL="stylesheet" HREF="irj/go/km/docs/etc/wpceditor/css/runtime/File1.css" />
    Thanks for your response.

  • How to add new Portal Theme to Default Portal Desktop

    I created a new Portal Theme and now I want to add it to the default portal desktop.  Here are the steps I am following:
    1. System Administration-> Portal Display -> Desktops and Display Rules
    2. Open the default portal deskop under Portal Content->Portal Users->Standard Portal Users->Default Portal Desktop.  Right-click and select Open->Object
    3. My new Portal Theme does not appear in the list of available portal themes to choose for the default.
    Please tell me what I have to do so that the portal theme I created appears in the list.
    Thanks.
    Ryan

    Hi,
    You can check the actual users desktop by checking the Portal Display Rules:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/4b/29cf122f414721964269e1b675d62c/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b2/cf65869fb64552be09e46516dd8062/frameset.htm
    Also check this:
    How to assign a Portal Display Theme to a user
    Regards,
    Praveen Gudapati

  • How to create new portal desktop from scratch

    Hi Experts,
    I want to create a brand new portal desktop from scratch. Could you please let me know how to go about it?
    Regards,
    EP

    Hi,
    Please check out this document it will help you in creating portal desktop from scratch:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/ep/_a-c/creating%20new%20portal%20display%20rules.pdf
    Hope it helps.
    Thanks
    Mona
    Assign points if helpful

  • How to include custom style sheets in BI 7 WAD (Web Reports)

    Hi,
    I have WAD in 3.X, where I have used custom stylesheets. Now I need to use the same style sheets of 3.x development in BI 7 WAD.
    How do i achieve this?
    Regs, Arka

    Hi,
    Stylesheets cannot be included via the Web Application Designer for BI 7.0 web templates. You need to use the Theme Editor of the Portal instead. Please refer to the documentation:   
    http://help.sap.com/saphelp_nw70/helpdata/de/f4/bb7a3b688d3c1de10000000a11402f/frameset.htm
    Best regards,
    Janine

  • Using custom style sheets in R12

    Hi,
    I am trying to deploy a solution from Anil Sharma to Restrict user to enter data in CAPS ONLY. http://oracleanil.blogspot.com/2010/10/restrict-user-to-enter-data-in-caps.html
    However i am not able to do so. I can't find the file custom.css. But I do find a file called $OA_HTML/cabo/styles/custom.xss. And all css files seems to be in $OA_HTML/cabo/styles/cache/
    I tried altering this file like this:
    <?xml version="1.0";?>
    <!-- $Header: custom.xss 120.45 2005/06/13 09:36:19 atgops1 noship $ -->
    <styleSheetDocument xmlns="http://bali.us.oracle.com/cabo/ocelot">
    <import href="oa.xss";/>
    <styleSheet>
    <!-- Please start your customizations here -->
    <style name=".XXOraFieldUpperCase">
    <property name="text-transform">uppercase</property>
    </style>
    <!-- Please end your customizations here -->
    </styleSheet>
    </styleSheetDocument>
    I noticed that there was generated a new css file under $OA_HTML/cabo/styles/cache/ afterwards.
    Then I personalized the css style of my field to be XXOraFieldUpperCase.
    But still I am not forced to use Upper case in that field.
    Any suggestions?
    Thanks JaddaMasa

    ...but now the following line is found in the file swan-desktop-custom-2_3_6_5-en-ie-windows.css:
    .XXOraFieldUpperCase,.xav {text-transform:uppercase}
    I hope this is a step in the right direction :-)
    --JaddaMasa                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Show and Share custom style sheet

    Is it possible to install a custom css on Show and Share? How can I do it?
    We have our own style sheet con our company's Look&Feel
    Thanks
    Manuel Blanco
    Sent from Cisco Technical Support iPad App

    Hi Manuel,
    At the moment, the Show and Share allows you to customize colors, background image and company logo.
    Installing a custom CSS would be an interesting Enhancement Request, I would recommend you to follow up with your Cisco Account team on this.
    Regards,
    Marco

  • New to CSS! Attach a Style sheet to exsisting website

    Hi
    Im self taught so I need help in a really basic style please!!
    Ive got a website which Ive made my self, learning via youtube etc!! Im trying to figure out the css business!  After ALOT of trial and error I think im slowly getting to grips but I could do with a little help!
    Basically what I THINK Ive been doing is adding styles to a single page, and Ive found that I can now carry on the styles via copy and pasting the css code from the top of each page and pasting in the next page individually.. BUT I suspect the proper way of doing this would actually be to set up a separate style sheet which applies to the whole website, However, A) im not sure how to do this, and B) My site is working OK at the mo, so will this mess up the site if its added AFTER the site is already working?
    Idiot proof answers please! x

    Hi Every one,
    I just want to say a really really really big thank you! with your help I have now got the basics of css! It seems so simple now, but when I first tried is was REALLY daunting and I couldnt figure it out, I just needed a little point in the right direction,!
    I dont know if you get paid for the help for if you just to do it to be nice, but I just wanted to say a great big thanks to every one above! Your help and patience is very much appriciated!
    THANK YOU!

  • Importing Custom Style Sheets Into UiXML

    Is there any documentation on importing custom stylesheets (.css files) into UIXML. Has anyone one done this or know of a workaround if it cannot be done?
    Tks,
    Booker Northington II

    Hi Booker -
    Thanks for the clarification. Here is a sample which shows how to import a custom CSS style sheet into a UIX document using the HTMLWebBean:
    <?xml version="1.0" encoding="UTF-8"?>
    <page xmlns="http://xmlns.oracle.com/uix/controller"
    xmlns:ui="http://xmlns.oracle.com/uix/ui"
    xmlns:html="http://www.w3.org/TR/REC-html40">
    <content>
    <document xmlns="http://xmlns.oracle.com/uix/ui">
    <metaContainer>
    <head>
    <contents>
    <html:link rel="stylesheet" type="text/css" href="mystyles.css"/>
    </contents>
    </head>
    </metaContainer>
    <contents>
    <body>
    <contents>
    <styledText styleClass="myStyle" text="Hello, world!"/>
    </contents>
    </body>
    </contents>
    </document>
    </content>
    </page>
    Note: The <html:link> element inserts the HTMLWebBean which references the custom CSS file. We can then use styleClass="whatever" to reference the custom styles.
    Andy

Maybe you are looking for

  • Can I send a fax direct from scanning

    I recently bought a HP Photosmart 7510 and have now used up the "Setup" cartridges. I have purchased 4 cartridges and am awaiting the Photo black cartridge. It would seem that until I replace the cartridge, I cannot get to the home screen. Which mean

  • Users cannot publish and get error message

    Hey everyone. This one is stumping us here at the office. Some clients have been having a problem publishing things they have worked on from both their home AND their office. The error message they have been getting is quote: Contribute encountered a

  • IPhone no longer compatible with car audio

    Since upgrading to iOS8 my phone defaults to "repeat all" whenever an external audio device is plugged in such as the car. Previously it started playing as soon as plugged in. Now in freezes until I unselect "repeat all". iPhone  5 &  BMW iDrive.

  • EnumServicesStatusEx failing with ERROR_INVALID_DATA

    Hi all, After accidentally creating a service with a display name and service name of "-1", EnumServicesStatusExW() begins to fail in an unexpected, undocumented manner. MSDN states the buffer size required can be queried by passing NULL for lpServic

  • Is it possible to debug the selection screen???

    Hi Frdz, Is it possible to debug the selection screen. eg: if i want to know what is happening in PBO and PAI modules of the selection screen i am not able to debug that. Even in code if i click on MODULES present in PBO and PAI modules it is saying