<?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>Mahbubur Rahman - jQuery, PHP, JavaScript, Codeigniter, CSS &#187; design</title>
	<atom:link href="http://www.mahbubblog.com/category/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mahbubblog.com</link>
	<description>PHP, JQUERY, JAVASCRIPT fun</description>
	<lastBuildDate>Thu, 02 Jun 2011 09:28:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>A CSS3 404 Error Page for your Codeigniter Application</title>
		<link>http://www.mahbubblog.com/codeigniter/a-css3-404-error-page-for-your-codeigniter-application/</link>
		<comments>http://www.mahbubblog.com/codeigniter/a-css3-404-error-page-for-your-codeigniter-application/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 08:11:55 +0000</pubDate>
		<dc:creator>Mahbub</dc:creator>
				<category><![CDATA[Codeigniter]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://www.mahbubblog.com/?p=318</guid>
		<description><![CDATA[How would this look ? Instead of the boring Want the Code ? There you go ! Just paste the  code in your application/errors/error404.php. &#60; ?php header(&#34;HTTP/1.1 404 Not Found&#34;); ?&#62; &#60; !DOCTYPE html PUBLIC &#34;-//W3C//DTD HTML 4.01 Transitional//EN&#34;&#62; &#60;html&#62;&#60;head&#62; &#60;meta http-equiv=&#34;content-type&#34; content=&#34;text/html;charset=ISO-8859-1&#34;&#62; &#60;title&#62;404 Not Found&#60;/title&#62; &#60;style type=&#34;text/css&#34; media=&#34;screen&#34;&#62; body { color: white; background-color: #AAA; [...]]]></description>
			<content:encoded><![CDATA[<p>How would this look ?</p>
<p><a href="http://www.mahbubblog.com/wp-content/uploads/2011/06/css3-404-ci.png"><img class="alignnone size-large wp-image-319" title="css3-404-ci" src="http://www.mahbubblog.com/wp-content/uploads/2011/06/css3-404-ci-1024x582.png" alt="CSS3 404 Error Page for Codeigniter" width="1024" height="582" /></a></p>
<p>Instead of the boring</p>
<p><a href="http://www.mahbubblog.com/wp-content/uploads/2011/06/boring-404.png"><img class="alignnone size-large wp-image-321" title="boring-404" src="http://www.mahbubblog.com/wp-content/uploads/2011/06/boring-404-1024x507.png" alt="Boring Codeigniter Error Page" width="1024" height="507" /></a></p>
<p>Want the Code ? There you go ! Just paste the  code in your application/errors/error404.php.</p>
<pre class="brush: php">
&lt; ?php header(&quot;HTTP/1.1 404 Not Found&quot;); ?&gt;
&lt; !DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;&lt;head&gt;
&lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html;charset=ISO-8859-1&quot;&gt;
&lt;title&gt;404 Not Found&lt;/title&gt;
&lt;style type=&quot;text/css&quot; media=&quot;screen&quot;&gt;
body
{
color: white;
background-color: #AAA;
margin: 0px;
font-family:&quot;Droid Sans&quot;,Arial;
}

#horizon
{
color: white;
background-color: #37AEB6;
text-align: center;
position: absolute;
top: 50%;
left: 0px;
width: 100%;
height: 0px;
overflow: visible;
visibility: visible;
display: block
}

#content
{
margin-left: -205px;
position: absolute;
top: -34px;
left: 50%;
width: 380px;
height: 60px;
padding:10px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
-moz-box-shadow: 0 0 15px rgba(255,255,255,.9);
-webkit-box-shadow: 0 0 15px rgba(255,255,255,.9);
text-shadow: 0px 0px 1px #000;
visibility: visible;
background: rgb(155,0,0);
background:-webkit-gradient( linear, left bottom, left top, color-stop(0.24, rgb(250,0,0)), color-stop(0.89, rgb(128,20,20)) );
background:-moz-linear-gradient( center bottom, rgb(250,0,2) 24%, rgb(128,20,20) 89%);
}

.bodytext
{
font-weight:bold;
font-size: 13px;
text-transform:uppercase;
}

.headline
{
font-weight: normal;
font-size: 30px;
text-shadow: 0px 0px 4px #000;
line-height:38px;
}

a:link, a:visited
{
color: #06f;
text-decoration: none
}

a:hover
{
color: red;
text-decoration: none
}

.captions
{
color: white;
font-size: 10px;
line-height: 14px;
font-family: Verdana, Geneva, Arial, sans-serif;
text-align: left
}
&lt;/style&gt;
&lt;/meta&gt;&lt;/head&gt;
&lt;body&gt;
&lt;div id=&quot;horizon&quot;&gt;
&lt;div id=&quot;content&quot;&gt;
&lt;div class=&quot;bodytext&quot;&gt;
&lt;span class=&quot;headline&quot;&gt;404&lt;/span&gt;&lt;br /&gt;
Sorry, the page you&#039;re looking for is not found&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;footer&quot;&gt;

&lt;/div&gt;

&lt;/body&gt;&lt;/html&gt;
</pre>
<p>&nbsp;</p>
<p>There&#8217;s CSS3 Drop Shadow, Text Shadow and Gradient. Nowadays people are using latest browsers and it&#8217;s likely that people will see the page like the image for most of the popular browsers .</p>
<p>Of course you can use it for any 404 page for any PHP app OR if you like it you can even replace your apache 404 page (hosting specific) with this one [Just remove the php codes from top]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mahbubblog.com/codeigniter/a-css3-404-error-page-for-your-codeigniter-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Designing a prescription pad for my friend</title>
		<link>http://www.mahbubblog.com/design/designing-a-prescription-pad-for-my-friend/</link>
		<comments>http://www.mahbubblog.com/design/designing-a-prescription-pad-for-my-friend/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 00:47:12 +0000</pubDate>
		<dc:creator>Mahbub</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[prescription pad]]></category>

		<guid isPermaLink="false">http://www.mahbubblog.com/?p=219</guid>
		<description><![CDATA[It&#8217;s been quite a long time since i designed for some print materials. One of my best friends from elementary &#38; high school (&#38; still is) requested me to design his prescription pad for him because his current one looks horrible. He&#8217;s a general physician and a very good orthopaedic surgeon.  So i thought i&#8217;d [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been quite a long time since i designed for some print materials. One of my best friends from elementary &amp; high school (&amp; still is) requested me to design his prescription pad for him because his current one looks horrible. He&#8217;s a general physician and a very good orthopaedic surgeon.  So i thought i&#8217;d give a try for my friend&#8217;s prescription and this came up after a 2 hr effort.</p>
<p><a href="http://www.mahbubblog.com/wp-content/uploads/2010/02/prescription_pad.jpg"><img class="alignnone size-full wp-image-220" title="prescription" src="http://www.mahbubblog.com/wp-content/uploads/2010/02/prescription.jpg" alt="prescription pad " width="600" height="600" /></a></p>
<p>I used two of my favorite fonts called &#8220;Square 721 BT&#8221; and Titillium. Google it if you want to download them. And it&#8217;s the first composition with Adobe Illustrator CS4 after doing anything with CS2.</p>
<p>Leave me a comment if you want the source AI or EPS file.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mahbubblog.com/design/designing-a-prescription-pad-for-my-friend/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

