From 8636ea64e6e157410effbd1804e134ace78d0cd0 Mon Sep 17 00:00:00 2001 From: Stephen Jianu Date: Sun, 30 Mar 2025 16:11:44 -0500 Subject: [PATCH] Add some padding between the day names and the weather icons --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 5bf1678..62217aa 100644 --- a/index.php +++ b/index.php @@ -34,7 +34,7 @@ $precipSum = $json["daily"]["precipitation_sum"][$i]; echo "
\n"; echo "

\n"; - echo "".date('l', strtotime($json["daily"]["time"][$i]))."
\n"; + echo "".date('l', strtotime($json["daily"]["time"][$i]))."

\n"; echo "

\n"; echo "".$description."
\n"; echo "High: ".$tempHigh."° F\n"; -- 2.39.5