Welcome to the Cumulus Support forum.

Latest Cumulus MX V3 release 3.28.6 (build 3283) - 21 March 2024

Cumulus MX V4 beta test release 4.0.0 (build 4018) - 28 March 2024

Legacy Cumulus 1 release v1.9.4 (build 1099) - 28 November 2014 (a patch is available for 1.9.4 build 1099 that extends the date range of drop-down menus to 2030)

Download the Software (Cumulus MX / Cumulus 1 and other related items) from the Wiki

Input Type=Button not Processing

Discussion of Jacques DesRoches's web site templates

Moderator: JacquesD

Post Reply
scottbob78
Posts: 15
Joined: Fri 21 Sep 2012 4:53 am
Weather Station: Ambient Weather
Operating System: Win 7 Home Premium 32-bit
Location: USA
Contact:

Input Type=Button not Processing

Post by scottbob78 »

In my monthlyrecordT.htm file the <Input type="button"> tag is fine when I display the file in a browser, but when Cumulus processes the file and uploads to the server it ruins the html button. (see attached pics) Any thoughts on why it would do this?
You do not have the required permissions to view the files attached to this post.
User avatar
beteljuice
Posts: 3292
Joined: Tue 09 Dec 2008 1:37 pm
Weather Station: None !
Operating System: W10 - Threadripper 16core, etc
Location: Dudley, West Midlands, UK

Re: Input Type=Button not Processing

Post by beteljuice »

As far as I can tell there is no css styling for the <button> in Jacques templates.
Indeed his website only shows a This month page ?

Is that the latest version ?
Last edited by beteljuice on Fri 05 Apr 2013 11:28 am, edited 1 time in total.
Image
......................Imagine, what you will KNOW tomorrow !
User avatar
steve
Cumulus Author
Posts: 26702
Joined: Mon 02 Jun 2008 6:49 pm
Weather Station: None
Operating System: None
Location: Vienne, France
Contact:

Re: Input Type=Button not Processing

Post by steve »

Cumulus isn't doing anything to the buttons; it's your style sheet (sunny_weather0.css). It has this default setting at the beginning:

* {margin: 0; padding: 0; border: none; text-decoration: none;}

and as beteljuice says, it has no styling for 'button' to override that. You could start with something like

input[type="button"] {
border: 2px outset buttonface;
padding: 2px;
margin: 2px;
}

and modify that to your requirements.
Steve
scottbob78
Posts: 15
Joined: Fri 21 Sep 2012 4:53 am
Weather Station: Ambient Weather
Operating System: Win 7 Home Premium 32-bit
Location: USA
Contact:

Re: Input Type=Button not Processing

Post by scottbob78 »

Thank you to both of you...I had a feeling it might be related to the weatherstyle css in which it was designed to work and the css stylesheet I'm using. I thought I looked in there, but didn't see anything that I could recognize. Time to brush up on my css!
User avatar
steve
Cumulus Author
Posts: 26702
Joined: Mon 02 Jun 2008 6:49 pm
Weather Station: None
Operating System: None
Location: Vienne, France
Contact:

Re: Input Type=Button not Processing

Post by steve »

scottbob78 wrote:I had a feeling it might be related to the weatherstyle css in which it was designed to work
I didn't actually put anything in there for the buttons - it didn't occur to me, to be honest. So in the standard pages they just use whatever the default rendering is in each browser.
Steve
Post Reply