03-09-2024 05:22 PM
Granted maybe I am doing something wrong. But, please make font sizing apply to bookmarks.
09-29-2024 09:36 AM
Agree. The fonts are too small and there is no way to make them larger.
09-29-2024 03:23 PM
It's quite easy to make EVERYTHING bigger. Open about:config and find layout.css.devPixelsPerPx. The default value is '-1.0' so try changing it to 1.2, without the '-.' If that isn't big enough try 1.25 or 1.3 but DO NOT enter a big value — 2 is huge. If you enter something like 20 it will become so big that you won't be able to see it to change it again.
This will also increase the size of web-content so if that's now too big you can reduce it with the Zoom setting under 'Settings.'
09-30-2024 12:53 AM
Hello
Or, don't use layout.css.devPixelsPerPx
Or, below, and without repercussion on the web pages
userChrome.css, for testing (and for example 15) https://www.youtube.com/embed/P40LEql3MSc
/* global font */
* {font-size: 15pt !important;}
And without repercussion (an example on) about:preferences, you can play with your keyboard Zoom In Zoom Out https://support.mozilla.org/en-US/kb/keyboard-shortcuts-perform-firefox-tasks-quickly#w_current-page
https://www.userchrome.org
https://www.reddit.com/r/FirefoxCSS
If you modify userChrome.css, then, restart Firefox
09-30-2024 06:47 AM
Neither way is perfect and layout.css.devPixelsPerPx is at least easier.
The trouble with just using * in userChrome is that for all that it makes the text bigger it doesn't increase the size of the things it's on: two-line tabs such as YouTube that also say "Playing" and the number of things μBlock Origin is blocking are examples of things that look messy.
If JimHo is happy to dabble with custom CSS and only wants to increase the size of Bookmark labels the best code would be:—
/* Increase size of Bookmark Labels */
.bookmark-item {font-size: 16px !important;}
Obviously 16px can be amended to taste.