<?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>Thesis Hacker &#187; custom.css file</title>
	<atom:link href="http://www.thesishacker.com/category/customcss-file/feed" rel="self" type="application/rss+xml" />
	<link>http://www.thesishacker.com</link>
	<description>Customize Thesis</description>
	<lastBuildDate>Thu, 21 May 2009 16:22:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to find your page or post id #</title>
		<link>http://www.thesishacker.com/how-to-find-your-page-or-post-id</link>
		<comments>http://www.thesishacker.com/how-to-find-your-page-or-post-id#comments</comments>
		<pubDate>Sat, 17 Jan 2009 21:26:56 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[custom.css file]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[your blog's URL]]></category>
		<category><![CDATA[find your page id #]]></category>
		<category><![CDATA[find your post id #]]></category>
		<category><![CDATA[page id]]></category>
		<category><![CDATA[post id]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=390</guid>
		<description><![CDATA[How to find your page or post id #]]></description>
			<content:encoded><![CDATA[<p>Say you&#8217;re writing some code and you need to declare the page id #</p>
<p>is_page()</p>
<p>or you need to declare the post id #</p>
<p>is_single()</p>
<p>so you can put it in the brackets, you can find the id pretty easily.  Simply go to the page or post that you want to use and look in the address bar of your browser. At the end of the URL you&#8217;ll find something like this&#8230;</p>
<p>?p=100<br />
?c=100</p>
<p>The number is the id #. Whatever number it is will be the number you use to write your code.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/how-to-find-your-page-or-post-id/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make changes to your custom.css file</title>
		<link>http://www.thesishacker.com/how-to-edit-your-customcss-file</link>
		<comments>http://www.thesishacker.com/how-to-edit-your-customcss-file#comments</comments>
		<pubDate>Fri, 16 Jan 2009 21:26:30 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[custom.css file]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=352</guid>
		<description><![CDATA[Once you have your custom.css file open in your favorite text editor you can start customizing it to your liking.]]></description>
			<content:encoded><![CDATA[<p>Once you have your custom.css file open in your favorite text editor you can start customizing it to your liking. If you&#8217;re having problems finding your custom.css file <a href="http://www.thesishacker.com/?p=350">read this tutorial.</a> If you&#8217;re having problems extracting your custom.css file so you can edit it, <a href="http://www.thesishacker.com/?p=187">check out this tutorial.</a></p>
<p>The very first time you open your custom.css file it should look like this&#8230;</p>
<p><a rel="attachment wp-att-1219" href="http://www.thesishacker.com/how-to-edit-your-customcss-file/attachment/120"></a><a rel="attachment wp-att-1224" href="http://www.thesishacker.com/how-to-edit-your-customcss-file/1201-2"><img class="alignnone size-full wp-image-1224" title="1201" src="http://www.thesishacker.com/wp-content/uploads/2009/01/1201.png" alt="1201" width="564" height="408" /></a></p>
<p>You can do one of two things. Read this and delete it or read it and keep it there. Deleting it isn&#8217;t going to effect the file at all. They&#8217;re just simply comments. If you want to leave it there just type all your new code before the opening comment bracket <span style="color: #339966;">/*</span> or after the closing bracket <span style="color: #339966;">*/</span></p>
<p>Once you get your file open in your text editor, the process of making changes is quite simple.  Any change you&#8217;re going to make you are going to type in the word &#8220;<strong><span style="color: #0000ff;"><em>.custom</em></span></strong>&#8221; (dot custom) before any selector you want to make changes to.</p>
<p>For example, say in your custom.css file you want to change the H1 to whatever styling you like. You don&#8217;t necessarily have to find the H1 in the file. Instead, type this&#8230;.</p>
<p class="alert"><span style="color: #0000ff;">.custom</span> H1 {whatever style you want here}</p>
<p>I prefer to always type in the new code instead of finding the existing code and adding <em>.custom</em> to it. This way you can preserve the original code itself.</p>
<p>You can do the same with classes and ID&#8217;s</p>
<p>If you have a class selector you want to change like this&#8230;</p>
<p>.sidebar a {  }</p>
<p>You can customize it like this&#8230;</p>
<p class="alert"><span style="color: #0000ff;">.custom</span> .sidebar a {  }</p>
<p>If you have an ID you want to change like this&#8230;</p>
<p>#custom_box {  }</p>
<p>You can customize it like this&#8230;</p>
<p class="alert"><span style="color: #0000ff;">.custom</span> #custom_box {  }</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/how-to-edit-your-customcss-file/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where to find your custom.css file</title>
		<link>http://www.thesishacker.com/where-to-locate-your-customcss-file</link>
		<comments>http://www.thesishacker.com/where-to-locate-your-customcss-file#comments</comments>
		<pubDate>Fri, 16 Jan 2009 21:01:50 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[custom.css file]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[dashboard]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=350</guid>
		<description><![CDATA[Unlike wordpress where you can make changes within the dashboard, Thesis poses a little bit of a different scenario to customize your theme.  All styling changes are going to be made in your custom.css file. This file is located in your Thesis folder that you originally downloaded.]]></description>
			<content:encoded><![CDATA[<p>Unlike wordpress where you can make changes within the dashboard, Thesis poses a little bit of a different scenario to customize your theme.  All styling changes are going to be made in your custom.css file. This file is located in your Thesis folder that you originally downloaded.</p>
<p>When you download Thesis for the first time I recommend you download it right to your desktop. Doing this makes it real easy to find. Once you have it on your desktop, open the Thesis folder and you&#8217;ll see a list of all files&#8230;</p>
<p><a rel="attachment wp-att-1308" href="http://www.thesishacker.com/where-to-locate-your-customcss-file/attachment/128"><img class="aligncenter size-full wp-image-1308" title="128" src="http://www.thesishacker.com/wp-content/uploads/2009/01/128.png" alt="128" width="191" height="346" /></a>Next, open up your custom file&#8230;</p>
<p><a rel="attachment wp-att-1309" href="http://www.thesishacker.com/where-to-locate-your-customcss-file/attachment/129"><img class="aligncenter size-full wp-image-1309" title="129" src="http://www.thesishacker.com/wp-content/uploads/2009/01/129.png" alt="129" width="192" height="123" /></a></p>
<p>Once you find your custom.css file <a href="http://www.thesishacker.com/?p=187">go here</a> to see how to edit it and upload the file to make the changes appear on your site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/where-to-locate-your-customcss-file/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to edit your custom.css, custom_functions.php file and upload it to your server</title>
		<link>http://www.thesishacker.com/how-to-edit-your-customcss-file-and-upload-it-to-your-server</link>
		<comments>http://www.thesishacker.com/how-to-edit-your-customcss-file-and-upload-it-to-your-server#comments</comments>
		<pubDate>Thu, 08 Jan 2009 03:40:52 +0000</pubDate>
		<dc:creator>Nasty</dc:creator>
				<category><![CDATA[custom.css file]]></category>
		<category><![CDATA[custom_functions.php file]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[custom.css]]></category>
		<category><![CDATA[custom_function.php file]]></category>
		<category><![CDATA[edit]]></category>
		<category><![CDATA[how to edit custom.css]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[thesis]]></category>
		<category><![CDATA[upload]]></category>

		<guid isPermaLink="false">http://www.thesishacker.com/?p=187</guid>
		<description><![CDATA[From what I've seen as I work my way through the thesis forums it appears a  lot of people have trouble finding their custom.css or custom_functions.php file to make changes.  This is a simple matter to resolve if you follow these simple steps.  This is the the routine I practice and it works great...]]></description>
			<content:encoded><![CDATA[<p>From what I&#8217;ve seen as I work my way through the thesis forums it appears a  lot of people have trouble finding their custom.css and custom_function.php files to make changes.  This is a simple matter to resolve if you follow these simple steps.  This is the the routine I practice and it works great&#8230;</p>
<p>First things you&#8217;re going to need are the proper tools. Most computers have a basic text editor on their computer.  This will work fine but I highly recommend downloading the free web developer program <span style="color: #ff0000;"><a href="http://www.aptana.com">Aptana Studio </a></span>.  It&#8217;s by far the best text editor in the biz.  It&#8217;s free, it&#8217;s easy to use, it has great customer support, it finds mistakes as you write your code, multi-colored code, too much more to list.  Click on the link and check it out yourself.</p>
<p>Next you&#8217;re going to need an ftp program to upload your edited custom files to your server. Most hosting companies have this at your disposal.</p>
<p>When I first downloaded thesis to my computer I downloaded it to my desktop just to make it easy to find.  Once I opened up the folder I found my custom.css and custom_fucntion.php files here in the custom file:</p>
<p><em></em><span style="color: #ff0000;"><a rel="attachment wp-att-1312" href="http://www.thesishacker.com/how-to-edit-your-customcss-file-and-upload-it-to-your-server/attachment/1281"><img class="aligncenter size-full wp-image-1312" title="1281" src="http://www.thesishacker.com/wp-content/uploads/2009/01/1281.png" alt="1281" width="191" height="346" /></a><br />
</span><br />
I simply copied the custom files right to my desktop so it&#8217;s easy to find.</p>
<p>Next I open my text editor, in this case, <a href="http://www.aptana.com">Aptana Studio</a>, and I open the custom.css file.</p>
<p>I make my changes and save the file as custom.css or custom_function.php. (Don&#8217;t change the name)</p>
<p>Once you installed Thesis on your server you go to your ftp program of choice and depending on what directory you installed Thesis to you&#8217;re going to eventually find the path that looks like this:</p>
<p><em></em><em><em><span style="color: #ff0000;"><a rel="attachment wp-att-1313" href="http://www.thesishacker.com/how-to-edit-your-customcss-file-and-upload-it-to-your-server/attachment/130"><img class="aligncenter size-full wp-image-1313" title="130" src="http://www.thesishacker.com/wp-content/uploads/2009/01/130.png" alt="130" width="214" height="190" /></a></span></em></em><span style="color: #ff0000;"><br />
</span><br />
When you upload your edited version of the file the ftp program will probably ask you something along the line of &#8220;custom.css (or custom_functions.php) already exists. Would you like to overwrite the file?&#8221; Click &#8220;yes&#8221; and it will upload it. You now have your newly edited custom file on your server.</p>
<p>Check out your site, hit the refresh button, and you should now see your changes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thesishacker.com/how-to-edit-your-customcss-file-and-upload-it-to-your-server/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

