diff --git a/README.md b/README.md
index b43b3a1..4b3a037 100644
--- a/README.md
+++ b/README.md
@@ -115,6 +115,9 @@ V1.0.1:
- git: implement .gitignore to ignore www/participants, otherwise you can't do torsocks git pull without having to do a git stash
- py: since .gitignore makes it so that www/participants doesnt exist, automatically create the directory structure from www/.official_participants
- git: figured out how to have an automatically updated lantern instance via gitignore+cronjob
+
+V1.0.2:
+- php+css : make the css styling not ugly on mobile
```
Future Versions:
diff --git a/www/header.php b/www/header.php
index 3df70e9..d560fea 100644
--- a/www/header.php
+++ b/www/header.php
@@ -60,13 +60,13 @@ if (!preg_match("~^(?:f|ht)tps?://~i", $data[3])) {
if ($oldcatname != $data[1]){
//echo "
"; // skip a row if new category
//echo "
"; // skip a row if new category
- echo "
" . $data[1] . '
'; // display the category as its the first row with this new category
+ echo '
' . $data[1] . '
'; // display the category as its the first row with this new category
$oldcatname=$data[1];
}else{
echo "
" . '
'; // category is already displayed so skip it (empty cell in category column)
}
- echo "
"; // display the score and close the second cell, open the third cell
if($data[6] == "YES"){
@@ -196,8 +196,7 @@ if (($handle = fopen($csvfile, "r")) !== FALSE) {
-
-