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 can one increase or zoom the size of the menu bar tabs/control items? They are tiny at HD resolution.

  • 3 trả lời
  • 3 gặp vấn đề này
  • 190 lượt xem
  • Trả lời mới nhất được viết bởi cor-el

more options

i have a large monitor and i have it set to high res. This makes everything small. I bring it up with no squint but this does not work on the upper menu/tool bar/control/tabs or their drop down menus, leaving me squinting again. There needs to be a no squint feature for this area of the browser

i have a large monitor and i have it set to high res. This makes everything small. I bring it up with no squint but this does not work on the upper menu/tool bar/control/tabs or their drop down menus, leaving me squinting again. There needs to be a no squint feature for this area of the browser

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

NoSquint changes only the web page display, not the Firefox user interface.

Try this Add-on:


If this reply solves your problem, please click "Solved It" next to this reply when signed-in to the forum.



Not related to your question, but...

You may need to update some plug-ins. Check your plug-ins and update as necessary:

Đọ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

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

NoSquint changes only the web page display, not the Firefox user interface.

Try this Add-on:


If this reply solves your problem, please click "Solved It" next to this reply when signed-in to the forum.



Not related to your question, but...

You may need to update some plug-ins. Check your plug-ins and update as necessary:

more options

This is great. The only thing it doesn't do is increase the size of icons, but i can live with that. A low vision person might need more help.

more options

You can use code to userChrome.css below the default @namespace line to increase the icons.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.


@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#nav-bar toolbarbutton > .toolbarbutton-icon {
 height: 24px!important;
 width: 24px!important;
}

#personal-bookmarks .bookmark-item > .toolbarbutton-icon {
 height: 24px!important;
 width: 24px!important;
}