How can I make words "Your Reply" bigger ?

Dr. GBooky is here to help you with your guestbook problems ...
Post Reply
kudos131313
Posts: 2
Joined: Wed May 25, 2011 7:37 pm

How can I make words "Your Reply" bigger ?

Post 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...
Henrie
Posts: 1095
Joined: Sun Aug 14, 2005 8:57 pm

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

Post 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
I do not monitor the Gbook forums regularly anymore since I do not use the Gbook script myself anymore for a long time. But it helped me a lot in learning to understand php.
kudos131313
Posts: 2
Joined: Wed May 25, 2011 7:37 pm

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

Post by kudos131313 »

My bad.
It is t30 "Admin Reply" !
Thanks for help.
Post Reply