Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

How do I make these fonts bold?

  • 23 trả lời
  • 2 gặp vấn đề này
  • 983 lượt xem
  • Trả lời mới nhất được viết bởi 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.
Đính kèm ảnh chụp màn hình

Được chỉnh sửa bởi cor-el vào

Giải pháp được chọn

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; }
Đọc câu trả lời này trong ngữ cảnh 👍 1

Tất cả các câu trả lời (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