Spletno mesto bo delovalo z omejenimi zmožnostmi, medtem ko na njem izvajamo vzdrževalna dela za vas. Če članki ne rešijo vaše težave in želite zastaviti vprašanje, naša skupnost za podporo čaka na vas na @FirefoxSupport na Twitterju in na /r/firefox na Redditu.

Iskanje po podpori

Izogibajte se prevarantski tehnični podpori. Nikoli vam ne bomo naročili, da pokličete telefonsko številko ali nam pošljete osebne podatke. Sumljivo dejavnost prijavite z gumbom »Prijavi zlorabo«.

Več o tem

Bookmarks sidebar font size edit

  • 2 odgovora
  • 1 ima to težavo
  • 1 ogled
  • Zadnji odgovor od ab2qik

more options

ff-90.0.2

Followed community advice but the following fails to work.

https://support.mozilla.org/en-US/questions/1306797

1. open "Help -> Troubleshooting Information" & find button to access the profile folder

2. find this button under: Application Basics > Profile dir > Open directory=/home/ab2qik/.mozilla/firefox/p3bbumtq.default-release click this button to open profile folder in Explorer

3. create a dir=chrome in this folder(all lowercase) 4. In dir=chrome create a text file=userChrome.css(all case sensitive) 5. userChrome.css - paste in text below 6. paste below code into chrome/userChrome.css:

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

  1. personal-bookmarks .toolbarbutton-text { font-size: 15px !important; }

7. (Quit/Exit) browser & restart Firefox when you create or modify the userChrome.css file.

8. Firefox 69 & later

about:config > toolkit.legacyUserProfileCustomizations.stylesheets = true

set above pref to true this enables userChrome.css & userContent.css in chrome folder

ff-90.0.2 Followed community advice but the following fails to work. https://support.mozilla.org/en-US/questions/1306797 1. open "Help -> Troubleshooting Information" & find button to access the profile folder 2. find this button under: Application Basics > Profile dir > Open directory=/home/ab2qik/.mozilla/firefox/p3bbumtq.default-release click this button to open profile folder in Explorer 3. create a dir=chrome in this folder(all lowercase) 4. In dir=chrome create a text file=userChrome.css(all case sensitive) 5. userChrome.css - paste in text below 6. paste below code into chrome/userChrome.css: @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */ #personal-bookmarks .toolbarbutton-text { font-size: 15px !important; } 7. (Quit/Exit) browser & restart Firefox when you create or modify the userChrome.css file. 8. Firefox 69 & later about:config > toolkit.legacyUserProfileCustomizations.stylesheets = true set above pref to true this enables userChrome.css & userContent.css in chrome folder

Izbrana rešitev

The code you posted only works for the bookmarks toolbar and not for the sidebar.

#personal-bookmarks .toolbarbutton-text { font-size: 15px !important; }

Try this code instead:

.sidebar-placesTreechildren::-moz-tree-cell-text {font-size:15px!important;}

Preberite ta odgovor v kontekstu 👍 1

Vsi odgovori (2)

more options

Izbrana rešitev

The code you posted only works for the bookmarks toolbar and not for the sidebar.

#personal-bookmarks .toolbarbutton-text { font-size: 15px !important; }

Try this code instead:

.sidebar-placesTreechildren::-moz-tree-cell-text {font-size:15px!important;}

more options

Thankyou its solved.