Hi Brian,
Thanks for the new Menu icon.

Also, I figured out how to solve my issue with the F and C temperature icons both displaying simultaneously - rather than just the one needed (the opposite of the current display).

- Capture2.PNG (2.92 KiB) Viewed 3435 times
The default in the index.php was set to display both:
else if ($units==''){ // default
echo '<a href="?units=us" data-title="Imperial Units">
'.$weather34F.'</a>';
echo '<a href="?units=metric" data-title="Metric Units">
'.$weather34C.'</a>';
}
rather than
else if ($units==''){ // default
echo '<a href="?units=metric" data-title="Metric Units">
'.$weather34C.'</a>';
}
Which just shows the C (metric), since my Default is Imperial.

- Capture3.PNG (3.14 KiB) Viewed 3435 times
Looks like yours might work this way, as well.

- Capture.PNG (5.06 KiB) Viewed 3435 times
Have a great weekend and stay safe,
Chuck