Articles
editList of oldest living Academy Award winners and nominees
List of films with the most Academy Awards per ceremony
List of offenders executed in the United States in 2018
List of offenders scheduled to be executed in the United States
User:Joseph A. Spadaro/Sandbox/Page80 - Old Remarks and To Do List
List of films receiving the most Academy Awards NOMINATIONS
editNotes
edit- ^ This column includes competitive awards (i.e., Academy Awards of Merit) only. It does not include the following: Honorary Awards; Special Awards; Special Achievement Awards; and Scientific or Technical Awards.
- ^ One Night of Love received 2 competitive Academy Awards of Merit. In addition, the film received a Scientific or Technical Award (Class III).
- ^ Gone with the Wind received 8 competitive Academy Awards of Merit. In addition, the film received a Special Award and a Scientific or Technical Award (Class III).
- ^ The Best Years of Our Lives received 7 competitive Academy Awards of Merit. In addition, the film received a Special Award.
- ^ Oliver! received 5 competitive Academy Awards of Merit. In addition, the film received an Honorary Award.
To Do List - BOTH CHARTS
edit- double check "comment / hidden" ... about 91st Ceremony ... colors .... etc.
- change colors ... ADD a "bar" of color? ( top and bottom rows ) ... color = rose
- change titles, maybe ?
- totals at bottom of column - maybe larger font size???? -- BOTH TABLES !!!!!!!!!!!!!!!!!!!!!!!
- Historical "most"
- Fix Notes - Gone with The Wind - Special Awards - correct title / link
- Fix ALL Notes
- add a "TITLE" Row that spans 8 columns
- look up ALL Special / Honorary Awards --- deal with ALL !!!
- categories
- Talk Page - Wiki Projects
- narrative
- re directs
- A A Template Box
- See Also
- External Links
Trivia
edit- A total of 69 films appear on both lists ... and 00 of them are BP nom ... BP win ... ????
- With only one exception – Dreamgirls (2006) – every film on this list was nominated for Best Picture.
Line breaks
editbr
edit<br>
or <br />
inserts a line break. Both versions of the break are supported by HTML5. </br>
is invalid. Using <br>
without the /
breaks syntax highlighting, so should be avoided.
Markup | Renders as |
---|---|
HyperText<br>Markup Language |
HyperText |
Templates:
{{break}}
adds multiple line breaks.{{crlf2}}
adds a true carriage return and line feed.{{clear}}
adds a break with styling to clear floating elements.{{plainlist}}
creates an unbulleted list.
Line break symbols
editWhat is the difference between these two line-break symbols (below)? And which is the correct one to use here in Wikipedia articles?
Thanks. Joseph A. Spadaro (talk) 04:42, 25 July 2018 (UTC)
- See Help:HTML in wikitext#br. Use
<br />
. Avoid<br>
.-Arch dude (talk) 05:07, 25 July 2018 (UTC)
Possible colors
editCode = #E5E4E2
Code = #F5F5F5
FFF 5 F 5 light rose
MADE UP ON MY OWN
Rose (color) ..... first 2 shades
Size
editHello!
Hello!
<very big>Hello!</very big>
Wikitable question about rowspan and colspan
editThis is a question about the correct syntax (if that's the right word?) for using rowspan and colspan in a Wikitable. I seem to be able to use "rowspan" by itself. And I seem to be able to use "colspan" by itself. But, I can't seem to make both functions work together at the same time, with the same cell. So, what would be the exact "code" that I would type in my Wikitable if, say for example, I wanted a cell to span 5 rows and 3 columns? By the way, I want to use the "rowspan" function, if possible; not the "row height" function. Thanks. Joseph A. Spadaro (talk) 02:33, 29 July 2018 (UTC)
- @Joseph A. Spadaro: See Help:Table#Combined use of COLSPAN and ROWSPAN for an example. The syntax is simple like
| rowspan="5" colspan="3" | Cell content
. The hard part is building a correct table with it. If you have problems then post or link your attempt and say how you want it. PrimeHunter (talk) 10:39, 29 July 2018 (UTC)
- @PrimeHunter: Thanks. Hmmmmm. I dunno. I tried that. And it "screwed up" the whole chart. Let me type an example below (in a few minutes). Thanks. Joseph A. Spadaro (talk) 13:57, 29 July 2018 (UTC)
@PrimeHunter: OK. Thanks. I am back, with my example. Below is my "original" chart. Then, below that, is my "revised" chart.
On the "original" chart, I want to add a "heading". The heading will state: Below is all of the updated information. I want this heading (cell) to span several columns and several rows.
So, I created my "revised" chart.
Everything is what I want, except for one thing. In the "revised chart", I want that "heading" to have more height (i.e., I want that row to be taller). So, as you can see, I can get the "colspan" to work well (namely, to "spread out" across all 4 columns). But, whenever I add in a "rowspan" function / code, everything gets screwed up. I tried with several variations of "syntax", punctuation, etc. It always screws up the rest of the chart.
Also: As I stated above: I want to use the "rowspan" function, if possible; not the "row height" function.
Original chart
editName | Year | Age | State |
---|---|---|---|
Derek | 1962 | 73 | New York |
Bob | 2013 | 100 | Hawaii |
Charles | 1875 | 3 | Texas |
Anne | 2000 | 91 | Florida |
Edith | 1984 | 39 | Virginia |
Revised chart
editBelow is all of the updated information. | |||
---|---|---|---|
Name | Year | Age | State |
Derek | 1962 | 73 | New York |
Bob | 2013 | 100 | Hawaii |
Charles | 1875 | 3 | Texas |
Anne | 2000 | 91 | Florida |
Edith | 1984 | 39 | Virginia |
Any help (and explanation) is appreciated. Thanks! Joseph A. Spadaro (talk) 14:29, 29 July 2018 (UTC)
Text |
---|
Text |
Text |
Text |
- @Joseph A. Spadaro: That is not what rowspan is for. The purpose of rowspan is to make a cell which spans multiple cells somewhere to the right or left of the cell. Each row must have at least one cell starting in that row. That is a html rule and not specific to wikitext. A table-wide rowspan="5" would have 4 rows with no cells starting. And even if this had been allowed by html, it wouldn't change the height of the row. Rows are by default only as high as needed to display their content. There are many other ways to make a tall cell with blank space, e.g. blank lines made with
<br />
. PrimeHunter (talk) 16:03, 29 July 2018 (UTC)
- @PrimeHunter: OK. Thanks. So you are saying: that for what I want, I cannot use "rowspan", and I essentially have to use "row height" ... correct? (The problem with using "blank break spaces" is that it places the text at the top of the tall row and leaves a lot of blank white space in the rest of the tall row. As opposed to, perhaps, centering the text within a tall row.) You said there are many other ways? What are some? Other than the "row height function" and the use of "blank break spaces"? Or, rather, what's the easiest one? Thanks so much! Joseph A. Spadaro (talk) 16:45, 29 July 2018 (UTC)
- @Joseph A. Spadaro: You cannot use rowspan. You can place
<br />
both before and after the text. You can use style="height: 5em;" in the row or in the cell. You can use style="padding: 2em;" to control the whitespace around the text. I made an example with each of these four methods. There are others methods but four should be plenty. PrimeHunter (talk) 20:04, 29 July 2018 (UTC)
- @Joseph A. Spadaro: You cannot use rowspan. You can place
- @PrimeHunter: Thanks. I really appreciate all the help. Thanks, also, for the help a few days ago with the Shakespeare User Box. Much appreciated! Joseph A. Spadaro (talk) 21:18, 29 July 2018 (UTC)