I like the look of rounded corners on my weather site:
http://weather.lakewebster.com/To apply this to any site using Saratoga Weather Templates, download the zip archive from my GitHub extract it in your weather site's web root (or just copy and paste the CSS file content direct from GitHub):
https://github.com/stevejenkins/saratoga-rounded-cornersThe archive contains a simple CSS file that will apply rounded borders to the default Saratoga Templates. Of course, if you've previously modified your CSS, this may or may not work for you. But it probably will.
The current version (updated
Feb 9, 2015) adds rounded corners to:
- Page header (sitewide)
- Page Footer (sitewide)
- Outside border (sitewide)
- Forecast and moon icons (homepage
Once the CSS file is on your server, edit your
top.php file and locate the following two lines (probably around line 111):
<link rel="stylesheet" type="text/css" href="<?php echo $SITE['CSSscreen']; ?>" media="screen" title="screen" />
<link rel="stylesheet" type="text/css" href="<?php echo $SITE['CSSprint']; ?>" media="print" />
Add the following line right
BELOW those two lines:
<link rel="stylesheet" type="text/css" href="/weather-rounded-corners.css" media="screen" title="screen" />
Save the file, and you should have rounded corners!
If you look at the CSS in the file, you'll note that I've set the border radius for the colored backgrounds in the header and footer to 11px, while the outside border is 12px in others. That's because you'd see a 1 pixel gap between the background and border if you set them to the same values.
Enjoy!