Administrators Thanked: 219 times
add the following line to the js.js:
$(
'input[name=rpagetitle]'
).css(
'font-size'
,
'2em'
);
... or assign a class:
).addClass(
'someclass'
... or use plain css:
input[name=rpagetext] {
font-size
:
2em
; }