Page 1 of 1

lower case to capitals

Posted: Thu 20 Sep 2012 12:09 am
by rednefed
How can i change from lower case to capitals in the weather description
Cumulus always uses lower case even when i enter capitals.
Thanks. :?:

Re: lower case to capitals

Posted: Thu 20 Sep 2012 6:43 am
by steve
I'm not sure where you mean. Do you mean this? http://wiki.sandaysoft.com/a/FAQ#I.27m_ ... upper_case

Re: lower case to capitals

Posted: Thu 20 Sep 2012 6:51 pm
by rednefed
steve wrote:I'm not sure where you mean. Do you mean this? http://wiki.sandaysoft.com/a/FAQ#I.27m_ ... upper_case
Yes i have seen that but a cn not find the file { It's in the CSS. Edit stylesheet.css and find lines like: "text-transform: lower case.}

It seems i need to find the file named stylesheet which a cant
Its not a big problem but would be nice to change to capitals where needed.

Thanks
Clive.

Re: lower case to capitals

Posted: Thu 20 Sep 2012 6:59 pm
by steve
Sorry, the FAQ was out of date; the file is now called weatherstyle.css and is in the same place on your web site as the index.htm file etc.

Re: lower case to capitals

Posted: Thu 20 Sep 2012 7:23 pm
by rednefed
steve wrote:Sorry, the FAQ was out of date; the file is now called weatherstyle.css and is in the same place on your web site as the index.htm file etc.
Thanks i have found these files under the heading weatherstyle on my c drive
But not sure which one i need to remove don't want to remove the
hi & h2 both mention lowercase
wrong one and mess things up

@charset "UTF-8";
body {
background-color: #FFFFFF;
font-family: Verdana, Helvetica, sans-serif;
font-size: 10pt;
color: #585858;
text-align: left;
background-attachment: fixed;
background-image: url(images/picture.jpg);
background-repeat: no-repeat;
background-position: left bottom;
}
#content {
margin-top: 5%;
margin-right: 20%;
margin-bottom: 5%;
margin-left: 20%;
}
h1 {
font-size: 150%;
font-weight: bold;
text-transform: lowercase;
color: #678090;
letter-spacing: 0.7em;
padding-bottom: 1em;
text-align: left;
}
h2 {
font-size: 125%;
font-weight: bold;
color: #6F9DBE;
letter-spacing: 0.4em;
text-transform: lowercase;
font-family: Arial, Helvetica, sans-serif;
text-align: left;
}
a {
color: #FF6600;
text-decoration: none;
font-weight: normal;
}
a:visited {
text-decoration: none;
color: #CC6600;
}
a:hover {
text-decoration: underline overline;
color: #6F9DBE;
}
a:active {
text-decoration: none;
}
h1,h2,h3,h4,h5,h6 {

Re: lower case to capitals

Posted: Thu 20 Sep 2012 7:41 pm
by steve
You can remove both of them; the h1 style is the one that applies to the "xxxxx weather" heading. The h2 style applies to the Latitude/Longitude/Elevation line, but that already has an over-ride in the html anyway. Don't forget that it's the file on your web site that actually controls the web page.