I'm attempting to run a split test with Optimizely and need to increase the size of the font that is used as description text in my site search's search field.
I've managed to change the color using this code:
$("input[value]").css({"color":"#cc0000"});
But if I add on font-size to this nothing happens? i.e.
$("input[value]").css({"color":"#cc0000", "font-size" : "1.9rem"});
I've also tried the following but it still doesn't seem to work??
$("input").css({"font-size" : "1.9rem"});