I'd like to remove the guestbook post-it image (book.png) at the top of the page. I looked through all of the files looking for anything that could relate to the image, but couldn't find it.
I would also like to remove the captcha so users don't have to enter anything when signing my guestbook. I don't know PHP, so I don't want to go through deleting things I shouldn't.
If someone can help, that'd be great, thanks!
Logan
Remove Guestbook Image and Captcha
Hello Logan,
and remove the part.
You also might want to disable the anti-spam question by setting:
Greetings,
Henrie
Find the file style.css in templates/default folder. Search for this line (GBook version 1.7)I'd like to remove the guestbook post-it image (book.png) at the top of the page
Code: Select all
#gbook_header{width:600px; height:150px; margin:0 auto; background-image:url(images/book.png); background-repeat:no-repeat;}
Code: Select all
background-image:url(images/book.png);
Open the settings.php file and setI would also like to remove the captcha so users don't have to enter anything when signing my guestbook.
Code: Select all
$settings['autosubmit']=0;
Code: Select all
$settings['spam_question']='';
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.
Just my 2 cents: I would recommend leaving at least the SPAM question or you might start getting SPAM to your guestbook.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here 
You should follow me on Twitter here
Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools


Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...
Also browse for php hosting companies, read php books, find php resources and use webmaster tools
I'll re-add the spam things if I start getting any. Just trying to simplify it a little bit for a guestbook on a wedding site.Klemen wrote:Just my 2 cents: I would recommend leaving at least the SPAM question or you might start getting SPAM to your guestbook.
Now another question: I deleted the image and now the links and title on top are a little off center. Anything I could do to change that?
Here's the link to my guestbook.
And here's the link to the page I would like the guestbook on, so you can see it in the frame.
And if you guys are bored and still want to help me...The comment box could be not as tall, considering the frame it will be in is rather small.
Thanks for the help guys, this is a great little guestbook

Hello Logan,
If you want to center the title and links on top, change the following in style.css file:
Change current #gbook_header {} to
Change current #gbook_top_links{} to
and change current h1{} to
h1{margin:0; padding-top:5px; font-family:Verdana, Geneva, Arial, Helvetica, sans-serif; color:#010097; font-weight:bold; font-size:20px;}
And i see that you have changed in overall_header.php
<div id="gbook_top_links"> to <div id="gbook_top_links" align="center">
You should change it back to <div id="gbook_top_links">
Greetings,
Henrie
If you want to center the title and links on top, change the following in style.css file:
Change current #gbook_header {} to
Code: Select all
#gbook_header{height:100px; margin:0px auto; text-align:center; }
Code: Select all
#gbook_top_links{height:50px; margin:auto; margin-top:10px;}
h1{margin:0; padding-top:5px; font-family:Verdana, Geneva, Arial, Helvetica, sans-serif; color:#010097; font-weight:bold; font-size:20px;}
And i see that you have changed in overall_header.php
<div id="gbook_top_links"> to <div id="gbook_top_links" align="center">
You should change it back to <div id="gbook_top_links">
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.
One last question and I should be done bugging you 
The view guestbook and sign guestbook pages both have different space after the links on top. How would I make them the same?
Probably going to have to buy you a drink for helping me
Thanks again!
Forgot to include a link to the guestbook!

The view guestbook and sign guestbook pages both have different space after the links on top. How would I make them the same?
Probably going to have to buy you a drink for helping me

Thanks again!
Forgot to include a link to the guestbook!
Hello Logan,
No need to bribe me
There are 2 possible ways to solve this:
Henrie
No need to bribe me

There are 2 possible ways to solve this:
- Read my response here: viewtopic.php?p=12523#12523
- In style.css file remove height:50px; in #gbook_header{} and #gbook_top_links{}
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.