<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>header &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/header/</link>
	<description>Feed of posts on WordPress.com tagged "header"</description>
	<pubDate>Thu, 26 Nov 2009 20:09:42 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Criando Opção de Cabeçalho Personalizado para temas.]]></title>
<link>http://designcreationwp.wordpress.com/2009/11/25/criando-opcao-de-cabecalho-personalizado-para-temas/</link>
<pubDate>Wed, 25 Nov 2009 23:59:26 +0000</pubDate>
<dc:creator>claudiomyst</dc:creator>
<guid>http://designcreationwp.wordpress.com/2009/11/25/criando-opcao-de-cabecalho-personalizado-para-temas/</guid>
<description><![CDATA[Custon Header As novas versões do WordPress e WordPress MU têm vindo com uma funcionalidade que pouc]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div id="attachment_6" class="wp-caption alignnone" style="width: 560px"><a href="http://designcreationwp.wordpress.com/files/2009/11/header.jpg"><img class="size-large wp-image-6" title="header" src="http://designcreationwp.wordpress.com/files/2009/11/header.jpg?w=1024" alt="" width="550" height="280" /></a><p class="wp-caption-text">Custon Header</p></div>
<p>As novas versões do WordPress e WordPress MU têm vindo com uma funcionalidade que poucos sabem que existe, que nos serve para criar uma opção extra para nossos temas.</p>
<p>Com ela você pode, trocar a imagem do banner, trocar a cor do título e descrição do site ou até mesmo remover os textos e ficar só com a imagem de banner.<br />
Estas opções são extremamente úteis para quando temos uma logomarca e queremos colocá-la em nosso site.</p>
<p>Dentro da pasta do seu WordPress em wp-admin tem um arquivo chamado custom-header.php e é ele que define as funcionalidades extras que vamos implementar, mas para usarmos essas funcionalidades de forma adequada precisamos definir algumas coisas para que seja adequada ao nosso tema.</p>
<h3>Estrutura do header.</h3>
<p>Primeiramente veja como está o meu arquivo header.php que é onde meu banner está sendo carregado, a parte onde tem o banner, título do site e descrição foram feitas da seguinte forma.</p>
<p>&#60;div id=&#8221;banner&#8221;&#62;<br />
&#60;h1&#62;&#60;a href=&#8221;&#60;?php bloginfo(&#8216;url&#8217;); ?&#62;&#8221;&#62;&#60;?php bloginfo(&#8216;name&#8217;); ?&#62;&#60;/a&#62;&#60;/h1&#62;<br />
&#60;h3&#62;&#60;?php bloginfo(&#8216;description&#8217;); ?&#62;&#60;/h3&#62;<br />
&#60;/div&#62;&#60;!&#8211;banner&#8211;&#62;</p>
<h3>Código CSS.</h3>
<p>As demais áreas do meu header.php não importam, desde que nenhum outro código esteja influenciando neste parte do site isso é tudo que importa.<br />
Para personalizar esta área usei o seguinte código em css.</p>
<p>#banner h1{<br />
padding-top: 30px;<br />
padding-left: 50px;<br />
}</p>
<p>#banner h1 a{<br />
font-family: &#8220;Trajan Pro&#8221;,&#8221;Lucida Sans Unicode&#8221;,Arial,Helvetica,Sans,FreeSans,Jamrul,Garuda,Kalimati;<br />
font-size: 50px;<br />
color: #C40000;<br />
font-weight:bold;<br />
}</p>
<p>#banner h1 a:hover{color: #FF9900;}</p>
<p>#banner h3{<br />
font-family: &#8220;Palatino Linotype&#8221;, &#8220;Times New Roman&#8221;, Georgia, Tahoma, &#8220;Century Schoolbook L&#8221;, Arial, Helvetica;<br />
padding-left: 90px;<br />
color: #C40000;<br />
}</p>
<h3>Código do function.</h3>
<p>Agora que já vimos como a minha área de banner foi criada, poderemos reparar como o restante do código precisa ser alterado, então segue o código que precisa ser adicionado em seu arquivo function.php.</p>
<p>Vou colocar o código em partes e com comentários para poder explicar, então vá lendo com calma para entender, pois você terá que mudar algumas partes para que funcione em seu tema.<br />
Se quiser copiar o código inteiro você pode, pois as explicações serão colocadas em comentário entre o código e não irá influenciar no seu arquivo function, mas fiquem atentos as partes que precisam ser alteradas para que tudo funcione bem.</p>
<p>Como já mencionei, adicione o código a seguir em seu arquivo function.php, se ele não existir crie um e coloque na pasta do seu tema.</p>
<p>&#60;?php<span style="color:#ff6600;"><br />
<span style="color:#ff0000;">/*<br />
Definindo o tamanho da sua imagem do banner, isso será usado quando<br />
você upar uma imagem maior ou menor que o tamanho correto, e com<br />
esta opção você fará um corte em sua imagem para que ela se adapte<br />
corretamente ao seu espaço para o banner.<br />
*/</span> </span><br />
$content_width = 998;</p>
<p><span style="color:#ff0000;">//  Definindo Valores padões.<br />
// Cor padrão do texto.</span><br />
define(&#8216;HEADER_TEXTCOLOR&#8217;, &#8216;C40000&#8242;);<br />
<span style="color:#ff0000;">// Nome e caminho da imagem padrão do banner.</span><br />
define(&#8216;HEADER_IMAGE&#8217;, &#8216;%s/images/banner.jpg&#8217;);<br />
<span style="color:#ff0000;">// Largura da Imagem do banner que será a largura padrão.</span><br />
define(&#8216;HEADER_IMAGE_WIDTH&#8217;, 998);<br />
<span style="color:#ff0000;">// Altura do banner que será a altura padrão.</span><br />
define(&#8216;HEADER_IMAGE_HEIGHT&#8217;, 153);</p>
<p><span style="color:#ff0000;">//Esta função define o estilo para o tema.<br />
//Você precisa alterar esses seletores para corresponder ao seu tema.<br />
//Onde está #banner h1 ou #banner h3 coloque o que usou para definir seu banner no seu css.<br />
</span></p>
<p><span style="color:#ff0000;">//Você pode definir um novo nome para sua função diferente deste.</span><br />
function myst_header_style() {<br />
?&#62;<br />
&#60;style&#62;<br />
#banner{<br />
background: url(&#60;?php header_image() ?&#62;) no-repeat;<br />
width: 998px;<br />
height: 153px;<br />
margin: 0 0;<br />
padding: 0 0;<br />
}</p>
<p>&#60;?php if ( &#8216;blank&#8217; == get_header_textcolor() ) { ?&#62;<br />
#banner h1, #banner h3 {<br />
display: none;<br />
}</p>
<p>&#60;?php } else { ?&#62;<br />
#banner h1 a, #banner h3 {<br />
color:#&#60;?php header_textcolor() ?&#62;;<br />
}</p>
<p>#banner h3 {<br />
margin-right: 30px;<br />
}</p>
<p>&#60;?php } ?&#62;<br />
&#60;/style&#62;<br />
&#60;?php<br />
}</p>
<p><span style="color:#ff0000;">//Painel de administração.<br />
//O seletores #headimg h1 e #headimg #desc são utilizados para criar<br />
//o painel de administração, então não mude estes seletores, as únicas coisas que você<br />
//pode mudar é a formatação que você pode deixar mais parecida com o seu banner original.<br />
//Eu usei a mesma formatação do meu banner para que quando o usuário veja o painel de<br />
//cabeçalho personalizado, veja da mesma forma que está vendo no site, se pretende mudar isso<br />
//tome cuidado de não alterar os códigos php, eles são muito importantes para o bom funcionamento.</span></p>
<p><span style="color:#ff0000;">//Você pode definir um novo nome para sua função diferente deste.</span><br />
function myst_admin_header_style() {<br />
?&#62;<br />
&#60;style&#62;<br />
#headimg{<br />
background: url(&#60;?php header_image() ?&#62;) no-repeat;<br />
height: &#60;?php echo HEADER_IMAGE_HEIGHT; ?&#62;px;<br />
width:&#60;?php echo HEADER_IMAGE_WIDTH; ?&#62;px;<br />
padding:0 0 0 18px;<br />
}</p>
<p>#headimg h1{<br />
padding-top: 50px;<br />
padding-left: 40px;<br />
}</p>
<p>#headimg h1 a{<br />
color:#&#60;?php echo HEADER_TEXTCOLOR ?&#62;;<br />
font-family: &#8220;Trajan Pro&#8221;,&#8221;Lucida Sans Unicode&#8221;,Arial,Helvetica,Sans,FreeSans,Jamrul,Garuda,Kalimati;<br />
font-size: 50px;<br />
font-weight:bold;<br />
text-decoration:none;<br />
}</p>
<p>#headimg #desc{<br />
color:#&#60;?php echo HEADER_TEXTCOLOR ?&#62;;<br />
font-family: &#8220;Palatino Linotype&#8221;, &#8220;Times New Roman&#8221;, Georgia, Tahoma, &#8220;Century Schoolbook L&#8221;, Arial, Helvetica;<br />
padding-left: 80px;<br />
font-size: 18px;<br />
}</p>
<p><span style="color:#ff0000;">&#60;!&#8211;Defina aqui os mesmos seletores css usados em seu style.css&#8211;&#62;<br />
&#60;!&#8211;como pode ver usei novamente aqui o #banner&#8211;&#62;</span><br />
&#60;?php if ( &#8216;blank&#8217; == get_header_textcolor() ) { ?&#62;<br />
#banner h1, #banner h3 {<br />
display: none;<br />
}</p>
<p>#banner h1 a, #banner h3 {<br />
color:#&#60;?php echo HEADER_TEXTCOLOR ?&#62;;<br />
}</p>
<p>&#60;?php } ?&#62;<br />
&#60;/style&#62;<br />
&#60;?php<br />
}</p>
<p><span style="color:#ff0000;">//Se definiu novos nomes para as suas funções redefina aqui eles novamente.<br />
//Como você pode reparar os nomes que usei para as minhas funções são repetidos aqui.<br />
</span>add_custom_image_header(&#8216;myst_header_style&#8217;, &#8216;myst_admin_header_style&#8217;);<br />
?&#62;</p>
<p>Salve seu arquivo function.php e entre em seu painel de administração, agora você verá na área aparência um novo campo chamado cabeçalho personalizado e poderá testar a nova funcionalidade do seu tema.</p>
<h3>Possíveis erros.</h3>
<p>1ª Caso dê algum erro repare se usou os seletores css corretamente, não esqueça que os seletores <span style="color:#ff0000;">#headimg h1, #headimg h1 a</span> ou <span style="color:#ff0000;">#headimg #desc</span> não pode ser alterados e os <span style="color:#ff0000;">#banner, #banner h1, #banner h1 a</span> e <span style="color:#ff0000;">#bannr h3</span> devem ser alterados de acordo com o seu tema.<br />
2ª Se mudou o nome das funções, repare se os repetiu na parte <span style="color:#ff0000;">add_custom_image_header</span> corretamente.<br />
3ª Vale reparar também se os códigos php estão todos corretos e com seus devidos espaços.<br />
4ª Não deixe espaços no final do seu arquivo function, isso pode causar erros, sempre depois de ?&#62; aperte delete para eliminar possíveis erros deste tipo.</p>
<p>Esses são os erros mais comuns que podem ocorrer.</p>
<p>Vale ressaltar que, dependendo do estilo visual e se forem usar esta funcionalidade em um tema que será distribuído a terceiros, é importante  disponibilizar o banner em arquivo psd (photoshop), ou outro formato que a pessoa possa usar para alterar a imagem a seu gosto, ou as pessoas não terrão como usufruir desta funcionalidade de forma adequada, criando um banner que não se adeque ao restante do visual do site.</p>
<p>Espero que tenham gostado da dica e que venham a usar para criar temas cada vez mais funcionais.</p>
<p><span style="color:#ff0000;">Créditos deste artigo:<br />
Algumas das informações foram obtidas do site </span><a href="http://www.resources4bloggers.com/tag/add_custom_image_header/" target="_blank">www.resources4bloggers.com</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Hilfe!]]></title>
<link>http://eckicartoon.wordpress.de/2009/11/25/hilfe/</link>
<pubDate>Wed, 25 Nov 2009 19:44:30 +0000</pubDate>
<dc:creator>Ecki</dc:creator>
<guid>http://eckicartoon.wordpress.de/2009/11/25/hilfe/</guid>
<description><![CDATA[Ich denke, es ist mal wieder an der Zeit, einen neuen Ecki-Blog-Header zu besorgen. Der aktuelle ist]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ich denke, es ist mal wieder an der Zeit, einen neuen Ecki-Blog-Header zu besorgen. Der aktuelle ist von meinem guten Senfundkren-Blogger. Er war aber schon lange nicht mehr hier. Leider beherrsche ich das Erstellen eines solchen Kunstwerkes nicht wirklich.<br />
Auch will ich kein Geld für sowas ausgeben. Gibt es jemanden, der es hinbekommt, mir einen animierten <span style="text-decoration:line-through;">Mieder</span> Header zu basteln? 760 x 200 Pixel? Benötigte Bilder werden gerne zur Verfügung gestellt.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Headers]]></title>
<link>http://sssfinxxx.wordpress.com/2009/11/25/headers/</link>
<pubDate>Wed, 25 Nov 2009 13:12:59 +0000</pubDate>
<dc:creator>sssfinxxx</dc:creator>
<guid>http://sssfinxxx.wordpress.com/2009/11/25/headers/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[]]></content:encoded>
</item>
<item>
<title><![CDATA[New Header!]]></title>
<link>http://thestormz.wordpress.com/2009/11/24/new-header/</link>
<pubDate>Tue, 24 Nov 2009 21:52:31 +0000</pubDate>
<dc:creator>Storm</dc:creator>
<guid>http://thestormz.wordpress.com/2009/11/24/new-header/</guid>
<description><![CDATA[Hey! Yoy have probably noticed the new header made by me!!!!! I know, I made it ALL by myself, no tu]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Hey!<br />
Yoy have probably noticed the new header made by me!!!!! I know, I made it ALL by myself, no turorials or anything. So I downloaded paint.net yesterday and tinkered around with it for about an hour and had no time to post. Today I started a header that I wanted to look like this</p>
<p><img src="http://i154.photobucket.com/albums/s258/MadJikF59/sigs/djmadjik.jpg" alt="Image" /></p>
<p>But I wanted something for my own. Today I started the header</p>
<p>Layer 1- Graffitti picture I found, Cant really see it</p>
<p>Layer 2- The Green and lighter green, transparent so you can see Layer 1</p>
<p>Layer 3- The Splat, this took me a while to find a site where you can make one, <a href="http://jacksonpollock.org/">http://jacksonpollock.org/</a>, I used that and put it in and took all the white out and finished with an outline</p>
<p>Layer 4- The name, I just blurred it and gave it an outline</p>
<p>SO YA</p>
<p>-Storm</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[O HTML 5]]></title>
<link>http://henriquearaujo.wordpress.com/2009/11/24/o-html-5/</link>
<pubDate>Tue, 24 Nov 2009 01:16:09 +0000</pubDate>
<dc:creator>Henrique</dc:creator>
<guid>http://henriquearaujo.wordpress.com/2009/11/24/o-html-5/</guid>
<description><![CDATA[Se você achava que num futuro próximo todos os navegadores &#8220;iriam falar a mesma língua&#8221; ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="aligncenter" title="html 5" src="http://garimpoweb.files.wordpress.com/2009/07/html5.jpg?w=450&#038;h=299" alt="" width="450" height="299" /></p>
<p>Se você achava que num futuro próximo todos os navegadores &#8220;iriam falar a mesma língua&#8221; e a dor de cabeça de construir código compatível com todos eles iria acabar, pode tirar o cavalo da chuva, porque tem coisa revolucionária vindo por aí. Apresentando&#8230; o <strong>HTML 5</strong>!</p>
<p>Principal mudança entre o HTML atual para o 5 já deve ter sido imaginada por alguns desenvolvedores, está na Semântica, no significado da estrutura html do seu site. No momento em que estávamos acostumados a criar um <strong>&#60;div id=&#8221;rodape&#8221;&#62;</strong> agora a galera nos ajudou, bastando um <strong>&#60;footer&#62;</strong> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  , bem, além disso temos também o seguinte:</p>
<ul>
<li><strong>Tags com valore semânticos.  </strong>adição de valores semânticos com a criação das geniais tags footer, header, time, nav por exemplo;</li>
<li><strong>Áudio e Vídeo. </strong> incluir vídeo e áudio era coisa de outro mundo? não mais! Foram criadas as tags &#60;audio&#62; e &#60;video&#62; que fazem com que essas mídias sejam incluídas numa página sem a necessidade de plug-ins extras. Estuda-se até o caso de incluir legenda nesses vídeos, imagina só! Tudo isso totalmente &#8220;de grátis&#8221;;</li>
<li><strong>Desenhos dinâmicos.</strong> o novíssimo HTML 5 permite que você trabalhe com os arquivos vetoriais baseados em XML e com código aberto, os chamados SVG (Scalable Vetorial Graphics);</li>
<li><strong>Drag and Drop.</strong> sim, agora vai dar para mover objetos e customizar a experiência do usuário na página com apenas algumas poucas linhas de código;</li>
<li><strong>Geolocation API.</strong> você vai poder localizar os dados de um usuário facilmente, sem a necessidade de depender de sites externos para isso;</li>
<li><strong>Armazene dados no cliente.</strong> existirá uma espécie de base dados no computador do cliente, da até pra trabalhar offline! Isso vai dar pra fazer estrago com Javascript.</li>
</ul>
<p>Essas novidades são o &#8220;coração&#8221; do novo HTML, mas a página que contém a documentação tem uma rolagem sem fim. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<h3>Mas eu já posso usar?</h3>
<p>Na minha opinião pessoal eu acho que ainda não é viável cair de cabeça na utilização da liguagem, mas estudá-la já está na hora. A documentação ainda é muito nova, sua aplicação precisaria de uma flexibilidade para mudanças. A documentação final está prevista para 2012, então ainda há tempo.</p>
<p>Pense no seu público-alvo e faça seus testes com prudência. O Internet Explorer 6 e 7 não oferecem suporte ainda, porém existe um <a href="http://html5shiv.googlecode.com/svn/trunk/html5.js" target="_blank">Javascript</a>, capaz de fazer estes navegadores interpretarem HTML 5 ,  em todos os artigos que li para elaborar este meu os escritores e blogueiros não aconselham você esperar a empresa do tio Bill Gates para um suporte completo dos IE ao HTML 5, isto duria séculos, mas também não é pra menos né, até hoje não acertaram com o IE8. Já com o Chrome e o Firefox, apartir das versões 3.0,  a história é diferente e você consegue sim ver as mágicas acontecerem. </p>
<h3>E o que mais?</h3>
<p>Tá aí&#8230;</p>
<p><strong>&#60;article&#62;:</strong> Define um artigo.<br />
<strong>&#60;aside&#62;:</strong> Define algum conteúdo relacionado ao artigo.<br />
<strong>&#60;audio&#62;:</strong> Define um streaming de áudio em um documento HTML<br />
<strong>&#60;canvas&#62;:</strong> Define a criação de gráficos em uma página web<br />
<strong>&#60;command&#62;:</strong> Define um botão de comando, como um radiobutton, uma caixa de seleção ou um botão.<br />
<strong>&#60;datagrid&#62;:</strong> Define uma lista de dados selecionáveis. O datagrid é exibido como uma árvore.<br />
<strong>&#60;datalist&#62;:</strong> Define uma lista de dados selecionáveis. Utilize esse elemento juntamente com o elemento input, para fazer uma lista suspensa para um valor de entrada.<br />
<strong>&#60;datatemplate&#62;:</strong> Define um recipiente para o modelo de dados. Deve conter elementos filho que são &#60;rule&#62; para definir um modelo.<br />
<strong>&#60;details&#62;:</strong> define os detalhes de um elemento, no qual o usuário pode ver, e clicar para ocultar.<br />
<strong>&#60;embed&#62;:</strong> Utilizado para incorporar conteúdo no HTML, atuando como um plugin.<br />
<strong>&#60;eventsource&#62;:</strong> Define um destino para eventos enviados por um servidor.<br />
<strong>&#60;figure&#62;:</strong> Especifica ilustrações, imagens, fotos, associado juntamente com alguma legenda.<br />
<strong>&#60;footer&#62;:</strong> Define o rodapé de uma seção ou documento. Normalmente, contém o nome do autor, data em que o documento foi escrito e / ou informações de contato.<br />
<strong>&#60;header&#62;:</strong> Define o cabeçalho de uma seção ou documento.<br />
<strong>&#60;mark&#62;:</strong> Define texto marcado. Utilize a tag &#60;mark&#62; se você quiser destacar partes do seu texto<br />
<strong>&#60;meter&#62;:</strong> Define uma medição. Usado apenas para medições com conhecimento de um valor mínimo e um valor máximo.<br />
<strong>&#60;nav&#62;:</strong> Define uma seção de links de navegação.<br />
<strong>&#60;nest&#62;:</strong> Define o ponto de incício para criação de elementos em um &#60;datatemplate&#62;, utilizado em conjunto com o elemento &#60;rule&#62;.<br />
<strong>&#60;output&#62;:</strong> Define a saída de diferentes tipos de dados, por exemplo, o cálculo efetuado por algum script.<br />
<strong>&#60;progress&#62;:</strong> Define o progresso de uma tarefa de qualquer tipo.<br />
<strong>&#60;rule&#62;:</strong> Define as regras para atualização de um datatemplate. Usado em conjunto com os elementos &#60;datatemplate&#62; e &#60;nest&#62;.<br />
<strong>&#60;section&#62;:</strong> Define as seções em um documento. Tal como capítulos, cabeçalhos, rodapés, ou quaisquer outras seções do documento.<br />
<strong>&#60;source&#62;:</strong> Define recursos para elementos de mídia, como &#60;audio&#62; e &#60;video&#62;.<br />
<strong>&#60;time&#62;:</strong> Define tempo ou data, ou ambos.<br />
<strong>&#60;video&#62;:</strong> Define vídeo, como um clipe de filme ou vídeo de outros fluxos.</p>
<p>(fonte: <a href="http://www.pinceladasdaweb.com.br/blog/2009/10/26/introducao-ao-html5/" target="_blank">pinceladas da web</a>)</p>
<p>A W3C liberou a documentação oficial no meio do ano de 2009 mas ainda é passível de alterações portanto não é definitiva. Ela é a mais completa e confiável fonte de informações sobre a linguagem e você encontra <a href="http://dev.w3.org/html5/spec/Overview.html" target="_blank">aqui neste link</a>. (inglês).</p>
<h3>Existem exemplos?</h3>
<p> Haram&#8230; olha aí:</p>
<p><a href="http://bit.ly/1Hw1ED">http://bit.ly/1Hw1ED</a> (resize &#38; drag and drop de fotos)<br />
<a href="http://bit.ly/HkYnp">http://bit.ly/HkYnp</a> (post-its que são arrastados e armazenados offline)<br />
<a href="http://www.html5gallery.com/">http://www.html5gallery.com</a> (galeria de sites em html5)<br />
<a href="http://bit.ly/fPMxn">http://bit.ly/fPMxn</a> (resize &#38; drag and drop de videos)<br />
<a href="http://bit.ly/2F3i1K">http://bit.ly/2F3i1K</a> (desenho escalável de um tigre em SVG)<br />
<a href="http://bit.ly/1Hw1ED">http://bit.ly/1Hw1ED</a> (resize &#38; drag and drop de fotos)</p>
<p>(fonte: <a href="http:/%%/www.luiztiago.com" target="_blank">Luiz Tiago</a>)</p>
<h3>E afinal?</h3>
<p>É uma questão sem solução atualmente adequada. Se por um lado existe um suporte à navegadores desatualizados o que cria a disponibilidade à todos os seus usuários, por que não usar?  Por outro lado, se ainda não existe uma documentação finalizada e consistente, para que começar?</p>
<p>Fica com você!</p>
<p>Vamos discutir sobre o assunto?</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[2. And in the morning would you tell me that it's over?]]></title>
<link>http://bicini.wordpress.com/2009/11/24/2-and-in-the-morning-would-you-tell-me-that-its-over/</link>
<pubDate>Tue, 24 Nov 2009 00:51:38 +0000</pubDate>
<dc:creator>bicini</dc:creator>
<guid>http://bicini.wordpress.com/2009/11/24/2-and-in-the-morning-would-you-tell-me-that-its-over/</guid>
<description><![CDATA[Sitter sömnlös och relativt pigg och fixar ny header och profilbild. Vad tycks? Men nu ska det försö]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Sitter sömnlös och relativt pigg och fixar ny header och profilbild. Vad tycks? Men nu ska det försöka sovas. Jobb imorgon. Som vanligt. Peace.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[And the Dealer said I wouldn't have so many exhaust-bleeds if I could just keep my finger out of there...]]></title>
<link>http://roadkingclassic.wordpress.com/2009/11/23/and-the-dealer-said-i-wouldnt-have-so-many-exhaust-bleeds-if-i-could-just-keep-my-finger-out-of-there/</link>
<pubDate>Mon, 23 Nov 2009 17:04:31 +0000</pubDate>
<dc:creator>MacDuff</dc:creator>
<guid>http://roadkingclassic.wordpress.com/2009/11/23/and-the-dealer-said-i-wouldnt-have-so-many-exhaust-bleeds-if-i-could-just-keep-my-finger-out-of-there/</guid>
<description><![CDATA[Well, no, not really.  Just a bad Simpsons reference. I went to the dealer.  I said, &#8220;SuperTra]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Well, no, not really.  Just a bad Simpsons reference.</p>
<p>I went to the dealer.  I said, &#8220;SuperTrapp SE pipes are so quiet, I &#8230;&#8221; and then they ignored me because they already had all my money.  True story.</p>
<p>Since I happened to be at a dealer, I ended up admiring a nice Road King Classic with some V&#38;H pipes.  I approached a trio of gray-haired men and asked if one knew the owner of that ride.  One guy told me it was his wife&#8217;s.</p>
<p>So this nice, elderly woman named Cathy, officer of the Jersey Shore HOG club, comes out and starts up the bike happily and I nod and tell them I have made an awful mistake.  I say, &#8220;would any of you like to have a laugh today? Because I have SuperTrapps!&#8221; and they followed me over to my ride and I started the bike up.</p>
<p>This kind, elderly woman handed me her card and told me to join HOG.  She told me to write a paragraph on the pipes and they&#8217;d put the ad in their flyer, and someone would surely buy them, since they&#8217;re so new and all.  One guy told me he really liked them, since they were so quiet.</p>
<p>D&#8217;OH!</p>
<p>I went into the dealership and overheard a salesguy tell some dude &#8220;I actually have a pair of rinehart slipons on a touring bike in the back, if you want to listen&#8230;&#8221;</p>
<p>Then I instinctively blurted out, &#8220;can I come?&#8221; and looked at the dude, and he shrugged because he doesn&#8217;t give a shit if I go into the shop in the back.  And that&#8217;s what I did.</p>
<p>He was telling the salesman he wanted V&#38;H pipes, but the sales guy was saying rineharts are louder.  He started the bike and that nice growl was there, but it was too aggressive &#8212; these engines run fast, being fuel injected, and that&#8217;ll never be the same (obviously) as what we hear in our heads.  Still, the sound quality was there, and I would have been happy with those pipes.  $500 ish.</p>
<p>Later, I told my parts guy that the SuperTrapps were keeping me up at night.  He said to get V&#38;H duals.  They&#8217;re $700, plus the fishtail endcaps are another $170, PLUS I&#8217;d have to get an EFI manager for another &#8230;. $400?  Shit yeah, that&#8217;s some cold cash just for a sound.</p>
<p>If I can sell the SuperTrapps and get any fair value (they&#8217;re brand new! under 600 miles!), that at least would cover part of the expense in upgrading.</p>
<p>On the other hand &#8230; I could swap the header and keep the SuperTrapps alright, fishtails and all.  The cat in the header is generally (asked the dealer too) the 2nd muffler which kills the noise.  A new header would cost maybe $300?</p>
<p>Then, of course, there&#8217;s buying an EFI manager that auto-tunes and just modifying the SuperTrapps until the sound is right.  Maybe remove some of the fiberglass wrap?  Not sure, but the cartridge-style glasspack is crazy restrictive.  Baffles out, the engine is louder than a jet plane.  Baffles in, it makes a purr.  I don&#8217;t think the header is the issue.  I think it&#8217;s the mufflers.</p>
<p>That&#8217;s where I&#8217;m at.  Saturday I had a good 2 hours of riding and another hour of chatting to some fine folks.  I&#8217;ll get there someday.</p>
<p>I rode the volusia on sunday.  Got to ride every week or two otherwise she&#8217;ll degrade, right?  What a fun, fun ride.  Feels more like a toy every week.  Makes me wonder how anyone could be afraid of it.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Amazing Exciting New Header]]></title>
<link>http://workingforbeer.wordpress.com/2009/11/23/amazing-exciting-new-header/</link>
<pubDate>Mon, 23 Nov 2009 04:28:14 +0000</pubDate>
<dc:creator>Working For Beer</dc:creator>
<guid>http://workingforbeer.wordpress.com/2009/11/23/amazing-exciting-new-header/</guid>
<description><![CDATA[Attention to our regular readers (yes, all 2 of you&#8230;hopefully). We have a new header, handcraf]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Attention to our regular readers (yes, all 2 of you&#8230;hopefully). We have a new header, handcrafted from the very depth of time and space using the best tools known to man, forged by only the most skilled crafters.</p>
<p>Ok, ok, I made it last night on Photoshop. Dont beleive me? You&#8217;re right (whoever you are). I made it on paint. I&#8217;ve never been good with graphics, but its a slight improvement of my old one. For those people who havent seen the old one, dont worry, you&#8217;re not missing out. At all. In fact, one day I might post it and we can all laugh (All 3 of us), but for now it brings ack memories of a too recent past (3 Days ago maybe?)</p>
<p>Tell Me what you think. I wouldnt change it in a million years. It might not be perfect but that is exactly what the site is about.</p>
<p><em>If you are any good with any picture tool PLEASE contact me!!!!</em></p>
<p>-Working For Beer-</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[New header coming soon!]]></title>
<link>http://gardenpartyhelper.wordpress.com/2009/11/22/new-header-coming-soon/</link>
<pubDate>Sun, 22 Nov 2009 23:58:30 +0000</pubDate>
<dc:creator>barbere</dc:creator>
<guid>http://gardenpartyhelper.wordpress.com/2009/11/22/new-header-coming-soon/</guid>
<description><![CDATA[&nbsp; I&#8217;m working on getting my header uploaded but am having some trouble . But once up it w]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>&#160;</p>
<p>I&#8217;m working on getting my header uploaded but am having some trouble <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> . But once up it will be (in my opinion) one of the best headers I have ever made! Here is just a LITTLE SNEEK PEAK.</p>
<p> <a href="http://gardenpartyhelper.wordpress.com/files/2009/11/header-sneek-peak.png"><img class="aligncenter size-full wp-image-1096" title="header sneek peak" src="http://gardenpartyhelper.wordpress.com/files/2009/11/header-sneek-peak.png" alt="" width="148" height="94" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Lebanese University]]></title>
<link>http://zeinamasri.wordpress.com/2009/11/22/lebanese-university/</link>
<pubDate>Sun, 22 Nov 2009 14:29:41 +0000</pubDate>
<dc:creator>Zouz</dc:creator>
<guid>http://zeinamasri.wordpress.com/2009/11/22/lebanese-university/</guid>
<description><![CDATA[To the Lebanese University.. for the times we spent there, for the knowledge, for the memories..to t]]></description>
<content:encoded><![CDATA[To the Lebanese University.. for the times we spent there, for the knowledge, for the memories..to t]]></content:encoded>
</item>
<item>
<title><![CDATA[things starting to shape up...]]></title>
<link>http://jezstevens.wordpress.com/2009/11/22/things-starting-to-shape-up/</link>
<pubDate>Sun, 22 Nov 2009 02:52:13 +0000</pubDate>
<dc:creator>jez stevens</dc:creator>
<guid>http://jezstevens.wordpress.com/2009/11/22/things-starting-to-shape-up/</guid>
<description><![CDATA[feeling somewhat happier with this design &#8211; I tend to writ smaller notes so having a narrower ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>feeling somewhat happier with this design &#8211; I tend to writ smaller notes so having a narrower column seems to make sense. Graphically , I like the split image header (I&#8217;ve used one of my shots from Bristol). I&#8217;m getting to grips with WordPress too. not too happy about the way flickr is a) working b)displaying &#8211; I might get rid of it and put in a text box with an image in that.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[headbutt dat nigga..]]></title>
<link>http://imnotatoy.com/2009/11/21/headbutt-dat-nigga/</link>
<pubDate>Sat, 21 Nov 2009 22:48:33 +0000</pubDate>
<dc:creator>imnotatoy</dc:creator>
<guid>http://imnotatoy.com/2009/11/21/headbutt-dat-nigga/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/-I7-KEa99Fw&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/-I7-KEa99Fw&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[New Header Finally by Picnik.com ]]></title>
<link>http://riseofthepantyhose.wordpress.com/2009/11/20/new-header-finally-by-picnik-com/</link>
<pubDate>Fri, 20 Nov 2009 12:44:44 +0000</pubDate>
<dc:creator>thegypsywrites</dc:creator>
<guid>http://riseofthepantyhose.wordpress.com/2009/11/20/new-header-finally-by-picnik-com/</guid>
<description><![CDATA[After a long time of deciding whether to have my header made by someone I know or by me, I finally c]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>After a long time of deciding whether to have my header made by someone I know or by me, I finally chose the latter. Since I wanted to have polariod effects on the subjects which will be included in this blog, I wanted to have full responsibility on how my blog will look like. But without any working experience with Photoshop, I strongly decided against it.<br />
<!--more--><br />
However, I made an online search [out of boredom] for some guides on how I can create a polariod effect to my photos using Photoshop. But this, led me to something MUCH better.</p>
<p>With <a href="http://www.picnik.com/app#/home/welcome" target="_blank">Picnik.com</a>, I no longer have to work from scratch since I only need to upload a photo and click a Polariod frame. That&#8217;s it. They don&#8217;t charge anything and will not even require you to register. Yey! No spam emails!</p>
<p>So here it is guys: finally my new header which will be up in a few minutes. <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align:center;"><a href="http://riseofthepantyhose.wordpress.com/files/2009/11/pantyhoseheaderlogo3.jpg"><img class="size-medium wp-image-42 aligncenter" title="header" src="http://riseofthepantyhose.wordpress.com/files/2009/11/pantyhoseheaderlogo3.jpg?w=300" alt="" width="537" height="107" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[New Header and Song of the Week VII]]></title>
<link>http://extremeflyer.wordpress.com/2009/11/19/new-header-and-song-of-the-week-vii/</link>
<pubDate>Thu, 19 Nov 2009 16:10:37 +0000</pubDate>
<dc:creator>alcoholicfroggy</dc:creator>
<guid>http://extremeflyer.wordpress.com/2009/11/19/new-header-and-song-of-the-week-vii/</guid>
<description><![CDATA[Am schimbat headerul si am sa postez si cantecul saptamanii The winner is Lady Gaga &#8211; Bad Roma]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Am schimbat headerul si am sa postez si cantecul saptamanii <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  The winner is <strong>Lady Gaga &#8211; Bad Romance</strong></p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/ACm9yECwSso&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/ACm9yECwSso&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Lamco Forest Products: Offering Flexibility in Greener Building Designs]]></title>
<link>http://engineeredwood.wordpress.com/2009/11/18/4/</link>
<pubDate>Wed, 18 Nov 2009 22:47:53 +0000</pubDate>
<dc:creator>engineeredwood</dc:creator>
<guid>http://engineeredwood.wordpress.com/2009/11/18/4/</guid>
<description><![CDATA[Introduction to Lamco Forest Products: the building material of a greener future! For additional inf]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Introduction to Lamco Forest Products: the building material of a greener future!</p>
<p><!-- SlideShare error: doc is missing or has illegal characters /[^-_a-zA-Z0-9]/ --></p>
<p>For additional information, please contact <a title="Melanie Cauchon mcauchon@pflamco.com" href="http://www.lamcoforest.com/lamco_en.php?p=5" target="_blank">Melanie Cauchon </a>, US Sales Manager, <a title="Lamco Forest Products- RELAM-LFS EWP Structural Components" href="http://www.lamcoforest.com/lamco_en.php?p=9&#38;pp=2">Lamco Forest Products</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Det der header-problem!]]></title>
<link>http://boohyouwhore.com/2009/11/18/det-der-header-problem/</link>
<pubDate>Wed, 18 Nov 2009 22:20:35 +0000</pubDate>
<dc:creator>ksubi</dc:creator>
<guid>http://boohyouwhore.com/2009/11/18/det-der-header-problem/</guid>
<description><![CDATA[Kan i huske jeg havde det header-problem hvor jeg ville skifte header og i syntes den var fierce og ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Kan i huske jeg havde det header-problem hvor jeg ville skifte header og i syntes den var fierce og jeg skulle skifte til den? Well jeg blev virkeligt glad for at se hvor mange engagerede læsere jeg faktisk har, men alligevel var der en masse ting ved den jeg ikke helt kunne sætte en finger på, og derfor blev den altså hemmeligt skrottet i mellemtiden .</p>
<p>Dog har jeg leget lidt med en ny header og jeg er kommet frem til den i ser ovenfor .. Det der er ved den header ovenfor er at den har bloggens navn i, så der ikke er nogen forvirring om hvad bloggen hedder, og så er der et billede af mig, så der ikke er nogen tvivl om hvem der sidder og skriver om killer heels og rå tasker, Dette hjælper også lidt i vejen af den renovation jeg har i gang, hvor jeg skal lære at være mere personlig ..</p>
<p>Jeg vil super gerne have at i siger jeres mening om den . Dvs. er det en keeper eller er det direkte tilbage til den gode gamle med skriften &#8220;Boohyouwhore&#8221; ..</p>
<div id="attachment_767" class="wp-caption aligncenter" style="width: 510px"><a href="http://boohyouwhore.wordpress.com/files/2009/11/header22.jpg"><img class="size-full wp-image-767" title="Bloggens gamle header" src="http://boohyouwhore.wordpress.com/files/2009/11/header22.jpg" alt="Bloggens gamle header" width="500" height="132" /></a><p class="wp-caption-text">Bloggens gamle header</p></div>
<p>Glæder mig til at høre fra jer, og endnu en 1000 tak fordi i sagde jeres mening sidst, i skal nemlig vide at jeg lytter til mine læsere og sætter pris på det hver eneste gang de kommentere .</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[AJ Scrapbook Essentials]]></title>
<link>http://kellymacintyre.wordpress.com/2009/11/18/aj-scrapbook-essentials/</link>
<pubDate>Wed, 18 Nov 2009 17:28:36 +0000</pubDate>
<dc:creator>kemablog</dc:creator>
<guid>http://kellymacintyre.wordpress.com/2009/11/18/aj-scrapbook-essentials/</guid>
<description><![CDATA[Here are a few headers/logos for AJ Scrapbook Essentials Original Design Header (Used at AJ Scrapboo]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h2 style="text-align:center;">Here are a few headers/logos for AJ Scrapbook Essentials</h2>
<p style="text-align:center;"><a href="http://kellymacintyre.wordpress.com/files/2009/11/ajlogo2.gif"><img class="aligncenter size-full wp-image-87" title="ajlogo2" src="http://kellymacintyre.wordpress.com/files/2009/11/ajlogo2.gif" alt="" width="500" height="94" /></a></p>
<p style="text-align:center;">Original Design Header (<a href="http://ajscrapbookessentials.storeblogs.com">Used at AJ Scrapbook Essentials BLOG</a>)</p>
<p style="text-align:center;">
<p style="text-align:center;"><a href="http://kellymacintyre.wordpress.com/files/2009/11/ajslogogreen.jpg"><img class="aligncenter size-full wp-image-88" title="ajslogogreen" src="http://kellymacintyre.wordpress.com/files/2009/11/ajslogogreen.jpg" alt="" width="500" height="98" /></a>Header Designed to match their colors at [<a href="http://ajscrapbookessentials.com">AJ Scrapbook Essentials DOT Com</a>]</p>
<p style="text-align:center;">
<p style="text-align:center;"><a href="http://kellymacintyre.wordpress.com/files/2009/11/sqajlogo1.gif"><img class="aligncenter size-full wp-image-89" title="sqajlogo1" src="http://kellymacintyre.wordpress.com/files/2009/11/sqajlogo1.gif" alt="" width="273" height="271" /></a>Logo for their participation in the Reindeer Roundup (which you can learn about by visiting their BLOG)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Ny header]]></title>
<link>http://hjemmefruen.wordpress.com/2009/11/17/ny-header/</link>
<pubDate>Tue, 17 Nov 2009 22:31:11 +0000</pubDate>
<dc:creator>Hjemmefruen</dc:creator>
<guid>http://hjemmefruen.wordpress.com/2009/11/17/ny-header/</guid>
<description><![CDATA[Har laget ny header  i kveld &#8211; hva synes dere? Brukte Picasa - nokså artig i grunnen.. Formen ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:left;"><span style="color:#800080;">Har laget ny header  i kveld &#8211; hva synes dere? Brukte Picasa - nokså artig i grunnen.. </span></p>
<p style="text-align:left;"><span style="color:#800080;">Formen på Hjemmefruen er fortiden bobbob, tror ikke jeg har fått <span style="color:#ff99cc;"><strong>ROSA krøllete hale</strong><span style="color:#800080;"><strong> </strong>men er ikke i form. Ingen i Hjemmefruens residens er i grunnen 100% for tida, eller jo&#8230;Lisa Sofie er det. Og Sebastian..ellers er vi slik på halv tolv resten av oss. </span></span></span></p>
<p style="text-align:left;"><span style="color:#800080;"><span style="color:#ff99cc;"><span style="color:#800080;">Så mens jeg pleier meg selv, pleier og blir pleiet kan jo dere gi meg innspill på ting  jeg kan blogge om <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Som Sebastian ville sagt det &#8211; det var en god plan!</span></span></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Header Contest!]]></title>
<link>http://poptropicahelpblog.wordpress.com/2009/11/17/header-contest/</link>
<pubDate>Tue, 17 Nov 2009 22:20:54 +0000</pubDate>
<dc:creator>Fierce Sky</dc:creator>
<guid>http://poptropicahelpblog.wordpress.com/2009/11/17/header-contest/</guid>
<description><![CDATA[Hello Poptropicans, &nbsp; So, every day I&#8217;ve looked at the front page of my blog, and thought]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Hello Poptropicans,</p>
<p>&#160;</p>
<p>So, every day I&#8217;ve looked at the front page of my blog, and thought to myself, &#8220;Man, this blog would look a lot nicer with a header on top of it.&#8221; Well, I&#8217;ve decided to act. Well, kind of. I don&#8217;t really have the time to make my blog a header. So, internet slaves, do my work <strong>for me! </strong>(That was a joke, by the way.) <!--more--></p>
<p>Fierce Sky&#8217;s Poptropica Blog is having a contest for YOU to design a header for the blog. Yes, YOU. Here are the rules and restrictions:</p>
<p>&#160;</p>
<p>1. Your header must be YOUR OWN. This means that you can not, shall not, and will not copy a header from someone else. I am fine with you working with a friend on the header, but if you are, make sure to mention both of your names.</p>
<p>2. Header design: The header must contain the words &#8220;Fierce Sky&#8217;s Poptropica Blog&#8221; in it, along with a picture of my head. Because, I wouldn&#8217;t want my blog header to not have my own face on it. A picture of Fierce Sky is available on the right hand side of this blog. If you need a higher-res photo, or if you want me to change how I look for the header, please shoot me off an email. Email will be discussed later in detail.</p>
<p>3. Please follow WordPress&#8217;s guidelines for blog headers. This means no inappropriate images, bad words, or things like this. WordPress has a good article <a title="Designing Header" href="http://codex.wordpress.org/Designing_Headers" target="_blank">here</a> for guidelines, and help designing it.</p>
<p>4. Once you complete your header, email the picture <strong>as an attachment </strong>to fiercesky@yahoo.com . The attached picture must be either a JPEG or PNG save file. In the email, please put &#8220;Header Contest&#8221; in the subject line, so I&#8217;ll know you&#8217;re entering the contest. Make sure in the actual email to include your name. This helps me to give credit to you making the picture. I strongly recommend it isn&#8217;t your real name. I would prefer that it would be your Poptropica name. (Fierce Sky, Popular Thunder, etc.)</p>
<p>5. All entries must be emailed to fiercesky@yahoo.com by December 31st, 2009, at 11:59 pm. Yes, this is a long time. I want to give you as much time as possible to make this <strong>the best header ever</strong>. That means that I expect your absolute best work, and nothing less. Keep in mind that this is going on a blog  that the whole internet can see, so please make it the best you can.</p>
<p>6. If you have any questions, comments, concerns, or inquiries, please email to fiercesky@yahoo.com whatever it is, just as long as &#8220;Contest Question&#8221; is in the subject line.</p>
<p>&#160;</p>
<p>Remember, email fiercesky@yahoo.com for anything you need about the contest, or anything else you&#8217;d like to know from me.</p>
<p>&#160;</p>
<p>Good luck on the headers, and I expect your best work! You are also free to post comments on this post, just please don&#8217;t share your work on here, I don&#8217;t want any copying.</p>
<p>&#160;</p>
<p>-Fierce Sky</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[oh dad]]></title>
<link>http://thebookofevelyn.wordpress.com/2009/11/17/oh-dad/</link>
<pubDate>Tue, 17 Nov 2009 08:54:06 +0000</pubDate>
<dc:creator>thebookofevelyn</dc:creator>
<guid>http://thebookofevelyn.wordpress.com/2009/11/17/oh-dad/</guid>
<description><![CDATA[subject:  hi check out my new e mail thread:   dad : thanks for looking at and commenting on my phot]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="text-decoration:underline;">subject:</span>  hi check out my new e mail</p>
<div id="_mcePaste"><span style="text-decoration:underline;">thread:</span>  </div>
<div><strong>dad</strong> : thanks for looking at and commenting on my photos, most people just ignore them</div>
<div>I like your latest posting: [link]</div>
<div> good balance and composition</div>
<div> you&#8217;re really talented!!</div>
<div></div>
<div><strong>me</strong> : what do you mean check out my new email?</div>
<div></div>
<div><strong>dad</strong> : I don&#8217;t understand what new email?</div>
<div></div>
<div>
<div><strong>me</strong> : The subject of the email u sent me</div>
<div></div>
<div><strong>dad</strong> : Oh the header,  I don&#8217;t know where that came from</div>
</div>
<p>&#160;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Black Grass Template]]></title>
<link>http://tsgdesigns.wordpress.com/2009/11/16/black-grass-template/</link>
<pubDate>Mon, 16 Nov 2009 18:08:47 +0000</pubDate>
<dc:creator>taraSG</dc:creator>
<guid>http://tsgdesigns.wordpress.com/2009/11/16/black-grass-template/</guid>
<description><![CDATA[To check out the rest of my headers or request one, go here! Black Grass Header Black Grass Button]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>To check out the rest of my headers or request one, <a href="http://tsgdesigns.wordpress.com/templates/">go here</a>!</p>
<h2>Black Grass Header</h2>
<p><img class="aligncenter size-full wp-image-246" title="black grass header" src="http://tsgdesigns.wordpress.com/files/2009/11/black-grass-header.jpg" alt="black grass header" width="600" height="117" /></p>
<h2>Black Grass Button</h2>
<p><img class="aligncenter size-full wp-image-247" title="black grass button" src="http://tsgdesigns.wordpress.com/files/2009/11/black-grass-button.jpg" alt="black grass button" width="256" height="202" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[I'd like your thoughts on the new header.]]></title>
<link>http://katieballard.wordpress.com/2009/11/16/id_like_your_thoughts_on_the_new_header/</link>
<pubDate>Mon, 16 Nov 2009 12:00:08 +0000</pubDate>
<dc:creator>Katie</dc:creator>
<guid>http://katieballard.wordpress.com/2009/11/16/id_like_your_thoughts_on_the_new_header/</guid>
<description><![CDATA[I&#8217;m not sure if I like the new header. What do you think? Here&#8217;s another option: Option ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I&#8217;m not sure if I like the new header. What do you think? Here&#8217;s another option:</p>
<div id="attachment_1710" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-1710" src="http://katieballard.wordpress.com/files/2009/11/blog-header-cropped-rings.jpg" alt="" width="500" height="125" /><p class="wp-caption-text">Option A</p></div>
<p>And another, <em>ever-so-slightly</em> different one:</p>
<div id="attachment_1711" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-1711" title="blog header cropped 2" src="http://katieballard.wordpress.com/files/2009/11/blog-header-cropped-2.jpg" alt="blog header cropped 2" width="500" height="125" /><p class="wp-caption-text">Option B</p></div>
<a name="pd_a_2250795"></a><div class="PDS_Poll" id="PDI_container2250795" style="display:inline-block;"></div><script type="text/javascript" language="javascript" charset="utf-8" src="http://static.polldaddy.com/p/2250795.js"></script>
		<noscript>
		<a href="http://answers.polldaddy.com/poll/2250795/">View This Poll</a><br/><span style="font-size:10px;"><a href="http://answers.polldaddy.com">opinion</a></span>
		</noscript>
</div>]]></content:encoded>
</item>

</channel>
</rss>
