Page 1 of 1

Reduction of size of security number check table

Posted: Wed May 11, 2005 8:43 am
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".

Posted: Wed May 11, 2005 2:51 pm
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

Posted: Wed May 11, 2005 3:15 pm
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.

Posted: Wed May 11, 2005 3:21 pm
by Klemen
YOu're welcome jj :wink: