Removing the title bar

Hello,
I saw in an earlier post that it is much easier to remove the title bar
in 2.0 and that how to do it is in the documentation. Where would this
be documented? All I've figured out how to do so far is make the title
bar, title text, and banner bar be the same color as the background. So
they look invisible, except there is an icon that shows up even though
there is no reference to an icon.
Thanks,
Leila

Hi Leila.
If you edit your portlet through the admin tool - just don't specify a
title bar url or delete the one that is there. This will get rid of the
title bar.
Cindy
Leila Schneberger wrote:
Hello,
I saw in an earlier post that it is much easier to remove the title bar
in 2.0 and that how to do it is in the documentation. Where would this
be documented? All I've figured out how to do so far is make the title
bar, title text, and banner bar be the same color as the background. So
they look invisible, except there is an icon that shows up even though
there is no reference to an icon.
Thanks,
Leila

Similar Messages

  • How do I remove the title bar from a Palm PDA front panel?

    On several PDA screens, I need all the real esate I can get. The title bar chews up a lot of it.  Is there any way, in the vi settings or programmatically, that I can remove the title bar?
    I've already tried the obvious step of unchecking "window has a title bar" in the window appearance catagory of the vi properties.  No apparent effect is seen.

    Hello,
    It sounds like you are referring to the GUI actually on your Palm devices.  I believe on Palm devices all applications have a title bar, and there isn't a way to get rid of it.  My guess is that perhaps this is a feature you can enable/disable as a Palm OS setting, or may simply be the way the Palm has defined its user interface.  If you have your Palm devices handy, check out the display settings to see any has an option to remove the title bars in general.  If you find out either way, definitely repost so the community can find the answer here as well!
    Thank you,
    Best Regards,
    JLS
    Best,
    JLS
    Sixclear

  • How to remove the title bar of a frame(java.awt.Frame)?

    How to get a frame without any TitleBar?

    setUndecorated(true);
    This also gets rid of the minimize, normalize, and close buttons from the upper right corner of the screen--so have a way to close and resize if you need it.
    btw: do you know how to bring up the API docs?

  • Hiding the Title Bar

    is there any way to hide the title bar in the frame or dialog.
    This is because i dont want the user to close the window from the title bar by right clicking it or clicking the X.

    Both Frame and Dialog have the method below which removes the title bar and border. JFrame and JDialog inherit this method.
    public void setUndecorated(boolean undecorated)

  • Remove (Private Browsing) in the Title bar

    When in Private Browsing mode is there any way to remove the identifying text in the Title bar?

    Enter Private Browsing mode this way and close and restart Firefox (File > Exit) by starting Firefox automatically in Private Browsing mode.
    To see all History settings, choose: Tools > Options > Privacy, choose the setting '''Firefox will: Use custom settings for history'''
    Check: [[ ] "Automatically start Firefox in a private browsing session"
    See also [[Private Browsing|#Always_start_Firefox_in_a_private_browsing_session|Always start Firefox in a private browsing session]]

  • To remove grey title bar in Forms 9i

    I am using a Form(Forms 9i services), but when running it using named configuration on WIN2K env., I am getting the typical grey title bar with 'Window' written on extreme left and 'ORACLE' on the right. Can I remove this title bar.
    Which files I have to change for Customisation.
    Regards,
    Gaurav Srivastava

    mt22 wrote:But what do you mean when you say that if I remove the titlebar later I'll end up with race conditions?
    Well, you added a titlebar for all windows (this is done through the "manage" signal). Plus, using "rules", you removed the titlebar for some windows. So your code tried to do something like this:
    A new window spawns.
    ["manage"] Add a titlebar.
    ["rules"] Remove the titlebar for some windows.
    Are you sure that this always happens in this particular order? I am not. Maybe something like this happens instead:
    A new window spawns.
    ["rules"] Remove the titlebar for some windows (ouch! there is none!)
    ["manage"] Add a titlebar.
    2. and 3. are mixed up here. Now, all your windows still have titlebars.
    See, I really don't know if the order of execution is guaranteed. I haven't read Awesome's source code regarding this issue. So, my code avoids the whole issue because only one action is involved:
    A new window spawns.
    ["rules"] Add a titlebar iff it's not XTerm/luakit/whatever.
    I think/hope this is the best way to do it.

  • 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();
    }

  • Removing JFrame title bar WITHOUT removing window border

    I've been searching for a while now, and the only solutions I found were just using
    frame.setUndecorated(true);But this also removes the window border, which removes the ability to resize the window.
    I need the title bar removed while still retaining the ability to resize the window.
    There has got to be some way to do this.

    import javax.swing.*;
    import java.awt.*;
    class Testing
      public void buildGUI()
        JFrame.setDefaultLookAndFeelDecorated(true);
        JFrame f = new JFrame();
        f.getLayeredPane().remove(f.getLayeredPane().getComponent(1));
        f.setSize(400,300);
        f.setLocationRelativeTo(null);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setVisible(true);
      public static void main(String[] args)
        SwingUtilities.invokeLater(new Runnable(){
          public void run(){
            new Testing().buildGUI();
    }

  • How can we remove the scroll bars from the table?

    Hi,
    I have a dynamic table. Currently the table appears with the scroll bars. But there is a requirement that the scroll bar should not appear and the table should stretch in the entire page. How can this be achieved.
    Thanks in advance
    Nita

    Thanks Mohammad for the reply.
    Was able to remove the scroll bars by using only the styleClass as AFStretchWidth. But there is a default partition in middle of the page still? Can i remove that too by any way.

  • How to replace the icon in the title bar and minimized window

    I am not sure if this is a Swing question. But since nobody answered it in the Java Programming forum, let me place it here:
    I would like to set my own icon in the title bar and in the minimized window of my java application, replacing the java coffee cup icon.
    I am using:
    frame.setIconImage(new ImageIcon("image.gif").getImage())
    as was suggested previously in the Java Programming forum at:
    http://forum.java.sun.com/thread.jspa?forumID=31&threadID=5212059
    This does create the icon in both places. However, it only works when I run the program from JBuilder 2006. It doesn't work if I run the program from the .jar or the .exe file.
    How can I make it work for my .jar and .exe file?
    Please help! Thanks!

    It doesn't work if I run the program from the .jar...working example for a .jar
    import javax.swing.*;
    import java.awt.*;
    class Testing
      public void buildGUI()
        JFrame f = new JFrame();
        Image img;
        try
          java.net.URL url = new java.net.URL(getClass().getResource("Save.gif"), "Save.gif");//correct capitalization required
          if (url != null)
            img = javax.imageio.ImageIO.read(url);
            f.setIconImage(img);
        catch(Exception e){}//do nothing - default will display
        f.setSize(200,200);
        f.setLocationRelativeTo(null);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setVisible(true);
      public static void main(String[] args)
        SwingUtilities.invokeLater(new Runnable(){
          public void run(){
            new Testing().buildGUI();
    }

  • How do I remove the coloured bars from running down the side of my emails.

    How do I remove the coloured bars from running down the side of my emails.

    Hi
    The setting I have in Composing are-
    Composing
    Message Format - Rich Text
    In addressingonly have  tick in When sending to a group
    Responding - tick only the first two boxes
    Last only the bullet for Include selected text
    Hope htis helps

  • How can I get back the title bar in Thunderbird 38?

    The title bar can be turned on and off in Firefox. In the current version of Thunderbird (31), the title bar is present by default and there is no option to turn it off. In the beta version (38), there is no title bar by default… but I can't believe that there's no way to get it back. So, where is this setting? I can't find it.

    I sure agree that the setting isn't easily discoverable, but that's too late for the 38.0 release given that string freezes went in effect already (the reason being that localizers have to translate all UI elements for their respective language).
    The respective [https://bugzilla.mozilla.org/show_bug.cgi?id=814571 bug report] has been up for more than two years, but thus far not much progress in terms of a solution acceptable by the developers. I don't know if the extension proposed in the last comment was ever developed and posted.

  • Is there a way to modify the name displayed in the Title Bar at the top of the Audition Window?

    It's not uncommon for me to have a copy of Audition versions 1.5, 2.0 and 3.0 all open at the same time if I'm doing some editing for a complex project. 
    It would be handy for me to quickly see which window I have open without having to recognise the icons of the different versions.  At the moment, each Title Bar just displays the Audition icon and the words "Adobe Audition".  I'd like to add the version number to the name, if it's possible.  I'm happy to edit the Windows Registry, if that is what is needed.
    Does anybody know where the Title Bar information is stored?

    I have an answer you might like Howard.
    You could simply export one title to a PRTL file, then duplicate it using an Excel VB macro to change the name of the file based on a list in an excel file. You could type in a couple of dates, then just drag down to the 365th row and all of the dates would be there waiting for the macro to rename the file. Then, if you are really talented, you could find the appropriate text in the XML file and change it to match the name of the title, but without the PRTL extension.
    That way the font and position and style would all be right and the effort would be in a file you could share with the world.
    Hmmm. I might have to try that myself one of these days. Could come in handy. If you are more comfortable with Word than Excel, create the dates in Excel and paste them into a table in Word. Just be careful not to mess up the
    Edit: Oh, and of course, you import the titles back into Premiere Pro.

  • How do you make the title bar display different text than the page title?

    I'm looking for a way for the title bar display of my web page to be different than the text in the actual nav bar created by iWeb. For instance, I'd like the nav bar to just say Home for my main page, but in the title bar in the browser say "blah blah blah."
    I know there has to be a way to do this. iWeb has actually done it on one page already, but I can't figure out how. I think it picked up the title bar text from the first text box in the page. For instance, the page name in the navigation bar is "blahs for today" but the browser title bar when you open that page says "blah blah," which happens to be the first line of text on the page. The page title in iWeb.app, though, is "blahs for today." But if I look at the source code it lists title as "blah blah."
    I'm guessing I might be able to work around by making an invisible text box with the text that I want in the title bar as the very first thing on the page, and hope iWeb makes that the title bar text. I'd rather have a more correct way of doing it.
    Is there a way of doing this in the source code without having to change a lot of stuff?
    Thanks for any help.

    Richard Kirkman1 wrote:
    I think it picked up the title bar text from the first text box in the page. (...) I'm guessing I might be able to work around by making an invisible text box with the text that I want in the title bar...
    Richard ~ The key is the default Title box that iWeb creates for every new page — it's that which you need to edit, not another text box you've created. And to make the text in that Title box invisible, see here.

  • I lose the minimize, restore and close down buttons in the top right corner when removing the Menu Bar.

    I am using Firefox 28.0 on my Windows 7 64-bit PC. I would like to remove ONLY the menu bar and keep the orange Firefox tab. But when I uncheck the Menu Bar box, I not only lose the menu bar, I lose the three buttons on the very right of the screen as well - the minimize button, the maximize/restore down button, and the red 'X' close button. The space where these buttons ought to be is black. When I recheck the Menu Bar box, those three buttons on the right of the screen reappear!
    I would like to know how I am to remove the Menu Bar but keep the minimize button, the maximize/restore down button and the red 'X' close button.
    Eagerly waiting for your reply! Thanks much! ♥

    Hello again, cor-el,
    Thank you again for keeping up with me on this! I really appreciate your time!
    I tried your suggestions of using Safe Mode and a different Windows theme (2 different ones to be exact), but neither solved the problem. Each time I tried disabling the Menu Bar, the same 3 buttons disappeared and I got nothing but black space. It doesn't even fill the space with any background I may have. It's just black.
    Additionally, disabling all my personas did not help, either. :(
    I've been using Firefox for years now and I've never had this issue. It's always worked flawlessly for me.

Maybe you are looking for

  • Standard Cost Estimate for Subcontracting

    Dear Sir / Madam, We are in the process of migrating from our normal R/3 operations for Production Planning to Execution inclusive of Costing of materials by using iPPE functionality for repetitive scenario. We have our BOMs for painted body currentl

  • Loaded iLife'008 and now sent email gets stuck in outbox

    Folks, I refreshed to OS X 10.4.11 2 weeks ago and it has been a good upgrade. Tuesday night 09-16-08 I loaded iLife'08 followed by a software update. From that time on my sent mail is stuck in the outbox with the following error message. "This messa

  • Regarding Scheduling issue

    Dear All                I have one issue regarding Scheduling 1.we have one FG, one SEMI FINISHED material and one RAW material. 2.The In house production days for FG  is One  day. if demand is given on may 15th,the schedule date for FG is 14th may,u

  • Where to set up a TYPE-POOL Declaration in a Function Group ?

    Hi, I ve got a Function Group. I set up a Function Module in the Function Group. I must use  TABLES I_T_SELECT TYPE SBIWA_T_SELECT. I get the error: Type pool SBIWA has not been declared Message no. FL031 Diagnosis You used a type from type pool & in

  • How long after discharge to apply for a credit card?

    I was discharged from chapter 7 on June 2nd and I was wondering how long I should wait before I apply for a credit card to rebuild my credit? I am not in a rush to get one but are you more likely to get approved for one right after discharge ? I am r