Reduction of size of security number check table
Reduction of size of security number check table
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".
Hi,
Open gbook.php in a plain text editor (Notepad, Wordpad) and find this code with the search function:
then change it to
Replace XXX with the width number in pixels. If you want the table to be 400px width you would use:
Save, upload, test.
Regards
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">
Code: Select all
<table class="entries" cellspacing="0" cellpadding="4" border="0" width="XXX">
Code: Select all
<table class="entries" cellspacing="0" cellpadding="4" border="0" width="400">
Regards
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
Klemen Stirn wrote:Hi,
Open gbook.php in a plain text editor (Notepad, Wordpad) and find this code with the search function:
then change it toCode: Select all
<table class="entries" cellspacing="0" cellpadding="4" border="0">
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="XXX">
Save, upload, test.Code: Select all
<table class="entries" cellspacing="0" cellpadding="4" border="0" width="400">
Regards
thanks for that.
YOu're welcome jj 

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