Reduction of size of security number check table
Posted: Wed May 11, 2005 8:43 am
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".
https://developers.phpjunkyard.com/
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">
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