Kërkoni te Asistenca

Shmangni karremëzime gjoja asistence. S’do t’ju kërkojmë kurrë të bëni një thirrje apo të dërgoni tekst te një numër telefoni, apo të na jepni të dhëna personale. Ju lutemi, raportoni veprimtari të dyshimtë duke përdorur mundësinë “Raportoni Abuzim”.

Learn More

How do I make these fonts bold?

  • 23 përgjigje
  • 2 e kanë hasur këtë problem
  • 495 parje
  • Përgjigjja më e re nga darthhellokitty

more options

As you can see from the screenshot, they are hard to read.

As you can see from the screenshot, they are hard to read.
Foto të bashkëngjitura ekrani

Ndryshuar nga cor-el

Zgjidhje e zgjedhur

I notice this line at the bottom of your code that doesn't work for current releases because they changed browser.xul to browser.xhtml as the consequence of moving from XUL to HTML namespace. Best is to leave out and only leave the #PlacesToolbarItems line.

@-moz-document url(chrome://browser/content/browser.xul){
  #PlacesToolbarItems { font-weight: bold !important; }
}

Change to :

 #PlacesToolbarItems { font-weight: bold !important; }

For that tab bar you need the .tabbrowser-tab selector. You may have to adjust the text color as well.

.tabbrowser-tab { font-weight: bold !important; }
Lexojeni këtë përgjigje brenda kontekstit 👍 1

Krejt Përgjigjet (3)

more options

I followed your instructions - here's what the userchrome.css file looks like now. Still no change in the menu bar as you can see.

more options

darthhellokitty said

I followed your instructions - here's what the userchrome.css file looks like now. Still no change in the menu bar as you can see.

You should delete everything above

#menubar-items { font-size:12pt !important; }

Also, consider using pixel measurements (px). 12px is the default size for the toolbar on Windows, 16px is the default size of text in web pages. Somewhere in between might be comfortable. To get a sense of it, you can play with the boxes in the third column here (scroll down a bit to get to the tab bar demo):

https://www.userchrome.org/firefox-89-styling-proton-ui.html#tabstyler

more options

IT WORKED!!!!!

Thanks so much for your patience walking me through this.

  1. 1
  2. 2