Increase default font size

If you're a new user of AppGini, feel free to ask general usage questions, or look for answers here.
Post Reply
User avatar
D Oliveira
AppGini Super Hero
AppGini Super Hero
Posts: 347
Joined: 2018-03-04 09:30
Location: David

Increase default font size

Post by D Oliveira » 2019-04-29 18:24

How to increase default font size?

Thank you.

pbottcher
AppGini Super Hero
AppGini Super Hero
Posts: 1635
Joined: 2018-04-01 10:12

Re: Increase default font size

Post by pbottcher » 2019-04-29 20:28

Hi,

you can try this:

Code: Select all

var selector_resize = new Array('*','.resizable');
selector_resize = selector_resize.join(',');
$j(selector_resize).css('font-size', newFontSize);
Any help offered comes with the best of intentions. Use it at your own risk. In any case, please make a backup of your existing environment before applying any changes.

User avatar
D Oliveira
AppGini Super Hero
AppGini Super Hero
Posts: 347
Joined: 2018-03-04 09:30
Location: David

Re: Increase default font size

Post by D Oliveira » 2019-05-15 15:34

pböttcher wrote:
2019-04-29 20:28
Hi,

you can try this:

Code: Select all

var selector_resize = new Array('*','.resizable');
selector_resize = selector_resize.join(',');
$j(selector_resize).css('font-size', newFontSize);
Thank you, that worked.

rpierce
Veteran Member
Posts: 255
Joined: 2018-11-26 13:55
Location: Washington State

Re: Increase default font size

Post by rpierce » 2019-07-29 18:05

Where do you put this code??

Post Reply