Please Check-Out My Site, And Give Me Feedback.

Pro, or con. Let me know what you think. This is the first site I ever constructed so I need fresh eyes to look at it. Any improvement suggestions would be welcomed!

www.MohawkValleyWeather.com

Rick Reynolds

maybe might be good to have a link at bottom re what script was used?

It is a courtesy to leave the script authors name/link in the script.

I don’t recall ever removing the tribute to Saratoga.
I just added them on my footer.
Keep in mind I’m a rookie. I’m trying to figure out how to have their name
appear in a blue font, so it is obvious it’s a link.

www.MohawkValleyWeather.com

Rick

:thumbright:

In the script you have code like:


<td colspan="2" align="center">
<small>Main Script Courtesy of 
<a href="https://saratoga-weather.org/scripts.php">Saratoga-Weather.org</a>.</small>
</td>

A couple ways to that but this would be one way:


<td colspan="2" align="center">
<small>Main Script Courtesy of 
<a href="https://saratoga-weather.org/scripts.php" style="color: #3173B1;" >Saratoga-Weather.org</a>
.</small>
</td>

Why is that necessary? His other links to wunderground and meteotreviglio are automatically showing in blue. Is that a .css thing?

Most likely, but I don’t know the template (never used it) and I’m not sure how it is setup. This is an easy fix. More time, I could look at the CSS with a live view and figure it, but time…

However, looking at the CSS and the site, changing the following would do something similar like on the menu.

This is in weather-screen-blue-wide.css…

#footer a {
color: #3173B1;
  background-color: transparent;
padding:2px;
  text-decoration: underline;
  font-weight: bold;
}

#footer a:visited {
  color: black;
  background-color: transparent;
  text-decoration: underline;
  font-weight: bold;
}

#footer a:hover {
color: white; background-color: #3173B1;
  text-decoration: none;
}

The non-indented are what I changed or added.

Without mouse hovering…

With mouse hovering over the link…

That’s nicely done :smiley: