<?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>A&#38;M Studio</title>
	<atom:link href="http://anmstudio.com/feed" rel="self" type="application/rss+xml" />
	<link>http://anmstudio.com</link>
	<description>Web Design &#38; Development</description>
	<lastBuildDate>Sun, 22 Jan 2012 01:23:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Thesis Theme and jsScrolling</title>
		<link>http://anmstudio.com/blog/installing-jsscrolling-into-thesis</link>
		<comments>http://anmstudio.com/blog/installing-jsscrolling-into-thesis#comments</comments>
		<pubDate>Fri, 05 Mar 2010 07:04:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://aaronguldager.com/?p=7</guid>
		<description><![CDATA[So I decided that with my new layout that I wanted to make use of Nathan Faubion&#8217;s awesome jsScrolling script as opposed to doing &#8216;overflow: auto&#8217; with my main content window. Normally this is rather plug and play but it took me a few minutes to correctly implement it into the Thesis theme. Here&#8217;s what [...]]]></description>
			<content:encoded><![CDATA[So I decided that with my new layout that I wanted to make use of <a href="http://www.n-son.com/">Nathan Faubion&#8217;s</a> awesome <a href="http://n-son.com/scripts/jsScrolling/">jsScrolling script</a> as opposed to doing &#8216;overflow: auto&#8217; with my main content window.

Normally this is rather plug and play but it took me a few minutes to correctly implement it into the Thesis theme.

Here&#8217;s what I did:

First you need to download the files off his website. Next, add this to your header scripts under &#8216;Thesis Options&#8217;:
<div id="pre"><div id="code">&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://www.aaronguldager.com/js/Scrolling.Scroller.js&#8221;&gt;&lt;/script&gt;
&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://www.aaronguldager.com/js/Scrolling.Scrollbar.js&#8221;&gt;&lt;/script&gt;
&lt;script type=&#8221;text/javascript&#8221; src=&#8221;http://www.aaronguldager.com/js/Scrolling.ScrollTween.js&#8221;&gt;&lt;/script&gt;
&lt;script type=&#8221;text/javascript&#8221;&gt;
var scrollbar;

function scrollbarPressed (o, c, e) {
	o.className += &#8220;-Pressed&#8221;;
};

function scrollbarReleased (o, c, e) {
	o.className = o.className.replace(&#8220;-Pressed&#8221;, &#8220;&#8221;);
};

window.onload = function () {
	<span style="color: #ff0000; font-weight: bold;">var content = document.getElementById(&#8220;content-Content&#8221;);
	var scrollb = document.getElementById(&#8220;content-Scrollbar&#8221;);</span>

	scrollbar = new Scrolling.Scrollbar (
		scrollb,
		new Scrolling.Scroller <span style="color: #ff0000; font-weight: bold;">(content, 720, 635),</span>
		new Scrolling.ScrollTween()
	);
	
	scrollbar.onMouseDown = scrollbarPressed;
	scrollbar.onMouseUp   = scrollbarReleased;
};
&lt;/script&gt;</div></div>

Pay attention to the items in red. Those are items you will need to edit to fit your theme. Assuming it&#8217;s all default Thesis, you should be able to copy/paste the majority of that. You will need to set the proper width/height attributes to fit your layout. Note that you will need to change the path to the js files to wherever you upload them. I would recommend using absolute paths.

Add this to your custom_functions.php:

<div id="pre"><div id="code">
&lt;?php
function scrollbar2 () {
?&gt;
&lt;div id=&#8221;content-Content&#8221;&gt;
&lt;div class=&#8221;Scroller-Container&#8221;&gt;
&lt;?php
}
add_action(&#8216;thesis_hook_before_content&#8217;, &#8216;scrollbar2&#8242;);
?&gt;
&lt;?php
function scrollbar3 () {
?&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;?php
}
add_action(&#8216;thesis_hook_after_content&#8217;, &#8216;scrollbar3&#8242;);
?&gt;
&lt;?php 
function scrollbar () {
?&gt;
	&lt;div id=&#8221;content-Scrollbar&#8221;&gt;
		&lt;div class=&#8221;Scrollbar-Up&#8221;&gt;&lt;/div&gt;
		&lt;div class=&#8221;Scrollbar-Down&#8221;&gt;&lt;/div&gt;
		&lt;div class=&#8221;Scrollbar-Track&#8221;&gt;

			&lt;div class=&#8221;Scrollbar-Handle&#8221;&gt;&lt;/div&gt;
		&lt;/div&gt;
	&lt;/div&gt;
&lt;?php
}
add_action(&#8216;thesis_hook_after_content&#8217;, &#8216;scrollbar&#8217;);

</div></div>

Last but not least, add this to your custom.css file:

<div id="pre"><div id="code">#content {position: relative;width: 735px;height: 500px;}
#content-Content {position: absolute;top: 10px; width: 720px;height: 635px;overflow: hidden;}
#content .Scroller-Container {position: absolute;top: 0px; left: 0px;}
#content p {}
#content-Scrollbar {position: absolute;left: 725px; top: 18px;}
#content .Scrollbar-Up,.Scrollbar-Up-Pressed {position: absolute;width: 15px; height: 15px;background-color: #444;font-size: 0px;}
#content .Scrollbar-Down,.Scrollbar-Down-Pressed {position: absolute;top: 591px;width: 15px; height: 15px;background-color: #444;font-size: 0px;}
#content .Scrollbar-Track,.Scrollbar-Track-Pressed {width: 15px; height: 560px;position: absolute;top: 20px;background-color: #EEE;}
#content .Scrollbar-Track-Pressed {background-color: #DDD;}
#content .Scrollbar-Handle,.Scrollbar-Handle-Pressed {position: absolute;width: 15px; height: 45px;background-color: #444;}
#content .Scrollbar-Handle-Pressed,.Scrollbar-Down-Pressed, .Scrollbar-Up-Pressed {background-color: #AAA;}
#content .Scrollbar-Disabled {display: none;}</div></div>

Once again, you will need to edit some of the height/width/color properties to your liking to fit your page, and you may need to tweak the positioning of #content-Scrollbar so that it appears in the proper spot.

Enjoy!]]></content:encoded>
			<wfw:commentRss>http://anmstudio.com/blog/installing-jsscrolling-into-thesis/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>ANMSTUDIO4.0 / AARONGULDAGER.COM</title>
		<link>http://anmstudio.com/blog/website-facelift-rebrand</link>
		<comments>http://anmstudio.com/blog/website-facelift-rebrand#comments</comments>
		<pubDate>Thu, 04 Mar 2010 22:37:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://aaronguldager.com/?p=1</guid>
		<description><![CDATA[So this is the fourth (gulp) recreation of my own site. As I decided I wanted to move away from Joomla (haven&#8217;t designed in Joomla in 4+ months) and onto WordPress, I mulled over my design options. When it comes to design, I really have a sweet tooth for minimalistic, contemporary, clean layouts. I muddled [...]]]></description>
			<content:encoded><![CDATA[So this is the fourth (gulp) recreation of my own site. As I decided I wanted to move away from Joomla (haven&#8217;t designed in Joomla in 4+ months) and onto WordPress, I mulled over my design options. When it comes to design, I really have a sweet tooth for minimalistic, contemporary, clean layouts. I muddled around in Photoshop for a little bit tossing together various elements and had a lot of really clean, sleek designs that I liked but something just wasn&#8217;t sitting right..

I put everything on hold as I&#8217;ve been crazy busy as of late.. Once I got back to designing for myself, I decided to scrap everything I&#8217;d been thinking I had to do. I doodled for about 15 minutes and came up with this layout and then begin the process of turning it into a WP theme. At the last minute I decided it was time to re-create myself as AARONGULDAGER.COM and say goodbye to <span style="text-decoration: line-through;">ANMSTUDIO.COM</span>. When I first started my website 1 1/2 years ago, I felt that I needed to give off the professional impression of a design studio. After some real-world experience, I realize that my work and referrals are the biggest assets I could ask for. No &#8220;front&#8221; is needed. So, alas, here I am!]]></content:encoded>
			<wfw:commentRss>http://anmstudio.com/blog/website-facelift-rebrand/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

