Customize look and feel

I am looking to customize the look and feel of Collaboration Suite namely the page banner and colours for all users (global settings not individual settings). However I cannot find a way to edit the OCS_V2_PAGE_BANNER.

Can you detail your steps on how you are trying to change this? Also, who are you logged in as?
Here are the steps:
Log into the portal page with the admin account.
Select Builder
Select Navigator
Click on the Contents link for OCS_V2_Page_Group section under Page Groups
Click on Navigation Pages
Click on the Edit link to change the OCS_V2_PAGE_Banner.
To change the colors, you can click on the Customize link on the top right hand corner of the page.
Choose the style tab and then change the style you want to change it to.
Let me know if this help.
Ian

Similar Messages

  • EBS customize Look and Feel

    I'm looking at changing the look and feel or design of the pages in E-Business Suite. I have learned some ways on how to go about it. But First I need to download all the files (.xml, .uix, .class, .jsp) related to EBS.
    Now where do i get these files or what folders do i get those files?
    anyone who has tried to do this also..
    regards,
    anton

    Hi,
    I'd suggest you to read the "OA Framework Personalization Guide" and the "OA Framework Developer's Guide" docs.
    You can find them on Metalink (#268969.1 and #269138.1).
    Hope this helps you.
    Bye
    Raffy

  • Create or Customize a look and feel

    I'd like to create my own java look and feel and I wonder if a tool that allows to create or customize my laf exists ? What's the better or faster way to do so ?

    LookAndFeel lf = UIManager.getLookAndFeel();
             // Install a different look and feel; specifically, the Windows look and feel
             try {                         //com.sun.java.swing.plaf.windows.WindowsLookAndFeel
                                            //javax.swing.plaf.metal.MetalLookAndFeel
             UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
             } catch (InstantiationException e) {
             } catch (ClassNotFoundException e) {
             } catch (UnsupportedLookAndFeelException e) {
             } catch (IllegalAccessException e) {
             }

  • How to customize the title bar on my own Look And Feel?

    Hi all!
    I am creating my own Look and Feel which extends from NimbusLookAndFeel. What I'm doing is overwriting UIDefaults values??, referring to the Painters. For example:
    +uiDefault.put ("Button [Enabled]", new ButtonEnabledPainter());+
    But now I need is to customize the title bar of the JFrame's, but I do not see this option in Painter's values ??can be overwritten by Nimbus (http://docs.oracle.com/javase/tutorial/uiswing/lookandfeel/_nimbusDefaults . html).
    You know as possible? I have to overwrite an existing UI component? The idea is I want to make the look and feel like SeaGlass, but the code seems a bit complex to know where to begin.
    I hope you can guide me on this issue.
    Thank you very much for everything! And excuse my English!.
    Greetings!

    very simple example, with direct methods
    import java.awt.*;
    import java.awt.event.*;
    import java.util.LinkedList;
    import java.util.Queue;
    import javax.swing.*;
    public class NimbusBorderPainterDemo extends JFrame {
        private static final long serialVersionUID = 1L;
        private JFrame frame = new JFrame();
        private JPanel fatherPanel = new JPanel();
        private JPanel contentPanel = new JPanel();
        private GradientPanel titlePanel = new GradientPanel(Color.BLACK);
        private JLabel buttonPanel = new JLabel();
        private Queue<Icon> iconQueue = new LinkedList<Icon>();
        public NimbusBorderPainterDemo() {
            iconQueue.add(UIManager.getIcon("OptionPane.errorIcon"));
            iconQueue.add(UIManager.getIcon("OptionPane.informationIcon"));
            iconQueue.add(UIManager.getIcon("OptionPane.warningIcon"));
            iconQueue.add(UIManager.getIcon("OptionPane.questionIcon"));
            JButton button0 = createButton();
            button0.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    frame.setExtendedState(ICONIFIED);
            JButton button1 = createButton();
            button1.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    frame.setExtendedState(MAXIMIZED_BOTH | NORMAL);
                }//quick implemented, not correct you have to override both methods
            JButton button2 = createButton();
            button2.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    int confirm = JOptionPane.showOptionDialog(frame,
                            "Are You Sure to Close Application?", "Exit Confirmation",
                            JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE,
                            null, null, null);
                    if (confirm == JOptionPane.YES_OPTION) {
                        System.exit(1);
            buttonPanel.setLayout(new GridLayout(0, 3, 5, 0));
            buttonPanel.setPreferredSize(new Dimension(160, 30));
            buttonPanel.add(button0);// JLabel is best and cross_platform JComponents
            buttonPanel.add(button1);// not possible put there witouth set Dimmnesion
            buttonPanel.add(button2);// and LayoutManager, work in all cases better
            titlePanel.setLayout(new BorderLayout());//than JPanel or JCompoenent
            titlePanel.add(new JLabel(nextIcon()), BorderLayout.WEST);
            titlePanel.add(new JLabel("My Frame"), BorderLayout.CENTER);
            titlePanel.setBorder(BorderFactory.createLineBorder(Color.GRAY));
            titlePanel.add(buttonPanel, BorderLayout.EAST);
            JTextField field = new JTextField(50);
            JButton btn = new JButton("Close Me");
            btn.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    System.exit(1);
            contentPanel.add(field);
            contentPanel.add(btn);
            fatherPanel.setLayout(new BorderLayout());
            fatherPanel.add(titlePanel, BorderLayout.NORTH);
            fatherPanel.add(contentPanel, BorderLayout.CENTER);
            frame.setUndecorated(true);
            frame.add(fatherPanel);
            frame.setLocation(50, 50);
            frame.pack();
            frame.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
            frame.setVisible(true);
            ComponentMover cm = new ComponentMover(frame, titlePanel);
            //by camickr http://tips4java.wordpress.com/2009/06/14/moving-windows/
        private JButton createButton() {
            JButton button = new JButton();
            button.setBorderPainted(false);
            button.setBorder(null);
            button.setFocusable(false);
            button.setMargin(new Insets(0, 0, 0, 0));
            button.setContentAreaFilled(false);
            button.setIcon(nextIcon());
            button.setRolloverIcon(nextIcon());
            button.setPressedIcon(nextIcon());
            button.setDisabledIcon(nextIcon());
            nextIcon();
            return button;
        private Icon nextIcon() {
            Icon icon = iconQueue.peek();
            iconQueue.add(iconQueue.remove());
            return icon;
        private class GradientPanel extends JPanel {
            private static final long serialVersionUID = 1L;
            public GradientPanel(Color background) {
                setBackground(background);
            @Override
            public void paintComponent(Graphics g) {
                super.paintComponent(g);
                if (isOpaque()) {
                    Color background = new Color(168, 210, 241);
                    Color controlColor = new Color(230, 240, 230);
                    int width = getWidth();
                    int height = getHeight();
                    Graphics2D g2 = (Graphics2D) g;
                    Paint oldPaint = g2.getPaint();
                    g2.setPaint(new GradientPaint(0, 0, background, width, 0, controlColor));
                    g2.fillRect(0, 0, width, height);
                    g2.setPaint(oldPaint);
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
                @Override
                public void run() {
                    try {
                        UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel");
                    } catch (Exception fail) {
                    UIManager.getLookAndFeelDefaults().put("nimbusFocus", Color.RED);
                    NimbusBorderPainterDemo nimbusBorderPainterDemo = new NimbusBorderPainterDemo();
    }

  • Customize the look and feel through CLAF

    Hi...
    anyone has a detailed document about Customize the look and feel through CLAF
    if you just can give me a link
    thanks

    Ckeck out in OAF Personalization guide CLAF section under "Personalizing OA Framework Applications"

  • JFrame look and feel

    Hi everybody,
    I'm a beginner in working with Java Look and Feel. I want to customize a frame's title bar, border and buttons. For example I want to put some other icons for the close, minimize and maximize button, change the height and color of the titlebar, and put some other border to the window.
    My question is if I can do this by modifying the LAF. Maybe somebody can give me a link to some good and detailed documentation regarding LAF.
    Thanks.

    Hi,
    You have a better chance to get your question answered if you post this in the Swing forum. (Do also mention that it is a cross-post, and provide a link to this thread)
    Kaj

  • Customisin Look and Feel

    I am still in the process of "finding my feet" when it comes to programming with Java, and as a result need a little guidance.
    Could anyone please tell me of a good place to find information that offers tutorials or good explanations of how to customize the look and feel of JComponents in swing.
    Much appreciated,
    Craig.

    Take a look at the java source code for the SwingSet2 demo that comes with the java plugin...it's exactly what you need.

  • Portal look and feel?

    Hi,
    Can someone please direct me to threads/wiki/blog/sap help for customising portal look and feel like company branding logo and colour themes etc..  I have to a requirement to match SAP Portal interface to look like existing company intranet web site. 
    Also please let me know how can I transport these portal setting once configured to different environment (QA and PRD).
    Thanks
    Praveen.

    Hi Praveen,
    The questions you asked have been posted many a times before. Do search and if you dont get any good results then you may always post.
    As for know do refer to the following links:
    MastHead Change & Portal Desktop
    Portal Customizations Intro - Login Part 1
    Portal Customizations Intro - Login Part 2
    Portal Customizations Intro - Look&Feel Part 3
    http://wiki.sdn.sap.com/wiki/display/EP/LookandFeel
    For more information of Themes, Transporting themes - http://help.sap.com/saphelp_nw70/helpdata/en/f4/bb7a3b688d3c1de10000000a11402f/frameset.htm
    Thanks,
    GLM

  • HTMLB or html - when we need full control of look and feel and events

    Hi Experts,
          In my requirement i  need to change the look and feel of the BSP UI as per customer standards and i need to have most of my processing on client side, Please advise me whether to go for HTMLB or normal HTML. mainly i fount most of the client side events are not available in HTMLB....
    Thanks in advance
    Karthik

    Hi Karthik,
    The look and feel of the BSP Tags can be applied via Portal. If you are seeing your BSP application through a protal system, then you can develop a theme inside the portal and apply it to your BSP application. The portal theme will be automatically supported by the HTMLB tags. For more infomation on this you can search in the portal forum section, you will find a lot of post for this topic.
    But if you need a complex customization of the UI controls inside the BSP application, as suggested in the previous post you should go for HTML + Javascript library.
    Hope it is helpful!
    Regards,
    Maheswaran

  • How to change the R/3 transac Look and feel in portals

    Hi Experts......
    How to change the look and feel of the R/3 transactions in portals.....
    I need to change the color of the screen display and nodes.
    Is there any easier way to do that....Kindly provide the inputs...
    Thanks in Advance,
    Jasmine

    Hi Jasmine,
    generally you have to "Theme Editor" in the portal which allows top level customization of design elements/ colours for the R/3 applicatins to be integrated into the portal.
    Changed designs on a deeper levels for ITS can be done with SAP@Web Studio. Kindly check the help for further information.
    Hth,
    Michael

  • Modifying Quiz look and feel

    This question has likely been asked before, but I did a
    search of the forum and couldn't find a specific posting. My
    company has just purchased me a copy of Captivate 2, so some of it
    is a bit new to me.
    My question is....
    Can the visual components of a quiz slide (such as the button
    style) be modified directly in Captivate 2? I get how to modify the
    player controls, but can't seem to find any files where I can do
    the same to quiz slide components.
    If I can not do this directly in Captivate, would I be able
    to do this without breaking anything, by exporting a project to
    Flash?
    The company I work for would like to customize (think
    "branding") the Captivate generated controls and general look and
    feel of a finished project. This would be so that different, less
    technical developers, could create materials that had the same
    style.
    Any resources anyone can point me toward would be
    appreciated.
    Thank you,
    TPK

    Colin Martin wrote:
    I agree the leather look is horrible. It's just not a reflection of the cutting edge modern design we have all got to love over the years. If it has to be there at least give us a choice of looks.
    There is a word for this (not that one) - skeuomorph. Wikipedia defines this as 'a derivative object that retains ornamental design cues to a structure that was necessary in the original. Skeuomorphs may be deliberately employed to make the new look comfortably old and familiar'.
    Common examples are found in audio software with pictures of actual knobs that you turn, as here; and the leather-bound tear-off look of calendar and contacts on the iPad is the same principle: the intention is to make it familiar and friendly to people who might otherwise be frightened off by a modern look because they are not used to modern technology. The whole concept and look of the iOS operating system is being brought into use on Macs for the same reason, to encourage non-tech-savvy people not to be frightened of them.
    This is all very well in its way, but in these two particular cases the result is unfortunate, particularly for experienced users, and it really ought to be possible to choose between the looks (as you can with the Mail layouts), even if the skeuomorph is the default.

  • JSP Tags Look and Feel

    I want to customize the look and feel ( fonts , BG colours , Layout etc ) of the pages rendered for the
    wizard and dialog tags like FormatCustomizer , CrossTabOptions , CalcBuilder etc, in BI Beans 9052 . How can this be achieved ?

    Hi,
    If you are using the BI beta release please use the beta forum to ask your questions.
    BI Beans PM

  • Customizing Look and Feel

    Is there a way to customize the "look and feel" of the OID webtool?
    Also, is there any way to change what is displayed as a result of performing a search? Specifically, I'd like to extend the searchable fields to include businessCategory.
    Any help would be greatly appreciated.

    Hi,
    I assume you are talking about the OID in iAS 9.0.2 and on this release it's not possible.
    It should be possible in 10G, but I'm not sure.
    We gave up and has developed our own GUI's for the OID application.
    Steffen

  • Change Portal Look and Feel

    Experts,
    How to Change Portal Look and Feel u2013 Branding. (Basic Knowledge of JSP and HTMLB required) ?...
    Please provide me some link i will be thankful to you guys.
    Thanks
    Nityanand Arya

    Hi
    refer to the following links:
    [MastHead Change & Portal Desktop|MastHead Change & Portal Desktop]
    [Portal Customizations Intro - Login Part 1|MastHead Change & Portal Desktop]
    [Portal Customizations Intro - Login Part 2|Portal Customizations Intro - Login Part 2]
    [Portal Customizations Intro - Look&Feel Part 3|Portal Customizations Intro - Look&Feel Part 3]
    For Portal Themes refer this[http://help.sap.com/saphelp_nw70/helpdata/en/f4/bb7a3b688d3c1de10000000a11402f/frameset.htm|http://help.sap.com/saphelp_nw70/helpdata/en/f4/bb7a3b688d3c1de10000000a11402f/frameset.htm]
    Cheers
    Chinmaya

  • Customizing Look and Feel -- examples

    Greetings
    I recently started looking into how I could customize a Skin that was more suited for the particular users of Oracle, one to replace the standard blue Swan.
    The first steps were well document and I managed to edit the general look and feel. However, a practical example of how to change a particular component would do a lot to help me understand and implement other less general changes.
    I Wanted to change the color of the text for SNAV.Menu and SNAV.Fav within GlobalHeader
    I was able to change this in file "OAFSlideoutMenu.css" which is under $OA_HTML/cabo/styles ... but then it changes for all Skins, the default swan as well.
    Can anyone provide an example of how to change this by using my "[custom]-desktop.xss" file ?
    I appreciate the assistance!

    Hi,
    I assume you are talking about the OID in iAS 9.0.2 and on this release it's not possible.
    It should be possible in 10G, but I'm not sure.
    We gave up and has developed our own GUI's for the OID application.
    Steffen

Maybe you are looking for

  • How to Increase the 15 Minute Idle Timeout?

    I saw some similar posts to increasing the EM timeout, but they didn't seem to relate to the idle timeout period. I need to increase the idle timeout from 15 minutes to something more like 30 minutes. A lot of times, I'll be editing a package with 10

  • Unable to use WriteBack function in OBIEE on a Unix setup

    Hi All I am trying to implement the writeBack function in OBIEE. We have OBIEE installed on a Unix machine. Below is the xml that I have writte, it keeps erroring stating that the xml file cannot be read. <?xml version="1.0" encoding="utf-8" ?> <WebM

  • Menu bar location

    Hello All: I am using JMenuBar to create a menu bar, and the menu bar is supposed to be displayed by an applet. Could someone tell me how the menu bar can be relocated? In other words, I would like to move around the menu bar and to be able to change

  • Stalled boot

    Hi Ive had a read through the various approaches to dealing with booting and im still stuck with a stalled screen; the grey apple with the loading icon. I tried safe mode and single user mode to no avail. I havent added anything to my computer lately

  • AppleScript Bug: Duplicating stacked images to albums

    for anyone else using AppleScript, I encountered this bug a couple of nights ago. I've reported it to Apple. 14-Feb-2009 02:14 AM Gregory Charles Rivers: Summary: The Aperture/AppleScript "Duplicate" command when used to add stacked images to albums