I notice that if something is left blank, the table looks odd. I can't attach a screen grab, but essentially the empty table column/row has no border. Is there a way to fix this, or a way to send a screen grab. A picture is indeed worth 1,000 words.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Sending a picture is easy. Press the PrtSc key on your keyboard then paste the image into MS Paint. Copy the part you want from MS Paint then paste it into your email or whatever.
I suspect the change you suggest is easy but let me experiment for a bit.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
In the admin folder, edit the index.php file. Around line 247 edit the for loop to look like this:
for ($k=0;$k<sizeof($holder);$k++) {
if (!$holder[$k]) {echo "<td class='small'><center> </center></td>";} else {
echo "<td class='small'><center>$holder[$k]</td>";
}
}
FYI, it's not really a missing border.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I notice that if something is left blank, the table looks odd. I can't attach a screen grab, but essentially the empty table column/row has no border. Is there a way to fix this, or a way to send a screen grab. A picture is indeed worth 1,000 words.
Sending a picture is easy. Press the PrtSc key on your keyboard then paste the image into MS Paint. Copy the part you want from MS Paint then paste it into your email or whatever.
I suspect the change you suggest is easy but let me experiment for a bit.
In the admin folder, edit the index.php file. Around line 247 edit the for loop to look like this:
for ($k=0;$k<sizeof($holder);$k++) {
if (!$holder[$k]) {echo "<td class='small'><center> </center></td>";} else {
echo "<td class='small'><center>$holder[$k]</td>";
}
}
FYI, it's not really a missing border.