Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Learn More

How can I view complete theme hidden under open tabs

  • 3 отговора
  • 23 имат този проблем
  • 1 изглед
  • Последен отговор от cor-el

more options

I downloaded theme PGA golf but cannot see theme as it is hidden under open tabs - and I cannot close all tabs !! How can I view full theme then load up tabs or better still close everything and see full theme on screen .

I downloaded theme PGA golf but cannot see theme as it is hidden under open tabs - and I cannot close all tabs !! How can I view full theme then load up tabs or better still close everything and see full theme on screen .

Променено на от DavidK

Всички отговори (3)

more options

That's how Themes work. Please read this article to understand further about Themes:


http://support.mozilla.com/en-US/kb/Using+themes+with+Firefox

more options

Add extra empty toolbars if you want to see more of the persona.
You can create new toolbars in View > Toolbars > Customize
You have to place something on a toolbar (drag a Space on it) before closing the Customize window as empty toolbars are automatically removed.

See http://kb.mozillazine.org/Toolbar_customization


Another possibility: You can create one toolbar (name: PersonaFiller) via "View > Toolbars > Customize" and put a single Space item on it and use code in userChrome.css to set a min-height for that toolbar.
If you do not want to see that toolbar to get more website space then you only need to remove one check-mark via the right-click context menu

#__customToolbar_PersonaFiller {min-height:100px !important;}


(adjust the height to suit your needs)

Add code to userChrome.css below the @namespace line.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

See http://kb.mozillazine.org/Editing_configuration#How_to_edit_configuration_files

Променено на от cor-el

more options

If you want to hide the Tab bar then see:

Tools > Options > Tabs: [ ] "Always show the tab bar"

You can add code to userChrome.css below the @namespace line.
See http://kb.mozillazine.org/Editing_configuration#How_to_edit_configuration_files

/* Show Close Button On Last Tab */
.tabbrowser-tabs[closebuttons="alltabs"] > .tabbrowser-tab > .tab-close-button {
 display: -moz-box !important;
}
.tabbrowser-tabs:not([closebuttons="noclose"]):not([closebuttons="closeatend"]) > .tabbrowser-tab[selected="true"] > .tab-close-button {
 display: -moz-box !important;
}


Set the pref browser.tabs.closeWindowWithLastTab to false on the about:config page to prevent closing the last tab from closing the browser.

You can also look at this pref: http://kb.mozillazine.org/browser.tabs.closeButtons


To open the about:config page, type about:config in the location (address) bar and press the "Enter" key, just like you type the url of a website to open a website.
If you see a warning then you can confirm that you want to access that page.