LOS ANGELES, California (AP) — Michael Moore plans a follow-up to “Fahrenheit 9/11,” his hit documentary that assails President Bush over the handling of the September 11 attacks and the war on terrorism, according to a Hollywood trade paper.
Moore told Daily Variety that he and Harvey Weinstein, the Miramax boss who produced the film, hope to have “Fahrenheit 9/11 1/2″ ready in two to three years.
“Fifty-one percent of the American people lacked information (in this election) and we want to educate and enlighten them,” Moore was quoted in Thursday’s edition of Variety. “They weren’t told the truth. We’re communicators and it’s up to us to start doing it now.”
A spokesman for Fellowship Adventure Group, formed by Weinstein and brother Bob to help distribute “Fahrenheit 9/11,” did not immediately return a call seeking comment.
“Fahrenheit 9/11,” which won top honors at May’s Cannes Film Festival, became the first documentary to top $100 million at the domestic box office. Moore, who won the documentary Academy Award for “Bowling for Columbine,” is pushing “Fahrenheit 9/11″ in the best-picture category for the upcoming Oscars.
The issues for the follow-up film will remain the same, Iraq and terrorism, Moore said.
“The official mourning period is over today and there is a silver lining: George W. Bush is prohibited by law from running again,” Moore said.
Source: CNN















…
Hey T, I got a question about CSS, let’s say I’m using TDs and I want some of the content in them to be different than the others, If i set an ID to those TDs I want with different font or font size etc, how do I type it in the CSS file?
CSS formatting
2 ways:
First, if you want some TDs to look different than others TDs, give them a class:
…<td class="type2">bla bla</td>…
and in the CSS you write something like:
.type2
{
color:red;
font-style:Italic
}
The second case is when you want to have only some words show up in different formatting. In this case you format them using spans:
…<td>bla bla bla <span class="type2">bla bla bla</span></td>…
IDs are ONLY used for unique objects that only show up once in your html like heads, content, footer, sidebar etc…
formatting IDs in CSS is done using a ‘#’-prefix for the name. In the html you can have:
…<td id="header">bla bla bla</td>…
and in the CSS:
#header
{
margin-bottom:264px;
text-align:left;
}
…
Nice, thanks alot : D…I was confused wether it was Id or Class..