Would like to reduce the size of Firefox header

The header in firefox takes up a lot of room and I would like to reduce the size to its bare minimum. There are tabs such as "most visited", "getting started", and "latest headlines" that I never use. I want just my file, edit, view, history, etc bar and my back, forward, refresh, stop, home, address bar. Is there a way to do this so I have more room for the web pages I'm browsing?
== This happened ==
Every time Firefox opened
== NA

Wow.... sometimes its just that easy, huh? Thanks for guiding me to the obvious the-edmeister! Appreciated!

Similar Messages

  • How do I reduce the size of Firefox on my HP laptop. I don't want the ful screen.

    On start up Firefox covers the full screen. I manually adjust it, but on the next start up it does the same. I'm using a HP Pavilion dv1000 of indeterminate age . Any suggestions?

    Firefox has a full screen mode where the menu and toolbars are hidden, and a maximized mode where you get all the bars but the window is not resizable.
    Normally, Firefox will remember the last window size and re-use that. However, sometimes the file that stores this information (as well as your toolbar layout customizations) becomes corrupted. The usual workaround is to rename the file and customize from scratch.
    Open your current Firefox settings (AKA Firefox profile) folder using
    Help > Troubleshooting Information > "Show Folder" button
    Leaving that window open, switch back to Firefox and Exit
    Pause while Firefox finishes its cleanup, then rename '''localstore.rdf''' to something like localstore.old
    When you start Firefox again, it should be back to its default toolbar layout and window sizing.
    Note: If you have a program named Advanced SystemCare, its Surfing Protection feature might override your settings changes between sessions. You may need to disable this feature.

  • I would like to automate the installation of FireFox to an alternate directory.

    I am trying to automate the installation of FireFox to my servers drive "F:" but I have not found a way to script this option. Typical Windows installations would use the INSTALLDIR= option, but this does not work. I have seen several different spins on setting options (like the home page) but none of these scripts seem to address my issue.

    When you download the installer, you can specify the install location. Once installed, any updates should also install in that location.

  • Does acrobat have a function to reduce the size of lines?

    using acrobat 5.0, i have some b/w line art and i would like to reduce the thickness of all the lines (i am familiar with increasing line size through the use of the 'stroke' function) but i have been unable to find a way to highlight all lines and then use a function to reduce the width of all lines.  is there such a function built in?  thank you.  dan

    No.

  • How can I reduce the size of the jvm?

    I would like to decrease the size of a jvm; I've found a program that makes it, but you don't know how does it works (and you have to pay for it), I'm talking about VM Optimizer 2.0, from Invirtus.
    Can anyone tell me how can I reduce the size of the jvm?
    Thanks a lot.

    I assume you mean the size of a JVM instance in memory and not the size of the JRE which is on the disk.
    I don't believe that there is any way at present for your Java code to change the amount of memory available to the JVM. This shouldn't matter too much, though. Firstly, you can control the size of the JVM from the command prompt with the -Xms and -Xmx options. Secondly, any remotely reasonable operating system is going to wait until the JVM has requested memory before allocating all of it. If you start a JVM with a 2Gb heap, it does not occupy 2Gb of physical memory straight away.
    Finally, I did a Google on InVirtus VM Optimizer and must request some information. What does that software have to do with Java? It's designed to reduce the size of a virtual computer as created by a prorgam such as VMWare. It has nothing to do with the Java virtual machine.

  • How to reduce the size of exising tablespace?

    Hi,
    I assigned 2GB dbsize to a tablespace.
    Now I would like to reduce the table space to 1GB.
    The tablespace used is 60MB.
    When I try to reduce the size to 1GB its showing a message as follows.
    "ORA-03297: file contains used data beyond requested RESIZE value".
    Even I truncated all the data from all tables to which this table space is allocated. However, its not allowing me to resize it.
    How can I do this? Is there any other way to do this?
    Thank you,
    Regards,
    Gowtham Sen.

    You may not be able to reduce the size of your datafile just by truncating tables. It does not matter if it is 9i or 10g. TRUNCATE just resets the high watermark of your tables, it leaves the first extent in place. So if you have tables whose first extents reside in the last part of a datafile you cannot resize it below that level.
    See this:
    SQL> create tablespace test2 datafile size 10m autoextend off;
    Tablespace created.
    SQL> create table t1 tablespace test2 as select * from all_objects;
    Table created.
    SQL> insert into t1 select * from t1;
    insert into t1 select * from t1
    ERROR at line 1:
    ORA-01653: unable to extend table YAS.T1 by 128 in tablespace TEST2
    SQL> create table t2(a number) tablespace test2;
    Table created.
    SQL> r
      1  select segment_name,file_id,block_id,blocks from dba_Extents
      2* where TABLESPACE_NAME='TEST2'
    SEGMENT_NA    FILE_ID   BLOCK_ID     BLOCKS
    T1                  9          9          8
    T1                  9         17          8
    T1                  9         25          8
    T1                  9         33          8
    T1                  9         41          8
    T1                  9         49          8
    T1                  9         57          8
    T1                  9         65          8
    T1                  9         73          8
    T1                  9         81          8
    T1                  9         89          8
    SEGMENT_NA    FILE_ID   BLOCK_ID     BLOCKS
    T1                  9         97          8
    T1                  9        105          8
    T1                  9        113          8
    T1                  9        121          8
    T1                  9        129          8
    T1                  9        137        128
    T1                  9        265        128
    T1                  9        393        128
    T1                  9        521        128
    T1                  9        649        128
    T1                  9        777        128
    SEGMENT_NA    FILE_ID   BLOCK_ID     BLOCKS
    T1                  9        905        128
    T1                  9       1033        128
    T2                  9       1161          8As you can see we now have an extent in block 1161 of this datafile.
    Let's try to resize it to half.
    SQL> select file_name from dba_data_files
      2  where TABLESPACE_NAME='TEST2';
    FILE_NAME
    /disk1/oradata/10G/datafile/o1_mf_test2_3qpzcz0z_.dbf
    SQL> alter database datafile '/disk1/oradata/10G/datafile/o1_mf_test2_3qpzcz0z_.dbf' resize 5m;
    alter database datafile '/disk1/oradata/10G/datafile/o1_mf_test2_3qpzcz0z_.dbf' resize 5m
    ERROR at line 1:
    ORA-03297: file contains used data beyond requested RESIZE valueTruncate the tables and try again.
    SQL> truncate table t1;
    Table truncated.
    SQL> truncate table t2;
    Table truncated.
    SQL> alter database datafile '/disk1/oradata/10G/datafile/o1_mf_test2_3qpzcz0z_.dbf' resize 5m;
    alter database datafile '/disk1/oradata/10G/datafile/o1_mf_test2_3qpzcz0z_.dbf' resize 5m
    ERROR at line 1:
    ORA-03297: file contains used data beyond requested RESIZE valueThe reason is:
    SQL> r
      1  select segment_name,file_id,block_id,blocks from dba_Extents
      2* where TABLESPACE_NAME='TEST2'
    SEGMENT_NA    FILE_ID   BLOCK_ID     BLOCKS
    T1                  9          9          8
    T2                  9       1161          8We have an extent at block 1161. Because of that we cannot reduce the size to 5M.
    Let's move the table and try again.
    SQL> alter table t2 move tablespace test2;
    Table altered.
    SQL> r
      1  select segment_name,file_id,block_id,blocks from dba_Extents
      2* where TABLESPACE_NAME='TEST2'
    SEGMENT_NA    FILE_ID   BLOCK_ID     BLOCKS
    T1                  9          9          8
    T2                  9         17          8
    SQL> alter database datafile '/disk1/oradata/10G/datafile/o1_mf_test2_3qpzcz0z_.dbf' resize 5m;
    Database altered.Message was edited by:
    Yas

  • I would like to enlarge the text in the firefox 6.0.2 toolbar. (file, edit, view, etc.)

    The Firefox toolbar is rather small and sometimes hard to read depending upon the circumstances. I would like to enlarge the toolbar and text to double its present size. How do I do so?

    To change the interface text size (including the Menu Bar), install the following Add-on.
    *'''''Theme Font and Size Changer''''': https://addons.mozilla.org/en-US/firefox/addon/theme-font-size-changer/
    To change the font size in the web page display area (where you are reading this message):
    *See --> http://support.mozilla.com/en-US/kb/Page+Zoom
    *See --> http://support.mozilla.com/en-US/kb/Text+Zoom
    *Add-ons:
    **'''''Default FullZoom Level''''': https://addons.mozilla.org/en-US/firefox/addon/default-fullzoom-level/
    **'''''NoSquint''''': https://addons.mozilla.org/en-US/firefox/addon/nosquint/
    ***More info on NoSquint: http://urandom.ca/nosquint/
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • My MACBOOK Pro turned out to be Snow Leopard, and later upgraded to LION. And update the EFI, I would like to replace the Snow Leopard, EFI can not boot, how do? How to use the Snow Leopard install disk to reduce EFI?

    My MACBOOK Pro turned out to be Snow Leopard, and later upgraded toLION. And update the EFI, I would like to replace the Snow Leopard, EFIcan not boot, how do? How to use the Snow Leopard install disk to reduce EFI?

    Do you mean some of your software does not work in Lion? Do you want to return to using Snow Leopard? If so, then do this:
    Downgrade Lion to Snow Leopard
    1.  Boot from your Snow Leopard Installer Disc. After the installer loads select your language and click on the Continue button.  When the menu bar appears select Disk Utility from the Utilities menu.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, set the partition scheme to GUID then click on the OK button. Click on the Partition button and wait until the process has completed.
    4. Quit DU and return to the installer. Install Snow Leopard.
    This will erase the whole drive so be sure to backup your files if you don't have a backup already. If you have performed a TM backup using Lion be aware that you cannot restore from that backup in Snow Leopard (see below.) I suggest you make a separate backup using Carbon Copy Cloner 3.4.1.
    If you have Snow Leopard Time Machine backups, do a full system restore per #14 in Time Machine - Frequently Asked Questions.  If you have subsequent backups from Lion, you can restore newer items selectively, via the "Star Wars" display, per #15 there, but be careful; some Snow Leopard apps may not work with the Lion files.

  • Is there a way to change the size of a sticky note attached to a page?  I would like to make the √ l

    Is there a way to change the size of a sticky note attached to a page?  I would like to make the √ larger.  

    Yes - click on the themes button in the  toolbar and select the new size and type - depending on your selection some text may not fit the new theme - usually everything is ok
    LN

  • Not really a problem just would like to know if I install firefox 4 beta...will I lose my bookmarks already in my current firefox browers and is that the same for the farmville game bar from facebook

    Not really a problem just would like to know if I install firefox 4 beta...will I lose my bookmarks already in my current firefox browers and is that the same for the farmville game bar from facebook

    It should not be a problem, as long as you are careful. Note the delete settings option when uninstalling firefox will delete bookmarks etc for ALL installed versions of firefox.
    Firefox attempts to retain the profile information, that include bookmarks etc when updating. It may still be prudent to consider other backup methods not entirely dependent on firefox.
    The firefox 4 beta will install by default in a slightly different location, you are then able to run either the current or the beta version of firefox. It is recommended you set up a new profile for the new version of firefox. see
    * [[managing profiles]]
    *[http://kb.mozillazine.org/Testing_pre-release_versions]

  • I would like to change the font size (make it larger) in the Finder SIDEBAR

    I would like to change the font size (make it larger) in the Finder SIDEBAR in Leopard.

    Welcome to Apple Discussions.
    vincentd wrote:
    I could also use a larger font in the Finder side bar. Sceen resolutions increase and systems fonts get accordingly smaller...
    Well, if you normally use the lowest resolution, then yes.
    vincentd wrote:
    Also it CAN be done in iMovie 08, why isn't it possible with other Apple apps?
    I can't answer that question. We don't work for Apple here, we're all just plain users who contribute our time, but you can send Mac OS X Feedback
    -mj
    Message was edited by: macjack

  • I have to keep an old version of Firefox for work but would like to download the current version to use personally. Is this possible?

    My work requires I use an old version of Firefox. This means I really can't use it for other things. I would like to install the new version but also keep the old version. Is that possible?

    Yes, you can download the newest version in a portable package so the newer version and the old version you need will keep their files separated from each other.
    http://portableapps.com/apps/internet/firefox_portable
    <!--Hi Moses!!!!!--> [https://support.mozilla.org/en-US/questions/1034886/edit/662278 moses]-->

  • How can I customize the navigation bar in Firefox 29? I would like to have the refresh/stop button back in front of the navigation bar!

    How can I customize the navigation bar in Firefox 29? I would like to have the refresh/stop button back in front of the navigation bar!

    There isn't a built in way to do that since all the navigation toolbars are on one toolbar.
    You can restore this functionality by installing the Classic Theme Restorer add-on
    *https://addons.mozilla.org/en-US/firefox/addon/classicthemerestorer/

  • My MacBook Air's storage is full.   When I look at the storage, most of what is taking up the space is "other".  I am not sure what these application or documents are but would like to reduce this so that I can store more pictures to edit.  Any advice?

    When I look at the storage, most of what is taking up the space is "other".  I am not sure what these application or documents are but would like to reduce this so that I can store more pictures to edit.  Any advice on how to find out what takes up this much space so that I can clear some off? 

    Freeing Up Space on The Hard Drive
      1. See Lion's Storage Display.
      2. You can remove data from your Home folder except for the /Home/Library/ folder.
      3. Visit The XLab FAQs and read the FAQ on freeing up space on your hard drive.
      4. Also see Freeing space on your Mac OS X startup disk.
      5. See Where did my Disk Space go?.
      6. See The Storage Display.
    You must Empty the Trash in order to recover the space they occupied on the hard drive.
    You should consider replacing the drive with a larger one. Check out OWC for drives, tutorials, and toolkits.
    Try using OmniDiskSweeper 1.8 or GrandPerspective to search your drive for large files and where they are located.
    What is "Other" and What Can I Do About It?- Apple Support Communities

  • I have all my devices connected to iCloud.  I would like a reduced contact list on my iPhone without removing any from my master list on my computer.  How do I delete contact numbers from my phone without disrupting the master list on my computer?

    I have all my devices connected to iCloud.  I would like a reduced contact list on my iPhone without removing any from my master list on my computer.  How do I delete contact numbers from my iphone without disrupting the master list on my computer?

    Are you trying to reduce the visual clutter on the phone, save space on the phone, or limit the security exposure if your phone is stolen?
    If you are only wanting to reduce the visual clutter and make scrolling through the list faster, you could set up a group on the computer containing only the contacts you want to see on my phone (called, for example, "Show on my Phone") and enable only that group inside Contacts on the phone. You might even have one or more existing groups that you could enable that way (maybe "Family" and "Personal").

Maybe you are looking for

  • Adobe CS5.5 Master Collection not installing and @AdobeCare don't help!

    This is WHY Adobe is the biggest RIP OFF ever. I bought a copy of CS5.5 Master Collection at an auction (Bought for just over 2k) everything sealed and fine, got it home installed it on my iMac and everything was gravy. Used for around year and half,

  • How Do I 'unhook' two accounts from ONE iCloud Account?

    So this past weekend I bought a new iphone for my wife via the Apple Store online. So I had to log on to my itunes/icloud/Apple account via my ID. When I was going through the buying process I inputted her email address for confirmation of her receip

  • Activating Family Share for Windows only iTunes Users

    Dear community fellows, a search for "family share windows" shows, that the topic was yet discussed in the 4th quarter of 2014 but not yet solved at all, therefore I would like to start and reactivate it again: How can I, a Windows only customer and

  • Hide columns in ALV grid?

    Hi all, I define a structure in the ABAP dictionary. I declare a table of that type in my program. I populate the table with records. I then display the table of data in an ALV grid. I hide three fields in the grid when I build the field catalog. Whe

  • Purchased app not recognized on new phone

    i upgraded my iphone 4 to a 5s today and one of my apps isn't showing up on the new phone after i synced everything. apparently i hadn't backed up to the cloud after i purchased the app but i thought i did. oops! i paid 1.99 for it and i'm trying to