Does anyone know of a really clean, simple weather feed (preferably just text!) - that is really customisable (apply styles), grab code plonk in a website? The ones I see when searched are branded to the hilt, not customisable enough or… etc…
CHEERS!!!
Ideally it would look like this (but styled with the same as the website’s fonts, colours etc)
London 23.C
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
FrankHar
(Frank Harshbarger)
May 4, 2012, 2:57pm
2
?
Frank H.
On May 4, 2012, at 7:22 AM, Justin Easthall wrote:
Does anyone know of a really clean, simple weather feed (preferably just text!) - that is really customisable (apply styles), grab code plonk in a website? The ones I see when searched are branded to the hilt, not customisable enough or… etc…
CHEERS!!!
Ideally it would look like this (but styled with the same as the website’s fonts, colours etc)
London 23.C
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
Im lost? Thats a PC software? Does this create a clean feed for a website?? Weird.
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
Ger
(Ger)
May 4, 2012, 5:39pm
4
Hi Justin,
http://www.weatherforecastmap.com/united_kingdom/london/getwidget.phtml
I used one of their widgets in the member page demo http://parkerstokes.ie/loginpass.php .
Not sure if it has exactly what you’re looking for.
Cheers
Ger
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
waltd
(Walter Davis)
May 4, 2012, 5:54pm
5
Weather Underground has a great API, you can send a request to a specially-formatted URL and get back XML or JSON-formatted data. Then just format that the way you want it with JavaScript.
Walter
On May 4, 2012, at 1:39 PM, Ger wrote:
Hi Justin,
http://www.weatherforecastmap.com/united_kingdom/london/getwidget.phtml
I used one of their widgets in the member page demo http://parkerstokes.ie/loginpass.php .
Not sure if it has exactly what you’re looking for.
Cheers
Ger
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
Cool! I just used the one Ger suggested–nice different formats! Thanks.
Carol
On Fri, May 4, 2012 at 1:54 PM, Walter Lee Davis email@hidden wrote:
Weather Underground has a great API, you can send a request to a
specially-formatted URL and get back XML or JSON-formatted data. Then just
format that the way you want it with JavaScript.
Walter
On May 4, 2012, at 1:39 PM, Ger wrote:
Hi Justin,
http://www.weatherforecastmap.com/united_kingdom/london/getwidget.phtml
I used one of their widgets in the member page demo
http://parkerstokes.ie/loginpass.php .
Not sure if it has exactly what you’re looking for.
Cheers
Ger
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
Thanks Ger - I did give that one ago earlier but I couldn’t get it to be left aligned… Any pointers would be great!!!
See here left column
http://www.hyetimes.org/dev1.php#
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
Use your left alignment code for the box its in…see some examples I used
throughout this page…
www.rangeleylakestrailscenter.com
Cheers,
Carol
On Sat, May 5, 2012 at 10:21 AM, Justin Easthall email@hidden wrote:
Thanks Ger - I did give that one ago earlier but I couldn’t get it to be
left aligned… Any pointers would be great!!!
See here left column
http://www.hyetimes.org/dev1.php#
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
The crowbar action or the div the crowbar sits in? And how to I add the left align??
Cheers!!
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
I added left align to the actual code the snippet uses - that didn’t work? Add it to the divs (extended, div style- align: Left?) That hasn’t worked…
I’m sure its possible but how??
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
No - you want to target the
tag within the div.
Give the Div an ID such as weather then use #weather p { text-align: left;) in Page>HtML Markup Before End Head
David
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
Thanks Dave I added but now you see the code at the top of the page and no effect to the Div?
http://www.hyetimes.org/dev1.php
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
You need to wrap it in some style tags first. Sorry - I thought you knew that.
<style type="text/css">
<!--
#weather p {
text-align: left;
}
-->
</style>
But your div appears to be called ‘feed’ so your code would be
<style type="text/css">
<!--
#feed p {
text-align: left;
}
-->
</style>
D
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
Yes - was messing with it names -
GREAT! worked a treat!
Cheers!
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options
Glad to help
D
freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options