cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

bookmark font size

JimHo
Making moves

Granted maybe I am doing something wrong.  But, please make font sizing apply to bookmarks.

4 REPLIES 4

EdSager
Making moves

Agree. The fonts are too small and there is no way to make them larger.

ThePillenwerfer
Familiar face

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.'

Agentvirtuel
Contributor

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

ThePillenwerfer
Familiar face

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;}

Screenshot at 2024-09-30 14-41-58.png

 Obviously 16px can be amended to taste.