Larger URL Preview

I am not sure what it is called, but in the lower-left section of Firefox is a URL preview whenever you mouse over a link.

Is there a Firefox addon (or another way) to make this URL preview appear larger?

EDIT: I am aware of the ability to change text size for ALL of windows in the Eye and Control settings, but I’m ONLY seeking info on how to change the size of the URL preview.

There’s no built-in way to modify the font size of individual parts of Firefox.

There is a community-supported (i.e., unofficial) method, which is to use a userChrome.css file to override the font size for that element.

The code to set a new font size is not complicated, but the implementation takes some time because there are several steps.

Code:

#statuspanel-label { font-size: 16px !important; }

Process:

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

Before and after:

2 Likes

Excellent. Thank you for taking the time to answer my question. Your directions worked perfectly. I just changed it to 24, instead of 16 and now I can very clearly see the links.

Thank you again