Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Pretraži podršku

Izbjegni prevare podrške. Nikad te nećemo tražiti da nas nazoveš, da nam pošalješ telefonski broj ili da podijeliš osobne podatke. Prijavi sumnjive radnje pomoću opcije „Prijavi zlouporabu”.

Learn More

How can I view web pages in Segoe UI *Light*, please?

  • 2 odgovora
  • 4 imaju ovaj problem
  • 1 prikaz
  • Posljednji odgovor od rootof

more options

I am looking for a way to make the Segoe UI Light font available to the Options dialogue in Firefox. I am already using this attractive font in Thunderbird.

I am looking for a way to make the Segoe UI Light font available to the Options dialogue in Firefox. I am already using this attractive font in Thunderbird.

Izabrano rješenje

To Firefox, Segoe UI and Segoe UI Light are the same font family. The former is used for normal weight, while the latter is used for lighter weight.

1. Install the Stylish add-on.

2. If you want to ignore fonts specified by web pages and use Segoe UI Light for all elements if possible, paste the following in a new style and save it.


@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("http") {

* {
  font-family: "Segoe UI" !important;
  font-weight: 300 !important;
}

}

3. If you only want to use Segoe UI Light when the web page doesn't specify a particular font (e.g. Wikipedia), use the same style as above, but delete both instances of !important

Pročitaj ovaj odgovor u kontekstu 👍 0

Svi odgovori (2)

more options

Odabrano rješenje

To Firefox, Segoe UI and Segoe UI Light are the same font family. The former is used for normal weight, while the latter is used for lighter weight.

1. Install the Stylish add-on.

2. If you want to ignore fonts specified by web pages and use Segoe UI Light for all elements if possible, paste the following in a new style and save it.


@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("http") {

* {
  font-family: "Segoe UI" !important;
  font-weight: 300 !important;
}

}

3. If you only want to use Segoe UI Light when the web page doesn't specify a particular font (e.g. Wikipedia), use the same style as above, but delete both instances of !important

more options

@Gingerbread_Man

Many thanks indeed for your helpful solution - J P D would be proud of you!

I particularly like the fact that (presumably) this approach could be used to apply other fonts and weights to Firefox.