Overlapping tabs (in a bad way)

In a tabbed panel, my tabs are (accidentally) overlapping so
that a little square or circle shows up on the tab to the left,
indicating the start of the clickable region for the tab on the
right. I would like to get rid of this, but am not sure what to
adjust in the SpryTabbedPanels.css file. Here is the page:
http://www.grad.umn.edu/gradwriting/IWP/indextest.html
Thanks!

There seems to be a rule in grad.css:
ul {grad.css (line 179)
list-style-image:url(../images/li.gif);
margin:5px;
That is causing the square image to appear. You can get rid
of it by modifying this rule in SpryTabbedPanels.css:
.TabbedPanelsTabGroup {
margin: 0px;
padding: 0px;
So that it sets the list-style to none:
.TabbedPanelsTabGroup {
margin: 0px;
padding: 0px;
list-style: none;
--== Kin ==--

Similar Messages

  • Can't open new tab by going to file/new tab (or CTRL+T or clicking on the new tab field). Only way is to right click on a link and choose open in new tab.

    Can't open new tab by going to file/new tab (or CTRL+T or clicking on the new tab field). Only way is to right click on a link and choose open in new tab.

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • Why would firefox release version 29.0.1. It is terrible! I had to find a plugin to change the tabs back. Bad decision. Why was this done?

    Why would firefox release version 29.0.1. It is terrible! I had to find a plugin to change the tabs back. Bad decision. Why was this done?
    Not happy with version 29.0.1 - Are there any plans to roll this back?

    On my Windows 8 machine Firefox 29 (puke) no longer remembers my "Customize" icon settings ~ every time I close down Firefox and restart they all have disappeared. POS.
    Whomever approved this radical of a change on the user experience without a nary of warning should be TERMINATED. This will go down in software history's top ten "Hall-Of-Shame"!!!

  • When closing multiple tabs, is there any way to get back the option of saving those tabs OR NOT for your next session, within the warning dialogue box itself?

    For brief period of time, not in FF4, there was the option whereby when I closed multiple tabs, a firefox dialogue box opened warning me that I'm about to close multiple tabs, '''AND ALSO''' asking me if wanted to save those tabs for my next session, or trash them.
    The primary issue IS NOT about saving tabs. The primary question here is about getting THE OPTION back to the CLOSING MULTIPLE TABS WARNING DIALOGUE.
    The use case here should be obvious. However, since it is clearly not obvious that different people work in a variety of ways, and neither of those methods of working is "wrong" or "right" I will elaborate: Some people, for whatever reason, it doesn't matter why, want to save all their tabs on some occasions, and on other occasions don't.
    This preference varies throughout the day. Therefore it is inefficient to constantly go to preferences and change whether or not I want firefox to open all my tabs from my last session. It is more LOGICAL to place an option in the multiple tab warning dialogue as well, for people whose preference constantly changes.
    This option was available for a time in most of the Firefox 3 versions. Is there any way to get back this option in Firefox 4?

    Firefox 4 saves the previous session automatically, so there is no need for asking if you want to save the current session.
    You can use "Firefox > History > Restore Previous Session" to get the previous session.<br />
    There is also a "Restore Previous Session" button on the default <b>about:home</b> Home page.
    You can set the warn prefs on the <b>about:config</b> page to <b>true</b> via the right-click context menu or toggle the value with a double left-click.
    * browser.showQuitWarning, see http://blog.zpao.com/post/3174360617/about-that-quit-dialog
    * browser.tabs.warnOnClose, see http://kb.mozillazine.org/About%3Aconfig_entries
    * browser.warnOnQuit , see http://kb.mozillazine.org/browser.warnOnQuit
    * browser.warnOnRestart , see http://kb.mozillazine.org/browser.warnOnRestart
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />

  • New tabs added by Badi ME_GUI_PO_CUST not seen in ME21N and ME22N

    Hi All
    I am implementing BADI ME_GUI_PO_CUST / ME_PROCESS_PO_CUST to add additional fields in Purchase Order Header.
    The implementation of the BADI ie the Subscreen of the fields to be added appears in Header of  transaction ME23N but it does not appear in the transaction ME22N and ME21N.
    Can anyone help me on this.How to make the tab appear on screen in transaction ME21N and ME22N.
    Thanx.

    Dear Friend,
    Just go to the Class CL_PO_HANDLER_MM
    This is the Super Class for the PO & PR.
    If u debug the PO u can see that PO is calling this super class.
    For this u want to create Subroutine in the Function Group calling the Screen .
    The Problem which u r facing is that the Instance are not yet created for that Cusotmer Data.
    Once u created this Subroutine u can see the fields..
    With Regards,
    Sumodh.P

  • Bold in JTabbedPane title overlapping tab edge

    I extended the BasicTabbedPaneUI and implemented paintText() to use a bold font if the tab is selected. This works OK, unless the tab has a long title in which case the bold text overlaps the edge of the tab. I tried using a smaller font size, but it still didn't work in some cases.
    How do I change the size of the tab?
    Here's my implementation:
    -------------------------MyTabbedPane.java-----------------------
    <pre>
    import javax.swing.plaf.basic.BasicTabbedPaneUI;
    import java.awt.*;
    public class MyTabbedPaneUI extends BasicTabbedPaneUI {
         private Font boldFont = null;
         public MyTabbedPaneUI(Font font)
              this.boldFont = new Font(font.getFontName(), Font.BOLD, font.getSize());
         protected void paintText(Graphics g,
                                  int tabPlacement,
                                  Font font,
                                  FontMetrics metrics,
                                  int tabIndex,
                                  String title,
                                  Rectangle textRect,
                                  boolean isSelected)
              if(isSelected)
                   super.paintText(g, tabPlacement, boldFont, metrics, tabIndex, title, textRect, isSelected);
              else
                   super.paintText(g, tabPlacement, font, metrics, tabIndex, title, textRect, isSelected);
    </pre>
    ------Here's how it's used-----------
    JTabbedPane tabbedPaneTop = new JTabbedPane(JTabbedPane.TOP, JTabbedPane.WRAP_TAB_LAYOUT);
    // set-up tab UI
    MyTabbedPaneUI tabUI = new MyTabbedPaneUI(tabbedPaneTop.getFont());
    tabbedPaneTop.setUI(tabUI);

    I figured out how to fix my problem. Had to override a couple more methods. See my code below.
    import javax.swing.plaf.basic.BasicTabbedPaneUI;
    import java.awt.*;
    import javax.swing.*;
    public class MyTabbedPaneUI extends BasicTabbedPaneUI {
         private Font boldFont = null;
         private FontMetrics boldFM = null;
         public MyTabbedPaneUI(Font font)
              this.boldFont = new Font(font.getFontName(), Font.BOLD, font.getSize());
         public void installUI(JComponent c)
              super.installUI(c);
              this.boldFM = c.getFontMetrics(this.boldFont);
         protected void paintText(Graphics g,
                       int tabPlacement,
                       Font font,
                       FontMetrics metrics,
                       int tabIndex,
                       String title,
                                  Rectangle textRect,
                       boolean isSelected)
              if(isSelected)
                   Rectangle rect = this.getTabBounds(this.tabPane, tabIndex);
                   int centerX = rect.x + rect.width/2;
                   int centerY = rect.y + rect.height/2;
                   int textH = this.boldFM.getHeight();
                   int textW = this.boldFM.stringWidth(this.tabPane.getTitleAt(tabIndex));
                   rect.x = centerX - textW/2;
                   rect.y = centerY - textH/2;
                   rect.width = textW;
                   rect.height = textH;
                   super.paintText(g, tabPlacement, boldFont, this.boldFM, tabIndex, title, rect, isSelected);
              else
                   super.paintText(g, tabPlacement, font, metrics, tabIndex, title, textRect, isSelected);
         protected int calculateTabWidth(int tabPlacement, int tabIndex, FontMetrics metrics)
              if (this.tabPane.getSelectedIndex() == tabIndex)
                   return super.calculateTabWidth(tabPlacement, tabIndex, this.boldFM);
              else
                   return super.calculateTabWidth(tabPlacement, tabIndex, metrics);
    }

  • Everytime I click on a link it opens up a new tab, is there a way to stop this?

    I do not want a tab to open everytime i click on something on a page. I end up having 20 tabs open at once. Is there a way I can turn this off so that my page will just switch to the new page.

    You can override how links are opened via the browser.link.open_newwindow pref
    *http://kb.mozillazine.org/browser.link.open_newwindow
    *1: current tab; 2:new window; 3:new tab;
    This pref is for the behavior of links opened via JavaScript
    *http://kb.mozillazine.org/browser.link.open_newwindow.restriction

  • Why does Firefox 37.0.1 show multiple overlapped tab icons + same some pdf graphics? (36.0.4 is OK)

    When running on SONY VAIO i7 WIN 7 64bit SP1 with NVIDIA GeForce GT 520M, the icons in the tabs at top of Firefox page replicate, overlapped, horizontally, offset by a few pixels in 37.0.1. Similarly, when displaying web based pdf files through Firefox 37.0.1, some graphics replicate, overlapping, vertically. There are no such problems in 36.0.4 or previous. My drivers for GeForce GT 520M are up to date, so not a driver issue. I have uninstalled 37.0.1 and reinstalled 36.0.4 until this can be fixed.

    You can try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    You need to close and restart Firefox after toggling this setting.
    *https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Spry Tabs:  how to overlap tabs when wrapped.

    Hi,
    Im new with using spry tabs and will be creating a page that
    will require multiple tabs. I really would like to know how this
    can be easily done. I had no success editing the CSS styles.
    here is a similar example of how i want it.
    Frys website with
    tabs
    but other than that, if its possible, i would also like the
    active tab to move down and have its contents under the active tab.
    Hope my explanation if clear, thanks in advance.

    Hi,
    'cause there was no-one who answered to your question till now, you could bring your thread into the Spry-forum:
    http://forums.adobe.com/community/labs/spry?view=discussions.
    There you will find the experts for all your questions about Spry applications.
    Good luck!
    Hans-Günter

  • Now that I've condensed all my many windows into tabs, I have ten windows of carefully organized tabs with no apparent way of integrating them. So my question: how do I combine tabs in differnt windows, or collect all my tabs onto a single platform?

    My tabs in separate windows are in separate virtual universes. How do I combine them?

    That sounds very handy. Nice going. A kind of backup would be to
    create a folder in the Bookmarks Manager, and keep a list of links there.
    Just one note. The sessionstore file shows the last windows / tabs that
    are open. Because the window with the 90 tabs was closed first, then the
    other, that is what caused your issue.
    Please edit the post title by adding '''==Solved==''' to it. Others may think
    you are asking for help, not offering a solution.

  • Overlapping tabbed pane objects upon startup

    I have a swing app built with Sun ONE Studio 4, I have several jTabbedPane's in the main form and upon start up, components from other tabbed panes are visible until I go through and click each tabbed pane. Any help is appreciated.

    Don't use Sun One Studio. ;) Can't stand the lack of control/knowledge of what is going on with GUI builders! Much prefer using TableLayout and coding it myself! TableLayout is so easy to use, very fast.

  • How to make Tab jump the proper way?

    Hi,
    I have different components on a panel - JComboBoxes, JTextFields, JCheckBoxes, etc.
    I'd like to make Tab first jump only on JTextFields and on other components after all JTextFields have been visited.
    Could anyone please direct me where I should look for API or tutorial on how to implement Tab jump direction??

    http://java.sun.com/j2se/1.4.1/docs/api/java/awt/event/FocusAdapter.html

  • I can´t install After Effects in my IMac because I think I have deleted this program in a bad way so my Mac show me After Effects like installed but the program is not installed...

    How could I resolve this problem?

    follow solution 2 here, CC desktop lists applications as "Up to Date" when not installed

  • Can anyone confirm LACK of BADI (& exit) to add fields to MIGO material tab

    I've checked the MBC* and IQSM* enhancements in SMOD and don't see any BADI or customer exit(s) that will allow me to put additional fields on the "material" tab in the tabstrip at the bottom of the main MIGO screen.
    If I'm right about this - that you can't add fields to this material tab, is there some way of adding a menu or pushbutton or something to the main MIGO screen that would allow a pop-up that is not triggered by an existing button? (I am already triggering IQSM0007 based on the "post" pushbutton for goods receipt, but I need something for when the customer is just browsing around the main MIGO screen.
    This question has also been posted in ABAP General and ABAP Enh/Mod
    Thanks
    djh

    I forgot to check SE18 - MB_MIGO_BADI seems to be what SAP makes available for this kind of thing ...

  • Firefox opens Google link in the same tab (the way I like it), but I can't figure how to keep that and still have YouTube windows pop-up in a new tab. Help?

    Hello, here is my problem: reading your mozilla support, I learned how to make Firefox open links in Google results in the same tab, that's the way I like it, but I still like to have my YouTube windows pop-up in a new tab (I participate in one forum, when I come to the YouTube window in some topic, I usually click on a small right-down button "watch on YouTube", and that always opens video it in a new tab; all until latest few updates of Firefox). Can this issue be corrected in about:config feature, and how? Sorry if my English isn't so glorious.
    Thanks a lot for answering, and best regards...

    Hello. I have just tried this add-on you suggested, and no change.
    And no, there was no some other add-on before, not that I know about it. Mainly, I need this option while I'm on a forum (IP board powered), it is not really something so important, but it's neat function for me.
    So, to be more detailed - I read a certain topic on this forum, and some of the posts from other members contain YouTube screens (looking same as on the original YouTube page), showing the frame of a video.
    In earlier versions of Firefox, I used to click on a small YouTube logo button (right side, down, between "watch on full screen" and "watch later" buttons). Clicking on this button automatically opened new tab, leaving forum tab as it is, and in new tab original YouTube page, with that certain video. In the same time, in Google search page, when clicking on a link, all links were opening in the same tab.
    Now, after some of the latest updates of Firefox, I noticed that some default settings were changed - in Google search, clicking on a link always opens a link in a new tab. I have found out here on your forum how to set this back in about:config feature, and now I have again that links in a Google results page are opened in the same tab (that's the way I like it).
    But YouTube screens on this forum are now also being opened in the same tab, and that is what I don't like, and trying to change back.
    So, what I need: all links to open in the same tab after clicking, as I have it now, and YouTube screens (e. g. on this forum) to be opened in a new tab (by clicking on a small YouTube logo ("watch this video on YouTube").
    Pedantic I am, I know that, and I know that this may look silly to some people, but if there is a way to do something, please tell me.
    Thanks for answering, and best regards.
    P.S.
    Is it possible that forum updates changed my setting, and not the Firefox? Thanks again...

Maybe you are looking for