some questions about 'about:config'

Users and developers helping users with generic and technical Pale Moon issues on all operating systems.

Moderator: trava90

Forum rules
This board is for technical/general usage questions and troubleshooting for the Pale Moon browser only.
Technical issues and questions not related to the Pale Moon browser should be posted in other boards!
Please keep off-topic and general discussion out of this board, thank you!
mipak
Moon lover
Moon lover
Posts: 76
Joined: 2016-10-21, 15:01

some questions about 'about:config'

Unread post by mipak » 2018-01-12, 20:34

I would like to increase the width of the scrollbar in Palemoon from 2.5mm/3mm to 5mm.

I went into 'about:config' and discovered there were just over 60 lines with the word 'scroll' in each of them but which one to adjust, I have no idea.

also in 'about:config', I didn't count how many lines there were containing 'font' but there were loads of them including a large number relating to different languages.
In the main Palemoon, all the words at the top including the two text fields I'm looking at now are very tiny and I'd like to know what to look for in order to increase the font size.
In tools > options > content, the font size appears to only apply to what's on the main screen and not to the two or three bars that run across the top of the screen.

If anyone is able to point me in the right direction, either in or out of 'about:config', I'd be really grateful.

qrestlove

Re: some questions about 'about:config'

Unread post by qrestlove » 2018-01-13, 01:27

Regarding changing the width of the scrollbar: I don't know for sure if that is an option in Pale Moon. But NewScrollbars extension -- https://addons.mozilla.org/en-US/firefo ... crollbars/ -- can still be used with Pale Moon by default, and there's a setting there to customize the scrollbar in various ways, including width. Hopefully that works for you.


Goodydino
Keeps coming back
Keeps coming back
Posts: 827
Joined: 2017-10-10, 21:20

Re: some questions about 'about:config'

Unread post by Goodydino » 2018-01-16, 20:14

To change the width of scrollbars, you could use a userChrome.css file. I think this code would do it:
/*Scrollbar width*/
scrollbar[orient="vertical"] {
width:15px !important;
}
scrollbar[orient="horizontal"] {
height:15px !important;
}

To change the size of text in the whole interface (which was too small for me to read comfortably), I used this code:
/*Global UI font*/
* font-size: 15px !important;
}

At the top of the file, you need this code:
/* Do not remove the @namespace line -- it's required for correct functioning */
@namespace url("http://www.mozilla.org/keymaster/gateke ... s.only.xul");

This page gives more info about userChrome.css and how to set it up. http://kb.mozillazine.org/UserChrome.css

Locked