Reduction of size of security number check table

Dr. GBooky is here to help you with your guestbook problems ...
Post Reply
pete

Reduction of size of security number check table

Post by pete »

Please can you tell me where in the code l can reduce the size of the width of the table which contains the text "Please type in the security number".
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

Hi,

Open gbook.php in a plain text editor (Notepad, Wordpad) and find this code with the search function:

Code: Select all

<table class="entries" cellspacing="0" cellpadding="4" border="0">
then change it to

Code: Select all

<table class="entries" cellspacing="0" cellpadding="4" border="0" width="XXX">
Replace XXX with the width number in pixels. If you want the table to be 400px width you would use:

Code: Select all

<table class="entries" cellspacing="0" cellpadding="4" border="0" width="400">
Save, upload, test.

Regards
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image 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
Guest

Post by Guest »

Klemen Stirn wrote:Hi,

Open gbook.php in a plain text editor (Notepad, Wordpad) and find this code with the search function:

Code: Select all

<table class="entries" cellspacing="0" cellpadding="4" border="0">
then change it to

Code: Select all

<table class="entries" cellspacing="0" cellpadding="4" border="0" width="XXX">
Replace XXX with the width number in pixels. If you want the table to be 400px width you would use:

Code: Select all

<table class="entries" cellspacing="0" cellpadding="4" border="0" width="400">
Save, upload, test.

Regards

thanks for that.
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Post by Klemen »

YOu're welcome jj :wink:
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image 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
Post Reply