为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Increase font size of bookmarks toolbar and search bar

  • 2 个回答
  • 6 人有此问题
  • 1 次查看
  • 最后回复者为 cor-el

more options

Hi! There are multiple recent threads on this issue, and not one of them has a solution, so I'm asking again. I want to increase the font size of the top header text, specifically the bookmarks toolbar, search bar, and tab titles. The text is too small for me to read. It would also be useful if I could increase the font size for the applications menu (the hamburger drop down menu in the far right of the header).

I do not want to increase the size of anything else, so changing layout.css.devPixelsPerPx is not the solution. I have changed my global zoom settings, and set them specifically to "Zoom text only", but this setting does not effect the bookmarks toolbar or the search bar. Changing the default font size also does not increase the size of this text.

Just to clarify again, these threads are not solutions to my question: https://support.mozilla.org/en-US/questions/1214027 https://support.mozilla.org/en-US/questions/1293358

Hi! There are multiple recent threads on this issue, and not one of them has a solution, so I'm asking again. I want to increase the font size of the top header text, specifically the '''bookmarks toolbar, search bar, and tab titles'''. The text is too small for me to read. It would also be useful if I could increase the font size for the applications menu (the hamburger drop down menu in the far right of the header). I do not want to increase the size of anything else, so changing layout.css.devPixelsPerPx is not the solution. I have changed my global zoom settings, and set them specifically to "Zoom text only", but this setting does not effect the bookmarks toolbar or the search bar. Changing the default font size also does not increase the size of this text. Just to clarify again, these threads are not solutions to my question: [https://support.mozilla.org/en-US/questions/1214027 https://support.mozilla.org/en-US/questions/1214027] [https://support.mozilla.org/en-US/questions/1293358 https://support.mozilla.org/en-US/questions/1293358]

所有回复 (2)

more options

That preference does change the size of web content as well as the user interface but you can change your zoom setting to offset that in Settings > General > Language and Appearance > Zoom.

https://support.mozilla.org/en-US/kb/font-size-and-zoom-increase-size-of-web-pages

You can also create a file userChrome.css to change font sizes. More on that if you are willing to do that. Remove the blank space in the following link.

https://www.userchrome. org/how-create-userchrome-css.html

more options

Note that using "Zoom text only" can cause text overlapping issues with webpages that position text absolutely as this doesn't adjust containers. Best is always to use full page zoom to increase the containing elements as well.

Changing the font-size in that many places unnecessarily complicates the code making it a lot more difficult to maintain (i.e. it can easily get broken).

What is against using layout.css.devPixelsPerPx on your Mac (what do you not want to get changed in the user interface) ? Do you have a high definition (retina) display ?

I use this code in userChrome.css for some of the input fields (I prefer a mono-spaced font):

.urlbar-input-box, .findbar-textbox, .searchbar-textbox {
 font-size: 11pt !important;
 font-family: "DejaVu Sans Mono" !important;}