<?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>Aimee LaPlant - web dev, reviews, pop culture and comic books! &#187; wordpress</title>
	<atom:link href="http://www.aimeelaplant.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aimeelaplant.com</link>
	<description>Web development, reviews, and popculture talk</description>
	<lastBuildDate>Sat, 28 Nov 2009 20:46:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Add a dropshadow to the WordPress Thickbox</title>
		<link>http://www.aimeelaplant.com/2009/06/add-a-dropshadow-to-the-wordpress-thickbox/</link>
		<comments>http://www.aimeelaplant.com/2009/06/add-a-dropshadow-to-the-wordpress-thickbox/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 01:50:23 +0000</pubDate>
		<dc:creator>Aimee</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.aimeelaplant.com/?p=80</guid>
		<description><![CDATA[I show you how to add a dropshadow to that boring WordPress Thickbox.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.aimeelaplant.com/wp-content/uploads/2009/06/dropshadow_thickbox_01.jpg"><img class="alignright size-full wp-image-103" title="Dropshadow for Thickbox" src="http://www.aimeelaplant.com/wp-content/uploads/2009/06/dropshadow_thickbox_01.jpg" alt="Dropshadow for Thickbox" width="197" height="212" /></a>I&#8217;ve noticed when using Safari, the WordPress Thickbox will display a very pretty dropshadow that really adds volume to the ugly looking box. I wanted the dropshadow to appear in FireFox, Internet Explorer, and the likes, but couldn&#8217;t find a WordPress plugin that did that.</p>
<p>I went out of the WordPress realm and searched for a code that includes a crossbrowser dropshadow for Thickbox. Then, I manually implemented the dropshadow into the WordPress thickbox. Alas, I found pradeepsathyan.com&#8217;s <a href="http://pradeepsathyan.com/uncategorized/jquery-thickbox-with-shodows.php">jQuery Thickbox with Shadows</a>. Check out the demo provided on his post, then download sample.</p>
<p>Get out your WordPress files in <strong>/wp-includes/js/thickbox</strong>. Take out <strong>thickbox.css</strong> and <strong>thickbox.js</strong> because those are the two files we&#8217;re going to edit. Make sure to save a backup.</p>
<p><span id="more-80"></span></p>
<p>Unzip the &#8220;jQuery Thickbox with Shadows&#8221; files that you just downloaded, and in <strong>thickbox.css</strong>, find these lines of code:</p>
<pre>div.fancy_bg {
    position: absolute;
    display: block;
    z-index: 70;
    border: 0;
    padding: 0;
    margin: 0;
}

div.fancy_bg_n {
    top: -18px;
    width: 100%;
    height: 18px;
    background: transparent url(images/fancy_shadow_n.png) repeat-x;
}

div.fancy_bg_ne {
    top: -18px;
    right: -13px;
    width: 13px;
    height: 18px;
    background: transparent url(images/fancy_shadow_ne.png) no-repeat;
}

div.fancy_bg_e {
    right: -13px;
    height: 100%;
    width: 13px;
    background: transparent url(images/fancy_shadow_e.png) repeat-y;
}

div.fancy_bg_se {
    bottom: -18px;
    right: -13px;
    width: 13px;
    height: 18px;
    background: transparent url(images/fancy_shadow_se.png) no-repeat;
}

div.fancy_bg_s {
    bottom: -18px;
    width: 100%;
    height: 18px;
    background: transparent url(images/fancy_shadow_s.png) repeat-x;
}

div.fancy_bg_sw {
    bottom: -18px;
    left: -13px;
    width: 13px;
    height: 18px;
    background: transparent url(images/fancy_shadow_sw.png) no-repeat;
}

div.fancy_bg_w {
    left: -13px;
    height: 100%;
    width: 13px;
   background: transparent url(images/fancy_shadow_w.png) repeat-y;
}
*html div.fancy_bg_w{
    height:100%;
}

div.fancy_bg_nw {
    top: -18px;
    left: -13px;
    width: 13px;
    height: 18px;
    background: transparent url(images/fancy_shadow_nw.png) no-repeat;
}</pre>
<p>Copy and paste the above code into your original WordPress file .  Place it after #TB_window. Save your edited WordPress <strong>thickbox.css</strong> file and close.</p>
<p>Remember that the variable sign in solo jQuery is <strong>$</strong>, and the variable in WordPress jQuery is <strong>jQuery</strong>. So, we&#8217;ll need to do a little editing. Open the non-WordPress <strong>thickbox.js</strong> file you just downloaded and find these lines of codes:</p>
<pre>$('&lt;div id="fancy_bg"&gt;&lt;div class="fancy_bg fancy_bg_n"&gt;&lt;/div&gt;
&lt;div class="fancy_bg fancy_bg_ne"&gt;&lt;/div&gt;&lt;div class="fancy_bg fancy_bg_e"&gt;&lt;/div&gt;
&lt;div class="fancy_bg fancy_bg_se"&gt;&lt;/div&gt;&lt;div class="fancy_bg fancy_bg_s"&gt;&lt;/div&gt;
&lt;div class="fancy_bg fancy_bg_sw"&gt;&lt;/div&gt;&lt;div class="fancy_bg fancy_bg_w"&gt;&lt;/div&gt;
&lt;div class="fancy_bg fancy_bg_nw"&gt;&lt;/div&gt;&lt;/div&gt;').prependTo("#TB_window");</pre>
<p>We&#8217;re going to change the <strong>$</strong> to <strong>jQuery</strong> and the <strong>&#8221; &#8220;</strong> to <strong>&#8216; &#8216;</strong>:</p>
<pre>jQuery("&lt;div id='fancy_bg'&gt;&lt;div class='fancy_bg fancy_bg_n'&gt;&lt;/div&gt;
&lt;div class='fancy_bg fancy_bg_ne'&gt;
&lt;/div&gt;&lt;div class='fancy_bg fancy_bg_e'&gt;
&lt;/div&gt;
&lt;div class='fancy_bg fancy_bg_se'&gt;&lt;/div&gt;
&lt;div class='fancy_bg fancy_bg_s'&gt;&lt;/div&gt;
&lt;div class='fancy_bg fancy_bg_sw'&gt;
&lt;/div&gt;&lt;div class='fancy_bg fancy_bg_w'&gt;&lt;/div&gt;
&lt;div class='fancy_bg fancy_bg_nw'&gt;
&lt;/div&gt;&lt;/div&gt;").prependTo("#TB_window");</pre>
<p>Take your newly edited code and add it to these lines on your WordPress <strong>thickbox.js</strong> file (it&#8217;s around Line 125 for me):</p>
<pre>// End Resizing

TB_WIDTH = imageWidth + 30;
TB_HEIGHT = imageHeight + 60;
jQuery("#TB_window").append("&lt;a href='' id='TB_ImageOff' title='Close'&gt;
&lt;img id='TB_Image' src='"+url+"' width='"+imageWidth+"' height='"+imageHeight+"' alt='"+caption+"'/&gt;&lt;/a&gt;"
+
"&lt;div id='TB_caption'&gt;"+caption+"&lt;div id='TB_secondLine'&gt;" + TB_imageCount + TB_PrevHTML + TB_NextHTML + "
&lt;a href='"+url+"' id='TB_FullSize' title='Full Size' target='_blank'&gt;Full Size&lt;/a&gt;
&lt;/div&gt;&lt;/div&gt;&lt;div id='TB_closeWindow'&gt; &lt;a href='#' id='TB_closeWindowButton' title='Close'&gt;Close&lt;/a&gt;&lt;/div&gt;");
ADD THE EDITED CODE HERE:
jQuery("&lt;div id='fancy_bg'&gt;&lt;div class='fancy_bg fancy_bg_n'&gt;
&lt;/div&gt;&lt;div class='fancy_bg fancy_bg_ne'&gt;
&lt;/div&gt;&lt;div class='fancy_bg fancy_bg_e'&gt;&lt;/div&gt;
&lt;div class='fancy_bg fancy_bg_se'&gt;
&lt;/div&gt;&lt;div class='fancy_bg fancy_bg_s'&gt;
&lt;/div&gt;&lt;div class='fancy_bg fancy_bg_sw'&gt;&lt;/div&gt;&lt;div class='fancy_bg fancy_bg_w'&gt;&lt;/div&gt;
&lt;div class='fancy_bg fancy_bg_nw'&gt;&lt;/div&gt;&lt;/div&gt;").prependTo("#TB_window");</pre>
<p><a href="http://www.aimeelaplant.com/wp-content/uploads/2009/06/dropshadow_thickbox_02.jpg"><img class="alignright size-thumbnail wp-image-104" title="Dropshadow for WordPress Thickbox" src="http://www.aimeelaplant.com/wp-content/uploads/2009/06/dropshadow_thickbox_02-144x150.jpg" alt="Dropshadow for WordPress Thickbox" width="144" height="150" /></a>Last and final stop, you&#8217;ll need to upload the shadow images you downloaded from the jQuery with Thickbox for Shadows. If you haven&#8217;t already, make a directory in <strong>/wp-includes/js/thickbox/</strong> titled <strong>images</strong>, then upload the shadow images into there.</p>
<p>And there you have it, a very nice WordPress Thickbox with dropshadows for all browsers, except for Internet Explorer 6 (it won&#8217;t show the transparent .png&#8217;s). Quite frankly, I don&#8217;t care about IE6 compatibility anymore.</p>
<p>Special thanks to pradeepsathyan.com&#8217;s <a href="http://pradeepsathyan.com/uncategorized/jquery-thickbox-with-shodows.php">jQuery Thickbox with Shadows</a>.</p>
<p>Just remember to save your new Thickbox files before you upgrade WordPress anytime soon.</p>
<p>I don&#8217;t use Thickbox on this site, but to see a working demo of the WordPress Thickbox with Shadows, check out my other site: <a href="http://emmafrostfiles.com">EmmaFrostFiles.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aimeelaplant.com/2009/06/add-a-dropshadow-to-the-wordpress-thickbox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Meta-Morphosis WP Theme by Izuddin Helmi</title>
		<link>http://www.aimeelaplant.com/2009/05/meta-morphosis-wp-theme-by-izuddin-helmi/</link>
		<comments>http://www.aimeelaplant.com/2009/05/meta-morphosis-wp-theme-by-izuddin-helmi/#comments</comments>
		<pubDate>Sat, 23 May 2009 00:36:12 +0000</pubDate>
		<dc:creator>Aimee</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.aimeelaplant.com/?p=54</guid>
		<description><![CDATA[WooThemes released a free WordPress theme titled "Meta-Morphosis" by Izzudin Helmi, who uses the newly built theme on his own website.]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://www.woothemes.com/amember/go.php?r=10665&amp;i=b0">WooThemes</a> released a free WordPress theme titled &#8220;Meta-Morphosis&#8221; by<a href="http://izuddinhelmi.com/"> Izzudin Helmi</a>, who uses the newly built theme on his own website.</p>
<p>WooThemes description:</p>
<blockquote style="text-align: left;"><p>Meta-Morphosis is a visually-rich personal blog, with a magazine layout approach. Incorporating some nifty javascript font replacement and javascript widget slider in the footer, Meta-Morphosis should meet all of your personal blogging needs. Best of all its FREE!</p></blockquote>
<p style="text-align: left;">With 8 different colors to choose from, Meta-Morphosis is absolutely gorgeous, and I am surprised that it&#8217;s free. The typography is especially nice, and the jQuery slider is a nicely added function.</p>
<p style="text-align: left;"><a href="http://www.aimeelaplant.com/wp-content/uploads/2009/05/metamorphosis.jpg"><img class="size-medium wp-image-55 aligncenter" title="Meta-Morphosis by WooThemes" src="http://www.aimeelaplant.com/wp-content/uploads/2009/05/metamorphosis-300x226.jpg" alt="Meta-Morphosis by WooThemes" width="300" height="226" /></a></p>
<p style="text-align: center;"><a href="http://www.woothemes.com/2009/04/meta-morphosis/">Meta-Morphosis by WooThemes</a></p>
<p style="text-align: left;">And, yes, this is my first post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.aimeelaplant.com/2009/05/meta-morphosis-wp-theme-by-izuddin-helmi/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
