This topic is locked
[SOLVED]

 Is it possible to bigger the font size of the dropdowns?

5/6/2010 7:25:19 PM
PHPRunner General questions
N
Nelson author

Hi,
Is it possible to bigger the font size of the dropdowns?...


Sergey Kornilov admin 5/7/2010

You can add the following code to 'Javascript OnLoad' event of the Add page:

$.each($("select"),function(i,e){

$(this).css('fontSize', '120%');

});
N
Nelson author 5/7/2010



You can add the following code to 'Javascript OnLoad' event of the Add page:

$.each($("select"),function(i,e){

$(this).css('fontSize', '120%');

});



Thank you, Sir.