MidiMagic 579 Nearly a Senior Poster

Older browsers don't know what a .png is.

Dsiembab commented: thanks +1
MidiMagic 579 Nearly a Senior Poster

It does matter in Firefox, which follows the W3C standard. Firefox does not recognize uppercase or mixed case versions of styles and attributes in doctypes that prohibit them.

The style "height" must not have a capital "H". The "h" must be lowercase.

height = OK
HEIGHT = wrong
Height = wrong

The use of uppercase letters in tags, syles, and attributes is deprecated by the W3C standards. They will fail when used with future browser versions. Get used to it now, so you don't suddenly have to do a ton of work on your pages later.

Most browsers on UNIX servers already fail when given the wrong case. UNIX has no automatic case conversion.

IE is not following the W3C standard, and wrongly makes these case-insensitive.

ashneet commented: Great and well explained +3
MidiMagic 579 Nearly a Senior Poster

Actions speak louder than words, but politicians won't shut up.

MidiMagic 579 Nearly a Senior Poster

My version of that is Styrofoam-to-Styrofoam or Styrofoam-to-cardboard.

That's a bad case of the squeebies.

maravich12 commented: cool sig +2
MidiMagic 579 Nearly a Senior Poster

Infact i think he made some very good arguments against global warming.

Actually, I haven't. My arguments are that their arguments are not valid. We may be having global warming. But the arguments proffered by Al Gore and his henchmen are not valid.

One interesting fact is that Mars is also experiencing a melting of icecaps. This tends to indicate that any global warming has an external cause.

Dave Sinkula commented: Heretic! ;) +11
MidiMagic 579 Nearly a Senior Poster

You need an id on the same object with someclass. That id becomes the target of the assignment statement:

function changeSrc(clicked)
{
changeme.backgroundImage = 'someotherimage.someformat')
}

Put both the class and the id in the object with the background

<body class="someclass" id="changeme">
MidiMagic 579 Nearly a Senior Poster

Funny headlines and newspaper misprints I collected:

Woman collides with police car.
Goliath falls in Cup.
Vaccinations available for whopping couch.
17 remain dead in morgue shooting spree.
Experienced bricklayer and hog carrier wanted.
Specter objects to bill's provision
Shooting reported at firing range
The Plaintiff does not know the whereabouts of the defendant, Southern Pacific Bank.
Stuff happens, but it won't happen quite as often if we read what we wrote.
An unmarked detective's car was parked on the corner.
The bride arrived in a limousine wearing a minidress and a veil. (poor car)
The ship was a floating hotel, with a grand piano made of aluminum with large windows.
Purdue rains as Big Ten champions.
Meeting on open meetings is closed.
Women banging children into the world should know these things.
Blaze destroys fire station.
Space began with the "big band."
His father was driving, and his father was in the passenger seat.
The horoscopes in Thursday's paper accurately predicted the future. They were today's horoscopes by mistake.
Red tape holds up new bridge
The barge spilled hundreds of thousands of asphalt.
All of the sexual harassment papers were provided by city hall. boop.
The Emergency Planning Committee is open during norman business hours.
Weight watchers should use the wide doors at the side entrance.
Identity theft - work at home - set …

lasher511 commented: well done a good friday laugh +2
christina>you commented: haha +18
Aia commented: Thank you ;) +6
MidiMagic 579 Nearly a Senior Poster

The 20 things I dislike most:

  1. Promotion of sinful activity by government and by Hollywodd
  2. Daylight Saving Time (The time change twice a year)
  3. The State favoring the religions of Atheism, Environmentalism, and PC
  4. Government taking property from poor people to satisfy tax debts or mortgages.
  5. Bicycle riders causing hazards by breaking traffic rules
  6. Perfume and chewing gum at public events (my allergies)
  7. Chewing gum displays in the checkout lanes (allergy)
  8. Politicians who think it is necessary to cheat to win elections
  9. The unfair Plurality Voting System (and its use in political polls too)
  10. More than 10 percent of income taxed away (only workers really pay taxes)
  11. Lying politicians.
  12. Untrained politicians making traffic laws
  13. Government overregulation
  14. Government spending on nonessentials (e.g. new pro sports arenas)
  15. Monopolies and monopoly powers, including copyrights, patents, exclusive contracts, and copy protection
  16. Microsoft changing the operating system every three years
  17. Scents in every home product (allergy)
  18. Government banning products
  19. Companies discontinuing products
  20. Minimum orders (In order to get 4, you have to buy 1000)

In addition, I have a few new ones:
- Bad science
- Moving ads on web pages
- Computer watermarks behind text
- Constant change in computer operating systems and programming languages (e.g. Microsoft)
- The fact that all HR people are so right brained that they can't correctly hire a left-brained job
- The very existence of landlords
- People hating Christians because they are required to tell others about …

Aia commented: good_rep++; +5
MidiMagic 579 Nearly a Senior Poster

Why did you get rid of the menu? I didn't know what any of them except the fire meant.

Danarchy commented: I still don't know what some of the icons mean. I thought there used to be a list at the bottom that explained them. +5
MidiMagic 579 Nearly a Senior Poster

If the chimps want special rights, let them compose and submit their own writs to the judges.

EnderX commented: Excellent Logic. +1
MidiMagic 579 Nearly a Senior Poster

My thoughts:

- How much whitespace you use depends on how much content you want, vs how much you have to pay for server memory and download bandwidth.

- I use only one space for each indent in tight memory situations. But I use a monospace editor font.

- I have only one level of indentation for each table:

<table><tr>
  <td>contents</td>
  <td>contents</td>
  <td>contents</td>
</tr><tr>
  <td>contents</td>
  <td>contents</td>
  <td>contents</td>
</tr></table>

- I base my decision of whether to use tables or divs to format the page by how I want the page to fail it the browser window is too small:

-- When div is used with Mozilla, it overlaps the elements (especially images) on the screen when the browser window is too narrow.
-- When div is used with IE, it collapses the horizontally spaced elements into a vertical column when the browser window is too narrow.
-- When tables are used with either Mozilla or IE, a horizontal slide bar appears at the bottom of the screen, and the display is wider than than the window.

- I totally can't stand the variable name standards which originated with c (probably because I think C is one of the third worst programming language). I string together enough characters to do the job, e.g. digindx for digit index.

- I usually choose code to reflect the mix of browsers I expect to be using it, but I also realize that if I use …

MattEvans commented: "I base my decision of whether to use tables or divs to format the page by how I want the page to fail it the browser window is too small" < Very True. Let's hope they fix CSS up properly sometime soon >_< - Matt +2
MidiMagic 579 Nearly a Senior Poster

Yes, at times, specifically: 4-6 A.M. (Eastern)

Usually a shutdown at a specific time like that is scheduled system downtime or hard disk backup time.

It could be either the Daniweb server, or your own ISP.

mattyd commented: adServer info\ slowness # thanks much--mattyD +5