I do not know what text size you want to change, so I will just name the most used.
The text sizes can be changed by changing the the ?? in
font-size: ??px of the appropriate class which can be found in the style.css file inside the template folder.
To know which class you will have to change, it is best to look at the source code of the page and see what class name is assigned to the text you want to change.
Here is an example (which corresponts to the below screenshots):
If you you wont the increase the size of the comments that are written (in my screenshots
test4 voor e-mail and
test3 e-mail, etc. You can see that it is inside the span with class name gbook_comment. Thus inside the the style.css file, search for this class name. You will find:
Code: Select all
span.gbook_comment{font-family:Verdana, Geneva, Arial, Helvetica, sans-serif; color:#464645; font-size:12px; float:left; line-height:18px; margin-right:5px; text-align:justify; }
To increase the font size, change font-size:12px to font-size:14px or even bigger.
I have added screenshots to make it more clear (I hope):
First a screenshot on which I have used a Firefox plugin (Web Developer) to display the class names of the used 'span's in the guestbook. I did this because most texts are placed within a 'span'.
Second the sourcecode that goes with the above screenshot
I hope this was enough help.
Greetings,
Henrie
And thank you for drink, I hadn't had time to thank you for it yet. Btw, I will take it as a thanks for this thread, because the other one was so small it was not tip worthy.
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.