搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

Is there a way to change the tabs' font to BOLD?

  • 5 回覆
  • 2 有這個問題
  • 629 次檢視
  • 最近回覆由 CatsinQ

more options

Hi all, Is there a way in about:config to change the tab font to be bold? Or to change it to a font that is automatically bold (like Aharoni, for ex.)? Thanks! PS, if this requires a css file, I will have a LOT more questions, as I have never written one of those and being somewhat elderly, have never taken a computer course.

Hi all, Is there a way in about:config to change the tab font to be bold? Or to change it to a font that is automatically bold (like Aharoni, for ex.)? Thanks! PS, if this requires a css file, I will have a LOT more questions, as I have never written one of those and being somewhat elderly, have never taken a computer course.

被選擇的解決方法

Yes, you are correct throw in

#TabsToolbar .tabbrowser-tab .tab-content {
  font-weight: 800 !important; }

the css file you already made for tabs on the bottom and save it, and exit and restart firefox and it should have made the tab font bolder.

從原來的回覆中察看解決方案 👍 1

所有回覆 (5)

more options

adding the following css in the userContent.css file

```css

#TabsToolbar .tabbrowser-tab .tab-content {
   font-weight: 800 !important;

} ```

if you want to customize firefox, there is a repo you may be interested in

https://github.com/Aris-t2/CustomCSSforFx

由 Eve 於 修改

more options

Thanks very much for this. I already have a css file - the purpose is to put tabs on bottom. I definitely did not write it - just copied it from the web.

Do I take the code you have above and tack it onto the end of the one I already have? Or do I create a different css file for this?

Thank you so very much!

PS - I looked at the link you included, the "repo" and it was like Greek to me. No clue what it's even trying to teach me. You youngsters are so lucky that this is what you are all growing up with, and that it seems self-evident. :)

由 CatsinQ 於 修改

more options

選擇的解決方法

Yes, you are correct throw in

#TabsToolbar .tabbrowser-tab .tab-content {
  font-weight: 800 !important; }

the css file you already made for tabs on the bottom and save it, and exit and restart firefox and it should have made the tab font bolder.

more options

Oh, sorry. I thought you're a developer.

if you're using Mac

Steps:

1. locate the firefox user profile folder

in `Finder`: `Command+shift+G` input `/Users/lirui/Library/Application Support/Firefox/Profiles` if u are using `Firefox`(this is the folder firefox save all the user-related settings, bookmarks, extension, ...etc)

2. go into the folder looking like`******.default`,

3. create a file named `userChrome.css` (if not existed in the folder)

4. open the file and add the following code(from "#" to "}")

\#TabsToolbar .tabbrowser-tab .tab-content {

  font-weight: 800 !important;

}


5. restart firefox

If you're using Windows

1. the first step is different from mac, ref. to https://support.mozilla.org/en-US/kb/profiles-where-firefox-stores-user-data to locate the user profile folder.

2. follow step 2-5

由 Lirui 於 修改

more options

THANKS YOU GUYS!!! IT WORKED!!!~