Firefox tab and navigation tab colors

I'm using firefox 4 is there a way to remove the ugly opaque tabs and I want to change the navigation tab colors to red. Can I do that? If so, how?

Hi Sean,
Try this:
# Type about:config in the address bar
# Click ''I'll be careful, I promise'' if prompted
# In the Filter input field type ''startup''
# Double click on startup.homepage_override_url
# Delete the text string and click ''OK''
# Close Firefox and reopen the window to verify that it has worked.
It's a bit more "technical" than most people want, but it should work.

Similar Messages

  • How To Change Hyperlinks And Nav Menu Colors

    I continue to see people stating that it's impossible to change hyperlink colors and navigation menu colors until after you publish your site. This is not true. It's quite easy to update your templates with the colors YOU want and when you update the template, you never have to mess with any post-processing. You make a new page? Your colors are already there.
    I've gone over this before in this thread:
    http://discussions.apple.com/thread.jspa?messageID=3288533&#3288533
    But I'll go over the quick and dirty version here as well. Those who want more detail can post a question and I'll elaborate.
    First, do you know how to get into iWeb's inner folders? You right click or control click on your iWeb icon and select Show Package Contents from the pop-up menu.
    Step 2
    Once you've done that, you'll see a new Finder window that shows a folder called Contents. Open that and then open the next folder Resources. Within Resources there's a folder named Shared. Open the Shared folder.
    You're now looking at your collection of iWeb template files. You'll notice that each template has seven individual page files - each file defines the layout and styles for the page for which its named. This is actually one of the two places where you'll find the data/images that make up your iWeb pages. This location only contains the images. Now I'll show you were to find the data file.
    So you're currently here:
    /Applications/iWeb/Contents/Resources/Shared/
    You want to go here:
    /Applications/iWeb/Contents/Resources/English.lproj
    Now if you speak another language and your Mac's system language is set to the language you speak, substitue English with that language. If your system is set to English regardless of the language you speak, and you use the English templates, then stick with the English folder.
    When you're in the English.lproj folder, you will see seven sub-folders and one file named TemplatesInfo.plist. TemplatesInfo.plist is the file that registers the templates and tells iWeb what you've got in your collection. But we don't care about that file for now. We're after the template data files.
    The seven sub-folders are aptly named for each of the seven page-types as you can see. Open the About Me folder.
    Now you will see an "about me.webtemplate" file for every template you have in your collection. Good job. You've learned something new. Move on to Step 3.
    Step 3
    If you haven't decided yet, now's the time to decide which template you'd like to update. If you're just along for the ride to learn something new, no worries. We won't do anything you can't undo.
    Pick a template file now. Perhaps you chose the White template, or:
    White About Me.webtemplate
    Right click or control click on this file and select Show Package Contents from the pop-up menu. This will launch a new Finder window that displays the contents of the White About Me.webtemplate file.
    You will likely see a handful of different files, but the file you want is the one named Index.xml.gz.
    Index.xml.gz is the brain behind the template. Within this file are all the settings for the page you chose and it's really not hard to find what you want and change it. So let's take a peek.
    Step 4
    Double-click the file Index.xml.gz. This will reveal a new file named Index.xml. You might have to scroll down in your Finder window to see it. Rename Index.xml.gz to Index.xml.gz.backup in case you screw things up, you have your original.
    Now, open Index.xml with TextEdit. Do not open the file with a code editor unless you have already formatted the file.
    When the file opens, you'll notice it's one gigantic jumbled mess of stuff. No worries, we'll straighten that out. All you need to do is a find/replace.
    Find all instances of: ><
    And replace with:
    <
    The line break is important so maybe just copy the lines right out of this post. When you replace all of those, the file will be far more easy to view.
    Assuming you've completed that step. You're basically ready to make your change and test it out! Not hard ey?
    So let's say you want to change your hyperlink color from grey to blue. Search for this string:
    BLDefaultHyperlinkCharacterStyleIdentifier0
    When you find that string, you will see a few lines below it, two lines that look similar to this:
    <sf:fontColor>
    <sf:color xsi:type="sfa:calibrated-rgb-color-type" sfa:r=".8" sfa:g="1" sfa:b="0.4" sfa:a="1"/>
    This is how the template specifies color. It's RGB100. Your Mac came with a program called Art Director's Took Kit and that application can tell you the RGB100 values for any color you want. Tinker with that and you'll have a lot of fun with this.
    So I picked out a nice royal blue for you. The RGB100 values for it are:
    R:0 G:25 B:100
    What you need to do is update the color line to match those values:
    <sf:color xsi:type="sfa:calibrated-rgb-color-type" sfa:r="0" sfa:g=".25" sfa:b="1" sfa:a="1"/>
    Notice that you specify these in terms of a percentage, where 25 became .25 and 100 became 1.
    Step 5
    Save your file. It's time to see your work in action. Open iWeb if it isn't open already and create a new page using the template you've just altered. If you altered the White About Me page, then select that and create the new page.
    It there are hyperlinks already on this page, you should already see that they reflect your new color. If there aren't any hyperlinks, then type some text and create one. You should see your new link color right away!
    Now if you don't see the new color, either you picked the wrong page or you neglected to rename the Index.xml.gz file a few steps back. If you did not rename that file, then it's still in control of your template. Rename it now and try again.
    If you don't like that color, simply swap back to the TextEdit page and change it until you like it - switching back and forth between the file and iWeb to view your changes. Once you're happy, make note of the color you chose and make the change for the remaining six pages in the tempalte you selected. Just be sure to follow the steps for each page you edit. If you fail to see your change, again, check to see that you renamed Index.xml.gz.
    Side Notes
    For the more technical, rather than editing an existing template, you might want to duplicate and rename a template. This essentially creates a brand new one. If you're pretty good within Finder then go for it, just be sure that you duplicate the files in both locations:
    /Applications/iWeb/Contents/Resources/Shared/
    /Applications/iWeb/Contents/Resources/English.lproj/...
    Choose a unique name for the duplicated template and change every single file so that the new name replaces the old one. You would have to register this new template in the TemplatesInfo.plist file as well, but I'm not going to get into that here.
    The thread I referenced at the top has all kinds of search terms to find the other hyperlink styles (rollover and visited) and all the navigation menu styles plus a bunch of other fun stuff.
    Now, it seems long, but that's because I wrote it well. The shortest version of this I've ever written was two sentences, but that was for a UNIX geek and he got it. It's just as easy for you, but I write it out so that anyone can do this, because anyone can. It's just not hard.
    If you have questions about any of the steps, go ahead and ask.

    Good. Okay here's how to apply a background color to your nav bar buttons. For example, my Aerolite template sets the selected page to a black background color. The rollover effect uses a gradient fill. I'll describe both of those here.
    First, here are the navigation menu search terms:
    navbaritem-style-normal-default
    navbaritem-style-rollover-default
    navbaritem-style-selected-default
    navbar-pargraph
    The first three set the button effects and text colors. The last one there sets the font, font size and other paragraph styles.
    To change the selected page button background color, or gradient or image, first search for it using the search term above. Start from the top of the file because there are two instances of those terms, one where you can set the values, the other is only reference to the first and does not allow you to change settings.
    When you find the search term, you might want to insert an empty line above it to help separate it from the rest of the code. You can also insert an empty line below the section. The end of this style ends with:
    </sf:navbar-item-style>
    Be careful not to mix that up with </sf:navbaritem-character-style>
    Now, within this section, you'll find all kinds of settings... stroke, fill, character styles, etc. Notice you can change font color in there. But for this demo, you want to find the section that looks like this:
    <sf:fill>
    <sf:null/>
    </sf:fill>
    I'm assuming you're editing an Apple template that does not already have a fill effect. If it does have one, then your example might not look exactly like that.
    To apply a color fill, change those three lines to these lines:
    <sf:fill>
    <sf:color xsi:type="sfa:calibrated-rgb-color-type" sfa:r="0" sfa:g="0" sfa:b="0" sfa:a="1"/>
    </sf:fill>
    You can see that we've inserted the line that specifies color - something you should be familiar with by now. Here you can specify the color that will become the background of your nav bar button. This example specifies black. Easy no?
    If you would prefer a gradient fill, then replace those three lines with this:
    <sf:fill>
    <sf:angle-gradient sfa:ID="SFRAngleGradient-1111" sf:opacity="1" sf:type="linear" sf:angle="0">
    <sf:stops sfa:ID="NSMutableArray-1111">
    <sf:gradient-stop sfa:ID="SFRGradientStop-1111" sf:fraction="0">
    <sf:color xsi:type="sfa:calibrated-rgb-color-type" sfa:r="0.40" sfa:g="0.40" sfa:b="0.30" sfa:a="1"/>
    </sf:gradient-stop>
    <sf:gradient-stop sfa:ID="SFRGradientStop-2222" sf:fraction="1">
    <sf:color xsi:type="sfa:calibrated-rgb-color-type" sfa:r="0.64" sfa:g="0.66" sfa:b="0.54" sfa:a="1"/>
    </sf:gradient-stop>
    </sf:stops>
    </sf:angle-gradient>
    </sf:fill>
    Now, don't panic Here's what this is. The first line allows you to specify the angle of your gradient. Play with the numbers from 0 to 359 until you have what makes sense for your design.
    Then, you will see two familiar lines again - the lines that allow you to specify color! The first line is the first color of your gradient and the second color is the second color of your gradient. That's all there is to it!
    SECRET: It might be possible to add additional colors, not just two. Do you see the part sf:fraction="0" and sf:fraction="1"? These are gradient stops. I'm willing to bet that if you inserted a thrid gradient stop with a fraction setting of .5, you'd have a three-color gradient!
    <sf:gradient-stop sfa:ID="SFRGradientStop-3333" sf:fraction=".5">
    <sf:color xsi:type="sfa:calibrated-rgb-color-type" sfa:r="0" sfa:g="0.25" sfa:b="4" sfa:a="1"/>
    </sf:gradient-stop>
    I have never tried this - it just occurred to me as I was looking at this code. Big prize for the first person to prove the theory
    NOTE: You will notice that the number 1111 and 2222 are within this code. iWeb XML relies on identification tags here and there. It's nothing you really have to care about except if you insert gradient fills in more than one area. Those numbers need to be unique so if you paste that code in for your selected page button and then paste it again for your rollover buttons, you'll need to update the numbers for the second button. Any numbers are fine. Use 3333 and 4444 for the second set, 5555 and 6666 for the thrid and so on. I often just type 4345781476 - doesn't matter.
    Next lesson will be images.

  • After re-installing my MacBook Pro hard drive, I lost my Firefox/Mozilla 'top banner' (red ,yellow and orange in color) and with it my ability to down load via a small tab located top right on it's bar. How do I get this function back??

    Recently I found it necessary to re-install my entire operating system, and I lost my ability to down load streaming videos. I am an artist almost 70 yrs. old, and am not very computer proficient which is why I purchased a MacBook Pro. I used Firefox/Mozilla to do downloading because it was easy. When I brought my system back up I found that the top 'Firefox banner' had changed from red, orange and yellow in color to shades of gray. With this change found that I no longer had the download 'tab' to click on to initiate downloads (located top right on the Firefox top section).
    I've tried re-installing Firefox and Antbar download helper but am still not able to download. How do I get the download capability back again???? ......roxor999

    Your storage device is probably faulty.  It would be helpful if you indicated the EXACT model/year MBP that you have.
    Ciao.

  • I would like colored tabs; is it possible with Firefox? And or, each new subject have a different color tab.

    I would like colored tabs; is it possible with Firefox? And or, each new subject have a different color tab.

    The [https://addons.mozilla.org/en-US/firefox/addon/1368/ ColorfulTabs] extension may be of use to you.

  • Why does the Welcome to firefox tab open with my google tab every time I open the browser? And why can't the browser hold any add-ons I downloaded? I loose then when I close the browser, even tool bars have to be reinstalled every time I open the browser

    Every time I open the browser the Welcome to Firefox tab is the first tab, then a second tab opens and thats my google, then a 3rd tab opens for me to reinstall my toolbar. This has been happening for a good year. Updates have not fixed it. Others have this problem. I did a search for an answer, the question is out there but no answer. Now if I go into add ons and add a background Theme or an extension it all is gone when I exit the browser. When I open the browser again I get all 3 tabs and have to install my toolbar again. I DO NOT want to reinstall as I will loose all my saved data, passwords, bookmarks, everything! I have had this computer for a year, Windows Vista x64 bit. Its not the computer, it's the browser. If you have specific questions e-mail me and I will be more then happy to help

    See this article for some suggestions: [[Firefox has just updated tab shows each time you start Firefox]]
    See also http://kb.mozillazine.org/Preferences_not_saved and Preferences are not saved

  • Firefox freezing, and eventually crashing when opening a tab?

    Just yesterday this started, at first youtube videos froze the browser (but I could still hear them playing) and now I can't even open a tab without firefox freezing and just eventually having to end the process. It was working perfectly before yesterday.

    Can you run Firefox in [[Safe Mode]]? If it functions properly in that configuration, then one of your add-ons is the culprit.
    Also, please go to the [http://www.mozilla.com/en-US/plugincheck/ Plugins Check] page. Some of them are out of date and you'll need to update those first before we can proceed further.
    By the way, you can view Youtube videos in HTML5 now instead of in Flash. All you need to do is to click the link at the foot of this page: http://www.youtube.com/html5 There's nothing to download and you don't have to fill in any forms. The player will switch automatically once you click that link.
    ''Apologies though for taking so long to respond to your question''.

  • Firefox slow and unresponsive with facebook and zynga and then locks up for all other tabs open

    I finally had to uninstall the beta 4 version as I couldn't take the issues any longer. The browser would become slow and then totally unresponsive mostly when using facebook and zynga. however, all tabs would become slow and unresponsive and would have to be rebooted. It wouldn't be 5 minutes and it would have to be done again. Even without facebook/zynga loaded in a tab, the entire browser is unbelievably slow. I am running mac os x 10.5.8.
    I went back to the old version until I hear back as I just don't have time to sit and wait and wait and wait only to have to reboot the program constantly.

    I found a "work around". I installed Incredible Bookmarks 0.7.3. That allows me to add an additional Bookmarks Toolbar without causing the bouncing problem.
    Putting bookmarks in the IB bar was a little tricky. It allows customization, but only to the extent of choosing bookmarks by topic or by a subdirectory of the Bookmarks Menu. What I actually put on the toolbar are such subdirectories (or folders), so I normally could only put one at a time. (This problem doesn't exist with the Firefox Bookmarks Toolbar, which allows you to copy subfolders, not just individual bookmarks).
    I solved the problem by moving the additional folders I wanted to put in the IB Toolbar into a folder I (cleverly) called "IB Toolbar", then selected that for the actual Toolbar. The result: a row of folders, exactly what I wanted. (Actually, it's a second row of folders, since I still have the original Firefox Bookmarks Toolbar.)
    I'd still prefer MultiRow, but that doesn't appear to be working with Firefox 3.6.18 and higher, so until I upgrade to Firefox 5 (and see if the Plus version will work) this will have to do.

  • Firefox 4b2 and Windows 7, multiple tabs shows up as windows in OS-taskbar

    I have been using Firefox on my Windows 7 based computer (Ultimate x64) and I didn't experience this when using v3.6 and earlier versions. But ever since I updated to v4 (beta 1 and now beta 2), I have noticed that when I have multiple tabs open in Firefox, it shows up as Windows in Windows 7-taskbar... If I hover the pointer over to, and place it above the Firefox Icon (or click it), a LOOOOOooonng list shows up with each tab.. But that wasn't the case when using v3.6 for example, instead, each window showed up, but the tabs didn't show until I opened the actual Firefox-window, and this is exactly how I would like it to be.. I have been searching with lights and without finding any answer/s, search the settings-tab and other locations where this feature might show up, but I can't seem to find it, Im completely out of ideas and I need your help.
    Best regards // Martin Johansson, Sweden
    == This happened ==
    Every time Firefox opened
    == When I updated from v3.6 to v4 Beta 1, and now also with beta 2

    You need to change a hidden setting.
    Type '''about:config''' into the location bar and press enter.
    Accept the warning dialog that appears.
    This brings up a list of preferences, in the filter box type '''taskbar'''
    Double-click on the preference called '''browser.taskbar.previews.enable''' to change its value to '''false'''

  • Can't see my Firefox window and tabs, but they are somehow open

    Yesterday I had a single Firefox window (with approx. 20 tabs) open, and then the window disappeared. I figured that I'd lost all my tabs.
    When I opened a new window, and attempted to check my Outlook mail, I got the message "There was a problem opening your mailbox. You may have already signed in to Outlook Web App on a different browser tab. If so, close this tab and return to the other tab." I am now hearing a *ding* whenever I get a new email. However, I cannot find the window or tab in which my Outlook is open! It's like the Firefox window is invisible or hiding somewhere.
    If possible, I'd like to locate this invisible Firefox window, and not have to re-locate all the websites I had open in the tabs. I've opened the Windows Task Manager, but it doesn't show any open Firefox applications.
    Any ideas? Where is this open Firefox window hiding?

    Thank you much!

  • Firefox launches and re-loads my tabs, but clicking on the tray icon doesn't display the window

    I can see that Firefox is loaded and running (running Windows 7) - I can hear notices of emails arriving and see the miniature version of the active tab when my mouse hovers over the icon in the tray - but when I click on it it doesn't expand the window so that I can view it. I have tried closing and re-opening as well as restarting my computer. I'm hoping for a solution that preserves the open tabs I currently have. Thanks in advance for any and all help!

    * Use Restore or Maximize in the right-click context menu of the Taskbar icon to set focus to the Firefox application if you do not see the Firefox window.
    * Open the system menu of that Firefox window via Alt+Space and see if you can move and resize that window (use the keyboard cursor keys).
    If that works then first close all other open Firefox windows and then close Firefox via "File > Exit/Quit" to save that setting.
    If the above didn't help then see:
    * http://kb.mozillazine.org/Corrupt_localstore.rdf

  • Firefox crashes and when attempting to launch after the crash it won't and throw and error msg that js.3250 can't be found- but same file is in Mozilla directory. I must then download new 3.6.8 and lose all tabs.

    # Question
    Firefox crashes and when attempting to launch after the crash it won't launch; throwing an error msg that " js.3250 can't be found" - but same file is in Mozilla directory.
    I must then download new 3.6.8 and lose all tabs and history.

    I have a similar problem. Recently my FF8 has been crashing a lot. It regularly locks up an entire core of my PC and often just shuts down. It has just done it a moment ago and when it started back up it did the whole "this is embarrassing" thing and asked me if I wanted to reload my tabs. I deselected the one that I was trying to view as I suspected that it may have been the cause (unlikely; it was node4.co.uk) but anyway, let's skip it just in case. Click on the button to restore and up pops my homepage only. So all of my other tabs, which I was using for work incidentally, are gone.
    This is not the first time this has happened on FF8. It happened a lot recently on FF6 I think it was (so hard to keep track now, Mozilla) and I switched to Chrome as a result, but it turns out that it crashes even more than FF6 did. FF7 was a vast improvement but FF8 is so unstable/unpredictable for me at the moment that I think I'd rather use IE9 than this. It's driving me mental, clearly! I wish I could kill the process manually and have it retry restoring tabs. Hey, there's an idea Mozilla; give us a menu item that allows us to restore the session to how it started to try again or at the very least get a list of the pages we were looking at. They don't show up in Recently Closed Windows and the Restore Previous Session is greyed out too. Gah! Help!

  • I installed Firefox sync and then used iphone app called FireFox Home and I can syncronize history, tabs and bookmarks. But I am NOT able to syncronize passwords from Firefox in my Macbook to FireFox Home on iPhone !

    I installed Firefox sync and then used iphone app called FireFox Home and I can syncronize history, tabs and bookmarks. But I am NOT able to syncronize passwords from Firefox in my Macbook to FireFox Home on iPhone so I am very terrible to input my IDs and Passwords with my hands on FireFox Home when I log into Facebook, Twitter etc... Is it issue or something like that? If you have some solutions to make it clear, can you tell me how to syncronize memorized IDs and Passwords for the webs. Thank you.

    You can look in Tools > Options > Sync
    Menu differences: [http://kb.mozillazine.org/Menu_differences Windows: Tools > Options - Mac: Firefox > Preferences - Linux: Edit > Preferences]
    See also:
    * [[What is Firefox Sync]]
    * [[How to sync Firefox settings between computers]]
    * [[How to sync Firefox between my desktop and mobile]]

  • My toolbars and even my Firefox tab keep disappearing. How do I get them back?

    I have tried everything. Your chat does not answer me. I need help.
    On your website the Firefox tab is at the top and my normal tool bar is at the bottom.
    However, all the add-on toolbars, ie, Roboform and google and My Points are missing.
    But, when I click on the web browser Firefox opens with NO toolbars top or bottom and NO Firefox tab. How do I fix this and stop it from happening again and again?

    I did the same thing last night also with my MacBook Pro.  None of my music, video or photos not taken originally on my iphone were  reloaded back onto my phone.  I received an error message instead.  I had to just re-drag the music and videos that I wanted back to my iphone.  As far as my photos taken on my iphone...by chance, I had just backed those up earlier that day.  I'm not sure where the photos are that I had put on my iphone in the beginning...they still show up in people's contacts, but they no longer show up under photos - ?  This is very frustrating! 

  • I have installed - uninstalled - and reinstalled version 4, but I do not have Firefox Tab in upper left-hand corner. Why? Where is it and how do I get it?

    Reference is frequently made to the orange Firefox Tab at the very top of the vers. 4 downloaded screen. I do not have this tab anywhere on my screen, even after uninstalling and reinstalling. Why and how do I get it?

    The new interface is only default on Windows Vista and Windows 7. To get it on Windows XP you need to hide the menu bar. To do that in the View menu select Toolbars, then click on the "Menu Bar" entry.
    If you need access to the menus you can press either Alt or F10 to temporarily display them.

  • Number of tabs open in Firefox 4 and for no reason the loaded page will disappear and I have a blank page defaulting to Bing, I cannot find Bing in any of the settings and this blanking out is frustrating.

    Upgraded to Firefox 4, and have a number of tabs open, and for no reason a tab will clear the loaded page and default to a bing search page, when I check extensions and addons there is no sign of bing so havent a clue how it is doing this
    I dont know whether this is related but since upgrading to version 4 everyso often the page will go into a loop if you are trying to refresh the page and the anticlockwise comfort bar will keep spinning

    Problem involving videos played from the YouTube site is much less noticeable after upgrading from FF 4.0b8 to 4.0b9, but still occurs with embedded YouTube videos, where blacking out of other portions of the window still happens.

Maybe you are looking for

  • Issue in Multiload script and import text file format

    I am using text output file from essbase to be imported to HFM using multiload The separator is tab for records. It seems i need to use tab separator in row 6 of text file (multiload) for dimension tags because separator should be same as in data rec

  • Recording Audio

    I hope this is in the right section. Whenever I try to record audio into my Mac Mini, whether it be through garageband, or audacity or the like program, my recording pics up this weird noise. Not sure how to explain it.. it's almost like background n

  • TV Programme won't play

    I'm new to iTunes, downloaded a TV show, and it won't play on my laptop (which exceeds the specs) without stuttering and freezing. I tried everything on the support page. Any ideas? Thanks in advance for any help.

  • Invoking a Web Service through an alternate server

    I currently browse to a Web Server EXLPORE page to generate the proxy files for my client to connect to, e.g. http://localhost:7001/myApp/myWS?.EXPLORE=.TEST The connection code looks like this:           myWS_Impl proxy = new myWS_Impl();           

  • Trouble with form fields

    Upgraded to Mountain Lion but now filling out forms (i.e. signing into Yahoo Mail, Facebook, Wikipedia home page) is a complete nightmare. Is there any way to solve this issue? I was fine before I upgraded. It took me several minutes just to sign int