Page 1 of 1

How can I make words "Your Reply" bigger ?

Posted: Wed May 25, 2011 7:48 pm
by kudos131313
hi there, I have a small problem here.

How can I make words "Your Reply" bigger ?

// ======================================
Comments
test test bla bla bla....

Your Reply : bla bla bla ~~~~ <--- Words "Your Reply" are too small
// ======================================

i found the code in the file "language.inc.php" is t25

but i can't find where it is in the other files...

Re: How can I make words "Your Reply" bigger ?

Posted: Wed May 25, 2011 10:43 pm
by Henrie
Where do you get that?

I only get the "Admin Reply" , code t30 in language.inc.php file.
If you get the text "Your reply" somewhere, please tell me where, because I can not find it.

You can change the size of the "Admin Reply" text by editing file gbook.php on line 1097

Code: Select all

$comment .= '<br class="clear" /><br class="clear" /><i><b>'.$lang['t30'].'</b> '.str_replace('##GBOOK_TEMPLATE##',$settings['tpl_path'],$reply).'</i>';
Change it to something like:

Code: Select all

$comment .= '<br class="clear" /><br class="clear" /><i><b><span style="font-size:15px">'.$lang['t30'].'</span></b> '.str_replace('##GBOOK_TEMPLATE##',$settings['tpl_path'],$reply).'</i>';
Greetings,
Henrie

Re: How can I make words "Your Reply" bigger ?

Posted: Thu May 26, 2011 4:35 am
by kudos131313
My bad.
It is t30 "Admin Reply" !
Thanks for help.