<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Cagintranet Web Design &#187; CSS</title>
	<atom:link href="http://www.cagintranet.com/cat/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cagintranet.com</link>
	<description>Pittsburgh Web Design Â» Cagintranet Web Design - Web Designer, Developer, Graphic Artist and Web 2.0 Guru</description>
	<lastBuildDate>Thu, 25 Mar 2010 10:32:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>CSS Tip: Easy Cross Browser &amp; Valid CSS Text Shadows</title>
		<link>http://www.cagintranet.com/archive/css-tip-easy-cross-browser-valid-css-text-shadows/</link>
		<comments>http://www.cagintranet.com/archive/css-tip-easy-cross-browser-valid-css-text-shadows/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 13:42:49 +0000</pubDate>
		<dc:creator>Chris Cagle</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.cagintranet.com/?p=84</guid>
		<description><![CDATA[<a href="http://www.cagintranet.com/archive/css-tip-easy-cross-browser-valid-css-text-shadows/"><img align="left" hspace="5" width="250" src="http://www.cagintranet.com/design/wp-content/uploads/2008/06/cssshadow.png" class="alignleft wp-post-image tfe" alt="" title="CSS Text Shadows" /></a>Photo Credit: Glockenblume Although I am certain that I am not the only one doing this, I have developed an extremely easy way to get CSS text shadows without the need to use the wildly unsupported CSS property of text-shadow. .post_title { position:relative; padding:10px 0 0 0; } .post_title h1 { position:absolute; top:2px; left:2px; font-size:30px; [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.cagintranet.com/design/wp-content/uploads/2008/06/cssshadow.png" alt="" title="CSS Text Shadows" width="500" height="200" class="alignnone size-full wp-image-85" /></p>
<p><cite class="flickrcite" >Photo Credit: <a href="http://www.flickr.com/photos/glockenblume/">Glockenblume</a></cite></p>
<p>Although I am certain that I am not the only one doing this, I have developed an extremely easy way to get CSS text shadows without the need to use the wildly unsupported CSS property of <a href="http://www.quirksmode.org/css/textshadow.html">text-shadow</a>.</p>
<style type="text/css">
.post_title {
position:relative;
padding:10px 0 0 0;
}</p>
<p>.post_title h1 {
position:absolute;
top:2px;
left:2px;
font-size:30px;
color:#C9D8E9;
padding:0;
margin:0;
}</p>
<p>.post_title h6 {
position:absolute;
top:0;
left:0;
font-size:30px;
color:#4471A2;
padding:0;
margin:0;
}</p>
</style>
<div class="post_title">
<h1>Lorem ipsum dolor sit amet consectetuer</h1>
<h6>Lorem ipsum dolor sit amet consectetuer</h6>
<p>&nbsp;</p>
<div class="clear"></div>
</div>
<p>The only problem that some people may see with this example is &#8220;duplicate content&#8221; because the title is shown twice in the HTML. I&#8217;ve decided that sometimes when all you need is a simple text drop shadow, this is an acceptable problem. This technique is extremely easy, and I have used it on a couple sites of mine thus far with no cross-browser issues. </p>
<h3>The Code (HTML)</h3>
<pre><code class="html">&lt;div class=&quot;post_title&quot;&gt;
	&lt;h1&gt;Lorem ipsum dolor sit amet consectetuer&lt;/h1&gt;
	&lt;h6&gt;Lorem ipsum dolor sit amet consectetuer&lt;/h6&gt;
&lt;/div&gt;</code></pre>
<h3>The Code (CSS)</h3>
<pre><code class="css">.post_title {
position:relative;
font-family:arial;
}

.post_title h1 {
position:absolute;
top:2px;
left:2px;
font-size:30px;
color:#C9D8E9;
padding:0;
margin:0;
}

.post_title h6 {
position:absolute;
top:0;
left:0;
font-size:30px;
color:#4471A2;
padding:0;
margin:0;
}</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.cagintranet.com/archive/css-tip-easy-cross-browser-valid-css-text-shadows/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>CSS Tip: Easy Semantic Web Contact Information</title>
		<link>http://www.cagintranet.com/archive/css-tip-easy-semantic-web-contact-information/</link>
		<comments>http://www.cagintranet.com/archive/css-tip-easy-semantic-web-contact-information/#comments</comments>
		<pubDate>Sun, 30 Mar 2008 12:37:26 +0000</pubDate>
		<dc:creator>Chris Cagle</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.cagintranet.com/?p=43</guid>
		<description><![CDATA[<a href="http://www.cagintranet.com/archive/css-tip-easy-semantic-web-contact-information/"><img align="left" hspace="5" width="250" src="http://www.cagintranet.com/design/wp-content/uploads/2008/03/hcard-semantic.png" class="alignleft wp-post-image tfe" alt="" title="hCard - Micrformats.org" /></a>The semantic web is coming in a hurry, so now is as good a time as any to embrace it and spend a few minutes to update your web site accordingly. On my site here, and for every member on my local community site, I use the same small snippet of HTML to make my [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.cagintranet.com/design/wp-content/uploads/2008/03/hcard-semantic.png" alt="" title="hCard - Micrformats.org" width="500" height="138" class="alignnone size-full wp-image-46" /></p>
<p>The <a href="http://www.techcrunch.com/2008/03/13/yahoo-embraces-the-semantic-web-expect-the-web-to-organize-itself-in-a-hurry/">semantic web is coming in a hurry</a>, so now is as good a time as any to embrace it and spend a few minutes to update your web site accordingly. </p>
<p>On my site here, and for every member on my <a href="http://pghdesigners.com">local community site</a>, I use the same small snippet of HTML to make my contact information semantic. </p>
<p><strong>HINT:</strong> You will notice that near the bottom of the HTML code, there is a link to download the hCard. This is a <a href="http://technorati.com/contact/">service that Technorati provides</a> free of charge, and is a wonderful way to give your visitors yet another way to save your contact information. For more information on what an hCard is, read up about it at <a href="http://microformats.org/wiki/hcard">Microfromats.org</a>.</p>
<h3>HTML</h3>
<pre><code class="html">&lt;dl class=&quot;vcard&quot;&gt;

 &lt;dt&gt;Mail:&lt;/dt&gt;
  &lt;dd class=&quot;adr&quot;&gt;
    &lt;div class=&quot;fn org&quot;&gt;Business Name&lt;/div&gt;
    &lt;div&gt;&lt;span class=&quot;nickname&quot;&gt;Your Name&lt;/span&gt;,
    &lt;span class=&quot;title&quot;&gt;Owner&lt;/span&gt;&lt;/div&gt;
    &lt;div&gt;&lt;span class=&quot;street-address&quot;&gt;24 Main Street&lt;/span&gt;&lt;/div&gt;
    &lt;div&gt;&lt;span class=&quot;locality&quot;&gt;Pittsburgh&lt;/span&gt;,
    &lt;span class=&quot;region&quot;&gt;PA&lt;/span&gt;
    &lt;span class=&quot;country-name&quot;&gt;USA &lt;/span&gt;
    &lt;span class=&quot;postal-code&quot;&gt;15202&lt;/span&gt;&lt;/div&gt;
  &lt;/dd&gt;

 &lt;dt&gt;Email:&lt;/dt&gt;
  &lt;dd&gt;&lt;a href=&quot;mailto:admin@yourdomain.com&quot; class=&quot;email&quot;&gt;admin@yourdomain.com&lt;/a&gt;&lt;/dd&gt;

 &lt;dt&gt;Phone:&lt;/dt&gt;
  &lt;dd class=&quot;tel&quot;&gt;
    &lt;span class=&quot;type&quot;&gt;Work&lt;/span&gt;
    &lt;span class=&quot;value&quot;&gt;412-555-9999&lt;/span&gt;
  &lt;/dd&gt;
  &lt;dd&gt;&lt;a href=&quot;http://technorati.com/contact/http://yourdomain.com/contactpage&quot;&gt;hCard&lt;/a&gt;&lt;/dd&gt;

&lt;/dl&gt;</code></pre>
<h3>CSS</h3>
<pre><code class="css">dl,dt,dd {margin:0; padding:0}
dl.vcard {margin:0 0 35px 5px;}
dl.vcard dt, dl.vcard .org, dl.vcard .type {display: none;}
dl.vcard dd.adr {padding-bottom: 1em;}</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.cagintranet.com/archive/css-tip-easy-semantic-web-contact-information/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
