<?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>ThatGuyCharlie &#124; Charlie Mathews Blog &#38; Portfolio &#187; css</title>
	<atom:link href="http://www.thatguycharlie.com/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thatguycharlie.com</link>
	<description>Charlie Mathews Blog &#38; Portfolio</description>
	<lastBuildDate>Fri, 28 Oct 2011 05:05:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Professional CSS Alert Boxes</title>
		<link>http://www.thatguycharlie.com/2010/professional-css-alert-boxes/</link>
		<comments>http://www.thatguycharlie.com/2010/professional-css-alert-boxes/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 11:56:47 +0000</pubDate>
		<dc:creator>Charlie</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[alert box]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[freebie]]></category>
		<category><![CDATA[professional]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.thatguycharlie.com/?p=1013</guid>
		<description><![CDATA[When creating a clean and attractive website, you don&#8217;t ever want to ruin it with error pages. Although they are not always unavoidable, many scripts can easily return a clean error message. Using a simple bit of CSS makes your errors display in an smooth, non-aggressive way. This method is also very effective in returning [...]]]></description>
			<content:encoded><![CDATA[<p>When creating a clean and attractive website, you don&#8217;t ever want to ruin it with error pages. Although they are not always unavoidable, many scripts can easily return a clean error message. Using a simple bit of CSS makes your errors display in an smooth, non-aggressive way. This method is also very effective in returning little messages to your user such as &#8220;you are now logged in&#8221; or &#8220;you received a message&#8221;.<span id="more-1013"></span></p>
<h2>How</h2>
<p>By using the &#8220;border&#8221; css property it is easy to add a dark border to the top and bottom of each container. Using a color picker choose a light and dark version of a pastel color of your choice. Using icons from FamFamFam and adding a little padding, &#8220;Bamm!&#8221;, You&#8217;re done!</p>
<h2>Demo</h2>
<p><img src="http://www.simpleshare.vividperfection.com/privateuploads/alertdemo.png" alt="[image: alertdemo]" width="511" height="134" /></p>
<h2>The Code</h2>
<p>The images needed can be found in the download below.</p>
<pre class="brush: plain; title: ; notranslate">
&lt;html&gt;

&lt;head&gt;
&lt;style&gt;
body {
	color: ##444444;
	font-family: 'Lucida Grande',Verdana,Arial,Sans-Serif;
	font-size: 10px;
	}

.alert {
	background: #fff6bf url(exclamation.png) center no-repeat;
	background-position: 15px 50%;
	text-align: left;
	padding: 5px 20px 5px 45px;
	border-top: 2px solid #ffd324;
	border-bottom: 2px solid #ffd324;
	}

.info {
	background: #F8FAFC url(information.png) center no-repeat;
	background-position: 15px 50%;
	text-align: left;
	padding: 5px 20px 5px 45px;
	border-top: 2px solid #B5D4FE;
	border-bottom: 2px solid #B5D4FE;
	}

.error {
	background: #FFBFBF url(error.png) center no-repeat;
	background-position: 15px 50%;
	text-align: left;
	padding: 5px 20px 5px 45px;
	border-top: 2px solid #FF2424;
	border-bottom: 2px solid #FF2424;
	}
&lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;div class=&quot;info&quot;&gt;Information you need to know&lt;/div&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;alert&quot;&gt;Alert you triggered&lt;/div&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;error&quot;&gt;Error with our code&lt;/div&gt;
&lt;/body&gt;

&lt;/html&gt;
</pre>
<h2>Download</h2>
<p>See how simple that was? Download the source and images <a href="http://www.simpleshare.vividperfection.com/privateuploads/css_alert.zip">here</a>.</p>
<img src="http://www.thatguycharlie.com/?ak_action=api_record_view&id=1013&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.thatguycharlie.com/2010/professional-css-alert-boxes/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>CSS Powered Percentage Bar</title>
		<link>http://www.thatguycharlie.com/2010/css-powered-percentage-bar/</link>
		<comments>http://www.thatguycharlie.com/2010/css-powered-percentage-bar/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 11:07:01 +0000</pubDate>
		<dc:creator>Charlie</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[percentage]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://www.thatguycharlie.com/?p=920</guid>
		<description><![CDATA[After reading some of the css techniques mentioned at SmashingMagizine, I discovered that they had removed a dead link about a css powered percentage bar. I quickly decided to attempt a recreation of such a useful feature. Anyways, here is the easy code for creating a percentage bar. Demo The demo here shows the percentage [...]]]></description>
			<content:encoded><![CDATA[<p>After reading some of the css techniques mentioned at SmashingMagizine, I discovered that they had removed a dead link about a css powered percentage bar. I quickly decided to attempt a recreation of such a useful feature. Anyways, here is the easy code for creating a percentage bar.<span id="more-920"></span></p>
<h3>Demo</h3>
<p>The demo here shows the percentage bar using image backgrounds. This sample code tutorial below will demonstrate using background colors but if you wish to use images like above, refer to <a href="http://www.simpleshare.vividperfection.com/privateuploads/css_percentage_bar.zip">this download</a></p>
<p><img src="http://www.simpleshare.vividperfection.com/privateuploads/percentdemo.png" alt="[image: percentagebardemo]" width="520" height="50" /></p>
<h3>The Code</h3>
<pre class="brush: xml; title: ; notranslate">
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;CSS Percentage Bar Test&lt;title&gt;
&lt;style&gt;
.bar {
width: 500px ;
height: 20px ;
border: 1px solid #444444;
background-color: #656565 ;
}
.barfill {
height: 20px ;
float: left ;
background-color: #6ba8e5 ;
width: 50% ; /* This is the percentage displayed */
}
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div class=&quot;bar&quot;&gt;
&lt;div class=&quot;barfill&quot;&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>This CSS basically is the whole workings of the thing. It creates a bar and then fills it to a certain percent you define. Simple, eh? Try to play with it a bit, It&#8217;s amazing fun to mix with some javascript and use as a loading bar or upload progress bar.</p>
<p>What i&#8217;ve done is created the div with a class of &#8220;bar&#8221;. I made this 500 pixels wide and 20 pixels high. I gave it a grey background and gave it a dark grey border. To create the percentage, I then created a div with the class of &#8220;barfill&#8221; and made this float left inside of the &#8220;bar&#8221; div. I gave it a blue background and the percentage width I wanted displayed. To get results like the demo image, you would put &#8220;43%&#8221;. Check out <a href="http://www.simpleshare.vividperfection.com/privateuploads/css_percentage_bar.zip">the download</a> to get the images and full code I used in my demo image.</p>
<img src="http://www.thatguycharlie.com/?ak_action=api_record_view&id=920&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.thatguycharlie.com/2010/css-powered-percentage-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create a CSS Stylesheet</title>
		<link>http://www.thatguycharlie.com/2009/how-to-create-a-css-stylesheet/</link>
		<comments>http://www.thatguycharlie.com/2009/how-to-create-a-css-stylesheet/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 06:01:47 +0000</pubDate>
		<dc:creator>Charlie</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css stylesheet]]></category>
		<category><![CDATA[stylesheet]]></category>

		<guid isPermaLink="false">http://www.thatguycharlie.com/?p=923</guid>
		<description><![CDATA[Although simple, this is a question I&#8217;ve been asked numerous times by learner developers. This &#8220;tutorial&#8221; assumes you have also never created a html and css webpage before because the two facets are so closely linked. About Firstly, you need to understand what CSS is. CSS stands for Cascading StyleSheet and it is the key [...]]]></description>
			<content:encoded><![CDATA[<p>Although simple, this is a question I&#8217;ve been asked numerous times by learner developers. This &#8220;tutorial&#8221; assumes you have also never created a html and css webpage before because the two facets are so closely linked.</p>
<h2>About</h2>
<p>Firstly, you need to understand what CSS is. CSS stands for Cascading StyleSheet and it is the key element of web development. CSS is used to tell a webpage how you want it to look. It can be used to define id&#8217;s, classes, and other html elements.</p>
<p>You can load a stylesheet in html using this code:</p>
<p style="padding-left: 30px;"><span style="font-size: x-small;"><em>&lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;yourstyle.css&#8221;/&gt; </em></span></p>
<h2>Example</h2>
<p>Now, an example. Create a new file in notepad or a similar text editor and save it as <span style="text-decoration: underline;">style.css</span> to a folder on your computer. Repeat this and create another file called <span style="text-decoration: underline;">index.html</span> and save it to the same folder as your style.css file. <span id="more-923"></span>Open your index.html in a text editor and add this code:</p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">&lt;html&gt;</span></em></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">&lt;head&gt;</span></em></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">&lt;title&gt;My First Webpage&lt;/title&gt;</span></em></p>
<p style="padding-left: 30px;"><span style="font-size: x-small;"><em>&lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;style.css&#8221;/&gt; </em></span></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">&lt;/head&gt;</span></em></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">&lt;body&gt;</span></em></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;"><strong>&lt;div class=&#8221;mybox&#8221;&gt;Sample Text&lt;/div&gt;</strong><br />
 </span></em></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">&lt;/body&gt;</span></em></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">&lt;/html&gt;</span></em></p>
<p>As you can see, we have added a &lt;div&gt; element with a class of &#8220;mybox&#8221;. Now, open your style.css and add the div class by typing this code.</p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">.mybox {</span></em></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">width: 100px ;</span></em></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">height: 100px;</span></em></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">background-color: #000000 ;<br />
 </span></em></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">}</span></em></p>
<p>Save your style.css and index.html.</p>
<h2>Explanation</h2>
<p>What you have just done is told the &#8220;mybox&#8221; class to be 100 pixels high by 100 pixels wide with a background color of black (which is the same as #000000). Double click index.html and it will open in your default web browser. See your black box? Pretty cool, hu?</p>
<p>There are hundreds of ways and commands you can use in CSS so I&#8217;d recommend reading more about CSS at <a href="http://www.w3schools.com/Css/default.asp">W3Schools</a>. Have fun!</p>
<img src="http://www.thatguycharlie.com/?ak_action=api_record_view&id=923&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.thatguycharlie.com/2009/how-to-create-a-css-stylesheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Plugins You Just can&#039;t Live Without</title>
		<link>http://www.thatguycharlie.com/2009/firefox-plugins-you-just-cant-live-without/</link>
		<comments>http://www.thatguycharlie.com/2009/firefox-plugins-you-just-cant-live-without/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 21:44:47 +0000</pubDate>
		<dc:creator>Charlie</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[bar]]></category>
		<category><![CDATA[cant live without]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[download status bar]]></category>
		<category><![CDATA[fire]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[fox]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[in]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[percentage]]></category>
		<category><![CDATA[plug]]></category>
		<category><![CDATA[plug-in]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[pop-up]]></category>
		<category><![CDATA[pup-up]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[status]]></category>

		<guid isPermaLink="false">http://www.vividperfection.com/?p=673</guid>
		<description><![CDATA[After, using Internet Explorer for years, the speed and amazing customization abilities of Firefox astounded me. I finally understood why people went on and on about &#8220;Firefox, the best browser ever&#8221;. Even so, it took me a while to find customizations (plugins) which could really tap into the full power of this new browser. Here [...]]]></description>
			<content:encoded><![CDATA[<table border="0">
<tbody>
<tr>
<td>After, using Internet Explorer for years, the speed and amazing customization abilities of <a href="http://www.mozilla.com/en-US/firefox/personal.html">Firefox</a> astounded me. I finally understood why people went on and on about &#8220;Firefox, the best browser ever&#8221;. Even so, it took me a while to find customizations (plugins) which could really tap into the full power of this new browser. Here are the top choices I use as a web developer and full time internet surfer.</td>
<td><img src="http://www.simpleshare.vividperfection.com/uploads/firefoxtrans1.png" alt="" /></td>
</tr>
</tbody>
</table>
<p>1) <a href="https://addons.mozilla.org/en-US/firefox/addon/26">Download Status Bar</a><br />
 No Kidding, If it were not for this smart plug-in, I would become a raving maniac a long time ago. The number of small file downloads I make on a regular basis causes the constant download box pop-ups to turn into a big pain. The <a href="https://addons.mozilla.org/en-US/firefox/addon/26">Download Status Bar</a> packs all the information you want to see such as download name, speed, and amount completed into a status bar which appears at the bottom of your browser for easy and uninterrupted browsing.<span id="more-673"></span></p>
<p>2) <a href="http://getfirebug.com/">Firebug</a></p>
<p>This plug-in is the ultimate tool for any web developer using HTML, CSS, and Javascript. It allows you to edit your web page and view the changes in real time. You can hover over elements in your code and see exactly how your div&#8217;s are being positioned and displayed with a highlight tool. Over all it&#8217;s other features, my favorite is the ability to edit HTML and CSS for any element in an instant.</p>
<p>3) <a href="https://www.xmarks.com/">Xmarks</a> (FoxMarks)</p>
<p>Over the years, I have often lost computers to fatal errors and blue screens. In doing so, I lost all my bookmarks which are essential to my daily work online. This nifty service saves you from ever having that problem. It backs up your bookmarks every time you exit the browser and they are then made available to you online or restore-able to a new computer.</p>
<p>4) <a href="http://www.downloadhelper.net/">DownloadHelper</a></p>
<p>Ever seen media players in a web-page with no download option? This easy to use plugin tracks actively streaming videos and mp3&#8242;s and makes it possible for you to download videos from most popular sharing sites.</p>
<p>5) <a href="https://addons.mozilla.org/en-US/firefox/addon/201">DownThemAll!</a></p>
<p>For easy file downloads, this download manager is the first of it&#8217;s kind available in <a href="http://www.mozilla.com/en-US/firefox/personal.html">Firefox</a>. It makes the job of downloading split files a whole bunch easier without installing extra, spyware ridden software.</p>
<p><br class="spacer_" /></p>
<img src="http://www.thatguycharlie.com/?ak_action=api_record_view&id=673&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.thatguycharlie.com/2009/firefox-plugins-you-just-cant-live-without/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

