I want the tabs below the address bar

Having tabs above the address bar is supposed to be more convenient, but all it means is I have to look up past the address bar to read the name of the tab. Is there a setting to move address back on top?

Right-click on a toolbar, click on the "Tabs on Top" entry to de-select it.

Similar Messages

  • Why is the option to put the tabs below the task bar not available anymore? Very very very annoying!

    I read some posts about it and can't beleive that the developper's opion should take over the user's preferences. That's def. the wrong direction. Let us decide what we think it's best.

    You can look at the Tabs On Bottom or the Classic Theme Restorer extension to restore some lost functionality.
    * https://addons.mozilla.org/firefox/addon/tabs-on-bottom/
    *Classic Theme Restorer: https://addons.mozilla.org/firefox/addon/classicthemerestorer/
    You can also move the tabs to the lower position just above the browsing area without using an extension with code in userChrome.css as basically you only need to give the Tab bar a higher -moz-box-ordinal-group value (most toolbars have a default -moz-box-ordinal-group:1 to show them in DOM order).
    *[[/questions/997353]] How can I put the Tabs back below the navigation bar?
    Add code to the <b>userChrome.css</b> file below the default @namespace line.
    *http://kb.mozillazine.org/userChrome.css
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #TabsToolbar{-moz-box-ordinal-group:10000!important}
    </nowiki></pre>
    The customization files userChrome.css (user interface) and userContent.css (websites) are located in the <b>chrome</b> folder in the Firefox profile folder.
    *http://kb.mozillazine.org/Editing_configuration
    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    * Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
    * Use a plain text editor like [http://en.wikipedia.org/wiki/TextEdit
    TextEdit] to create a (new) userChrome.css file in this folder (the names are case sensitive)
    * Paste the code in the userChrome.css file in the editor window and make sure that the userChrome.css file starts with the default @namespace line

  • How can I move the tabs below the address bar in linux/FF 24?

    I prefer the tabs to be under the address bar on my Firefox. Previously I could simply click or unclick an option to do this, and it remained the same as I upgraded. However, I recently moved to Linux Mint 16, and it had Firefox 24 already installed. I synched my bookmarks, but was unable to locate the option to move the tabs. I actually have the roomy bookmarks toolbar, and the tabs previously sat below it. Ideally, I would like to get them there again.

    You can use the Classic Theme Restorer extension in Firefox 29 and later to restore some lost features including tabs on top.
    *https://addons.mozilla.org/firefox/addon/classicthemerestorer/

  • Put tabs below the navigation and search bar.

    I need to switch the position of the tabs and the navigation and search bars. I want the tabs below the navigation bar, search bar, and the "firefox drop down menu."

    Figured the basic move out, but want to trim the "fat." Can I put the navigation bar and the search bar next to the "firefox" drop down menu?

  • Putting Spry Tabs below the content

    I need to put the navigation tabs below the content and have
    tried to cut-n-paste the <ul></ul> tags that hold the
    navigation but I just mess up the structure.
    How can I do this?
    Thanks ahead of time.
    C

    SecretSanta wrote:
    > I need to put the navigation tabs below the content and
    have tried to
    > cut-n-paste the tags that hold the navigation but I just
    mess
    > up the structure.
    >
    > How can I do this?
    FYI: Spry questions are probably best asked in the Spry
    forums:
    http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=72&catid=602
    The Spry tabbed panels are set up for top tabs or vertical
    left tabs (although you have to change classes in code view to get
    a vertical view of the tabs). So you'd have to go in and rearrange
    the HTML code, change a little CSS and a couple of lines of
    JavaScript for the tabbed panels in order to accomplish what you're
    trying to do.
    Please note that you'll not see this visually within
    Dreamweaver properly as these changes will change the code base and
    Dreamweaver won't recognize what to do with the changes, however, a
    browser should show you what you want.
    Ok, first add a tabbed panel to your document and save the
    page to get the Spry assets into place. Next go into code view and
    move the UL that has the tabs below the DIV that has the content
    panels.
    Next we'll make the changes to the CSS and JavaScript within
    this page rather than modifying the Spry files. This will allow you
    to override the Spry defaults without messing up the base files in
    case you need the "regular" functionality later.
    So add a STYLE block to your page and open the
    SpryTabbedPanels.css file. Copy the .TabbedPanelsTab selector
    (lines 67-83) into your new style block. Then copy
    .TabbedPanelsTabSelected selector (lins 105-108) into the style
    block.
    In .TabbedPanelsTab change top:1px to top: -1px. Then in
    .TabbedPanelsTabSelected change border-bottom to border-top. These
    changes will allow the bottom tab to overlap the bottom of the
    content making it look seamless for the "selected" tab.
    You'll have this when you're done:
    <style type="text/css">
    <!--
    .TabbedPanelsTab {
    position: relative;
    top: -1px;
    float: left;
    padding: 4px 10px;
    margin: 0px 1px 0px 0px;
    font: bold 0.7em sans-serif;
    background-color: #DDD;
    list-style: none;
    border-left: solid 1px #CCC;
    border-bottom: solid 1px #999;
    border-top: solid 1px #999;
    border-right: solid 1px #999;
    -moz-user-select: none;
    -khtml-user-select: none;
    cursor: pointer;
    .TabbedPanelsTabSelected {
    background-color: #EEE;
    border-top: 1px solid #EEE;
    -->
    </style>
    Next create a SCRIPT block then copy the
    Spry.Widget.TabbedPanels.prototype.getTabGroup function (lines
    124-133) and
    Spry.Widget.TabbedPanels.prototype.getContentPanelGroup (lines
    144-153) into your script block. Next change the
    Spry.Widget.TabbedPanels.prototype.getTabGroup function return to
    return children[1] in its 7th line, and change
    Spry.Widget.TabbedPanels.prototype.getContentPanelGroup to return
    children[0] in its 7th lines as well. You'll have something like
    this in your page:
    <script type="text/javascript">
    <!--
    Spry.Widget.TabbedPanels.prototype.getTabGroup = function()
    if (this.element)
    var children = this.getElementChildren(this.element);
    if (children.length)
    return children[1];
    return null;
    Spry.Widget.TabbedPanels.prototype.getContentPanelGroup =
    function()
    if (this.element)
    var children = this.getElementChildren(this.element);
    if (children.length > 1)
    return children[0];
    return null;
    -->
    </script>
    Basically what this JavaScript change does is to move from
    the tabs being the first element within the div that wraps the tabs
    and panels, that is children[0] to its new position of the second
    element children[1]. Same thing with the content panels, except in
    the opposite direction, moving from second child element to first
    child element (JavaScript uses a start position of 0 for the first
    element).
    Should be good to go from there. If not, please post in the
    Spry forums.
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | WebAssist Extensioneer
    | Adobe Community Expert

  • Placing tabs below the address bar

    Hi everyone,
    I recently had to "refresh" Firefox because Adblock Plus kept getting disabled somehow. Now I'm having a hard time getting my layout back to what I'm accustomed to. What I would like is to have the following layout:
    [Menu bar] <br>
    [Address bar] <br>
    [Tabs] <br>
    [Bookmarks toolbar]
    The default is to have tabs on the very top, and with the 'Classic Theme Restorer' I can put the tabs on the very bottom, but I'm trying to get back to having them below the address bar but above the bookmarks toolbar. If you can help me get there, I'd be most grateful!

    See:
    *[[/questions/1049464]] Bookmarks toolbar POSITION resets to the very top after closing firefox
    *[[/questions/807135]] How can I move my toolbars up and down?
    Add code to the <b>userChrome.css</b> file below the default @namespace line.
    *http://kb.mozillazine.org/userChrome.css
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) { -moz-box-ordinal-group:10; }
    #TabsToolbar {-moz-box-ordinal-group: 100!important;}
    #PersonalToolbar {-moz-box-ordinal-group: 101!important;}
    </nowiki></pre>
    The customization files userChrome.css (user interface) and userContent.css (websites) are located in the <b>chrome</b> folder in the Firefox profile folder.
    *http://kb.mozillazine.org/Editing_configuration
    You can use this button to go to the currently used Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *Create the chrome folder (lowercase) in the <xxxxxxxx>.default profile folder if this folder doesn't exist
    *Use a plain text editor like Notepad to create a (new) userChrome.css file in the chrome folder (file name is case sensitive)
    *Paste the code in the userChrome.css file in the editor window
    *Make sure that the userChrome.css file starts with the default @namespace line
    *Make sure that you select "All files" and not "Text files" when you save the file via "Save file as" in the text editor as userChrome.css.<br>Otherwise Windows may add a hidden .txt file extension and you end up with a not working userChrome.css.txt file

  • How do I put shortcuts to web sites in a (?) tool bar/browser bar...don't know what it is called. With IE, I can just drag the tab for the site to the area I want.

    How do I put shortcuts to web sites in a (?) tool bar/browser bar...don't know what it is called. With IE, I can just drag the tab for the site to the area I want

    Near the right-end of the address bar is a white star which can be difficult to see, but look closely. When you wish to bookmark a shortcut to the toolbar, double click the star. A window will open with the name of the webpage. Under that is the folder box which will probably read 'Unsorted Bookmarks'. Click the drop down arrow and change it to 'Bookmarks Toolbar' then click done.
    I have several folders on my toolbar such as Music, Mail, etc. in which I add multiple websites. If you wish to add a folder, click the second drop down arrow next to 'Bookmark Toolbar' and click 'New Folder' and give it a name.
    To add a bookmark to a folder, again double click the star, make sure you are in Bookmark Toolbar and click one of the two drop down arrows to find the name of the folder.
    For other bookmarks use Bookmark Menu. Whatever is added here can be accessed by Bookmarks on the Menu Bar. If your Menu Bar with Bookmark, File, View, etc. is not visible, click the Alt key and they will become visible. To keep the Menu Bar, click View, Toolbars and check Menu Bar.

  • I want my "Tabs" on the bottom and I want my icons with "text". How do I do this with the new 29.0.1 version?

    I want my modify the 29.0.1 version of Firefox to be more like it was i.e. tabs on bottom, text for the icons, and to be able to move the address bar to a more convenient place.

    Changing to Classic still gives no option to put tabs on bottom even thru config toggling to false in 'browser.tabs.onTop' over the years Firefox keeps changing the tabs position and I have to keep putting it back and now they leave the option out to change the Tabs to the bottom...some people think what they like is best and then will not provide you with any freedom of choice..please fix this problem Firefox!!

  • Is it possible to have the menu bar and the tabs on the same level?

    Just downloaded Firefox 4 and I've started to get used to tabs being above the address bar (since it fits the theme so well), but I'm not used to the loss of the menu bar. When I bring the menu bar back, however, it creates a whole new level instead of being on the same level as the tabs like the Firefox button is. I'm just wondering if there's a way to make the menu bar and the tabs on the same level.

    No, that is not possible.
    Press F10 or press and hold the Alt key down to bring up the "Menu Bar" temporarily.
    * New Old Menu: https://addons.mozilla.org/firefox/addon/new-old-menu/
    * Personal Titlebar: https://addons.mozilla.org/firefox/addon/personal-titlebar/
    * Personal Menu (Personal Firefox Button): https://addons.mozilla.org/firefox/addon/personal-menu/

  • ATTENTION MOZILLA DEVELOPERS!!!! I have had numerous issues all occuring within 24-48 hours,The latest is location/address bar not working completely! Who has solutions and fixes that actually work???

    Windows 7 32bit Firefox 3.6.1.1 .... I really liked Firefox until recently!!!!
    I'm not even going to explain all the problems I have had in the last 2 days, but i will tell you i have read so many forums and have done A LOT of fixing, 8 hours worth!! So before someone suggests for me to try a common fix I have done almost all things like. <br />
    Disable extensions<br />
    Disabled/Remove add ons<br />
    Tried all in safe mode<br />
    Deleted files in Firefox Profile<br />
    Renamed files in Firefox Profile<br />
    I have done almost everything except remove Firefox and use a different browser. <br />
    What gets me most is this site (Mozilla support) is the least helpful!! i have found solutions that worked off of Non Mozilla forums!!<br />
    Ok here goes...... <br /> 1. Auto complete works in location/address bar, when I click ENTER on keyboard or click the blue arrow in address bar NOTHING HAPPENS!!! I can go to bookmarks click on one and it will go right to the page! It's like the address bar is dead! <br />2. I have NO search engines in the search bar located right next to address bar, the only solution I found for that called for typing commands in the address bar, which i can do but it wont do anything!!!<br />
    Please keep in mind I did a full Google search on these problems and have found that a lot of people have the same issues regardless of Firefox versions or Operating systems!! <br />
    This is my last attempt to get accurate and proven solutions/fixes to these problems before I wash my hands of Mozilla, I'm sure someone will tell me to just do it!!!<br />
    I am hoping to get knowledgeable responses to this post!!
    THANKS,
    Robert
    I just found out this: Posted November 3, 2010 8:12:18 PM PDT:
    When I go to Firefox profiles folder i have 3 different profiles all with default at the end!!! Which one do i rename and wgich do I delete? See issues just keep getting stickier a more complicated!!!
    Thanks,
    Robert

    You can locate the current [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder] this way:
    *Help > Troubleshooting Information > Profile Directory > Open Containing folder
    If the 11.01 & 11.02 are empty backups then make sure that create a backup of the other .json backups elsewhere as soon as possible to avoid losing backups that may still work.
    The other profiles appear to have older bookmarks. You can check the file compatibility.ini in a profile to see which version of Firefox last used that profile.
    A possibility is to create a fourth profile to test each of the JSON backups and check which bookmarks they store. If you open that profile with the -no-remote switch then you can copy and paste bookmarks from one profile (instance) to another profile. Both profiles need to be open at the same time to do that.
    See http://kb.mozillazine.org/Opening_a_new_instance_of_Firefox_with_another_profile
    http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox

  • Search the Web box to the right of my address bar disappeared, how do I get it back?

    The "Search the Web box to the right of my address bar disappeared. How do I get it back?

    It is gone in the new version of Safari and the Safari in Mountain Lion. You cannot get it back.
    Search is now done inside the adress bar, so you did not lose the search functionally. The location has changed.

  • I recently updated to version 5.0, however, when I open up a link in a new window, there is no address in the new window's address bar, just a blank box.

    I recently updated to version 5.0, however, when I open up a link in a new window, there is no address in the new window's address bar, just a blank box.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    In Firefox 4 you can use one of these to start in <u>[[Safe mode]]</u>:
    * Help > Restart with Add-ons Disabled
    * Hold down the Shift key while double clicking the Firefox desktop shortcut (Windows)
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Why is the background of my address bar coloured red when I am logged in to MyBT, which has a https prefix

    My home page is https://www.bt.com/appsconsumeraccount/find.do?userLoginEventSuccess=true. but the background is red. Is this something I should be concerned about

    Have to post a new reply, to my own question!
    By accident I discovered the error. In Firefox, on the tab "Tools", the choise "Settings" and "Content" under the title "Fonts and colors" there is a button: "Colors". It opens a window, i I than check off the checkmark from the box "Allow pages to choose their own colors, instead of my selections above" - and accept these choises with "OK"... Voilá! There we have the problem once more!
    When I want to change color of my visited internet links and I want to force Firefox to use MY colors on these links, well, Firefox punishes me by destroying every logotype, grid pattern in almanacs and so on in every new site I visit on the internet... And of cause, I never understood the connection between my beautiful burning red visited links and this incomprehensible mystic error of my internet kalender or the other sites...
    So that was the simpel but stupid thruth!!!
    Hopefully some geniuses finds a solution to why Firefoxe acts like this - if I want to have RED visited links instead of blue, to better see the difference between visited and not visited links when surfing the internet, it isn't possible without destroying the looks of the sites I try to visit... (only in my own brouser, but yet... rather irritating!)

  • This may seem basic, but I just discovered that I do not have a share button (the thing with the little arrow popping out) to the left of my address bar on my Mac.  I do have one on my IPad and really like it.  Why don't I have this on my Mac?

    This may seem basic, but I just discovered that I do not have a share button (the one with the little arrow jumping out) to the left of my address bar on Safari for my Mac.  I do have one on my IPad and use it often.  Can anyone tell me why my Mac is missing this icon and how to get it?  Thanks.

    lawrencefromgettysburg wrote:
    I went in to do the software update, and learned that my software is up to date.
    Going from Lion to Mountain Lion is considered an upgrade (because it is not free), not an update.
    So yes, given that you have Lion, you are up to date.  But if you can, you might consider going to Mountain Lion for a fee.
    Here's what you need to do the upgrade:
    System requirements for OS X Mountain Lion

  • When clicking the + tab in the tab bar how do I set new tabs to automatically open my home page

    When clicking the + tab in the tab bar how do I set new tabs to automatically open my home page

    You can do that by using an add-on such as:
    * NewTabURL - https://addons.mozilla.org/firefox/addon/newtaburl
    * New Tab Homepage - https://addons.mozilla.org/firefox/addon/new-tab-homepage
    Another way of opening the home page in a new tab is to middle click on the home button in the navigation toolbar.

Maybe you are looking for

  • Windows 7 bootcamp issue

    I have a MacBook Pro with Windows 7 running on a BootCamp partition.  I only use Windows 7 lightly for military work, and the other day I tried to install a printer and it locked everything up.  Now nothing on Windows 7 works, the mouse, keyboard, et

  • Stock Report in Sap ecc6

    Dear Team, I was previously using Russian J3RFLVMOBVED in Sap ecc6. It was working fine for the last two years for stock valuation quantity & Value wise. From Jan 2012 this report is showing Negative Stock  in the report.  For this i consulted ABAP f

  • Update customer adding partner functions (KNVP)

    Hi, I need to insert new partner functions in a customer. I have been looking for a BAPI but it does not exist. Here in the forum I have seen some threads saying you can use SD_CUSTOMER_MAINTAIN_ALL but there are other threads saying you have to do a

  • Backing up an external HDD

    OK, so I currently have a 186GB(as read by the computer, not manufacturer) External HD serving as my time machine backup of my 122GB(also as read by comp.) internal HD. I will be upgrading to a 640GB(manufacturer reading) external disk and giving awa

  • WebForms And Open MS Word Document EXAMPLE

    Anybody who already got the sample code? Could you please share it to us :)