Mr G. |
|
---|---|
Hi.
|
|
Dieser Beitrag wurde von Mr G. (am 4. Februar 2013, 10:40, vor 12 Jahre) bearbeitet |
Kort |
|
---|---|
add the following line to the js.js: $('input[name=rpagetitle]').css('font-size','2em'); ... or assign a class: $('input[name=rpagetitle]').addClass('someclass'); ... or use plain css: input[name=rpagetext] { font-size:2em; }
SED.by - создание сайтов, разработка плагинов и тем для Котонти
|
|
Dieser Beitrag wurde von Kort (am 23. Januar 2013, 16:10, vor 12 Jahre) bearbeitet |
Mr G. |
|
---|---|
Thanks for answer. not so handy solution, but i think i have no choice :) i thought maybe there is some trick with callbacks or $R |
Trustmaster |
|
---|---|
Right guess about $R, what you need to override is $R['input_text_rpagetitle'] in your theme PHP file. May the Source be with you!
|
Mr G. |
|
---|---|
#36876 Trustmaster: Works fine, thx :) Added 1 weeks later: Hi, i have another question. I have extra field select on page (License) with some options (by, by-sa, by-nc, by-nc-sa, by-nd, by-nc-nd), and in language file ie. $L[license_by] = 'Attribution'; $L[license_by-sa]=........ , that works fine on page.edit.tpl, but on page.tpl i want to display options from db not translations, cuz it's a part of link <a href="http://creativecommons.org/licenses/{PAGE_LICENSE}/3.0/pl/" title="creativecommons"><img src="http://i.creativecommons.org/l/{PAGE_LICENSE}/3.0/pl/88x31.png" alt="creativecommons"/></a> Any ideas how to do it? |
|
Dieser Beitrag wurde von Mr G. (am 4. Februar 2013, 10:49, vor 12 Jahre) bearbeitet |
Trustmaster |
|
---|---|
There's a new type of tags recently added for that: {PAGE_LICENSE_VALUE} for instance. I'm not sure if it is already available in 0.9.12.1 or you need to grab the latest version from Github to use them. May the Source be with you!
|