<?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"
	>

<channel>
	<title>Codes &#38; Tweaks!</title>
	<atom:link href="http://codes.rendz.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://codes.rendz.com</link>
	<description>Get tutorials, code snippets, and the how-to's for myspace tweaking.</description>
	<pubDate>Wed, 30 Apr 2008 18:52:56 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>Flip Your Myspace Tables Around!</title>
		<link>http://codes.rendz.com/2008/04/flip-your-myspace-tables-around/</link>
		<comments>http://codes.rendz.com/2008/04/flip-your-myspace-tables-around/#comments</comments>
		<pubDate>Wed, 30 Apr 2008 18:52:30 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Code Snippets]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[around]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[flip]]></category>

		<category><![CDATA[html]]></category>

		<category><![CDATA[myspace]]></category>

		<category><![CDATA[switch]]></category>

		<category><![CDATA[tables]]></category>

		<guid isPermaLink="false">http://codes.rendz.com/?p=21</guid>
		<description><![CDATA[Tired of the same old Myspace layout try something new by flipping your Myspace tables around!]]></description>
			<content:encoded><![CDATA[<p>Tired of the same old Myspace layout try something new by flipping your Myspace tables around! Copy and paste the following code in the &#8220;About Me&#8221; section of editing your profile.</p>
<p><center><img src="http://codes.rendz.com/wp-content/uploads/2008/04/tableflip.gif" alt="" /></center></p>
<pre lang="css">
<style type="text/css">
table {
	direction: rtl;
}
table table table {
	direction: ltr;
}
</style>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://codes.rendz.com/2008/04/flip-your-myspace-tables-around/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hide Your Myspace Top Friends</title>
		<link>http://codes.rendz.com/2008/04/hide-your-myspace-top-friends/</link>
		<comments>http://codes.rendz.com/2008/04/hide-your-myspace-top-friends/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 15:30:56 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Code Snippets]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[friends]]></category>

		<category><![CDATA[hide]]></category>

		<category><![CDATA[myspace]]></category>

		<category><![CDATA[top]]></category>

		<category><![CDATA[tweak]]></category>

		<guid isPermaLink="false">http://codes.rendz.com/?p=20</guid>
		<description><![CDATA[Looking for the code to hide your Myspace top friends or friend list! Get it here!]]></description>
			<content:encoded><![CDATA[<p>Looking to hide your friend space or top friends. Here&#8217;s the code! Copy and paste the code into the &#8220;About Me&#8221; section of editing your profile.</p>
<pre lang="css">
<style type="text/css">
.friendSpace {
	display: none;
	visibility: hidden;
}
</style>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://codes.rendz.com/2008/04/hide-your-myspace-top-friends/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Myspace Artist Music Player Code For Bulletins &#038; Comments</title>
		<link>http://codes.rendz.com/2008/04/myspace-artist-music-player-code-for-bulletins-comments/</link>
		<comments>http://codes.rendz.com/2008/04/myspace-artist-music-player-code-for-bulletins-comments/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 09:06:25 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Code Snippets]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[artist]]></category>

		<category><![CDATA[bulletins]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[comments]]></category>

		<category><![CDATA[music]]></category>

		<category><![CDATA[myspace]]></category>

		<category><![CDATA[player]]></category>

		<category><![CDATA[profile]]></category>

		<guid isPermaLink="false">http://codes.rendz.com/?p=15</guid>
		<description><![CDATA[Post your music player on Myspace bulletins, comments, or on your profile!]]></description>
			<content:encoded><![CDATA[<p><img src="http://codes.rendz.com/wp-content/uploads/2008/04/musicplayer1.jpg" alt="" align="center" /></p>
<p>Step 1: Go to the artist&#8217;s music profile.</p>
<p>Step 2: Right click anywhere on the profile (don&#8217;t right click on the music player) and click &#8220;View Source&#8221;. <a href="http://codes.rendz.com/?attachment_id=17" target="_blank">(visual)</a></p>
<p>Step 3: Once Windows Notepad has popped up, go to &#8220;Edit » Find&#8221; in the menu bar (or press CTRL + F).</p>
<p>Step 4: Type in the following code in the box and click the &#8220;Find Next&#8221; button. <a href="http://codes.rendz.com/?attachment_id=18" target="_blank">(visual)</a></p>
<pre lang="html4strict">
<OBJECT id="mp3player"
</pre>
<p>Step 5: Once you have found it in Windows Notepad, your music player code should start from</p>
<pre lang="html4strict">
<OBJECT id="mp3player"
</pre>
<p>all the way to</p>
<pre lang="html4strict">
	</OBJECT>
</pre>
<p><a href="http://codes.rendz.com/?attachment_id=19" target="_blank">HERE IS A VISUAL OF THE MUSIC PLAYER CODE IN NOTEPAD</a></p>
]]></content:encoded>
			<wfw:commentRss>http://codes.rendz.com/2008/04/myspace-artist-music-player-code-for-bulletins-comments/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Block Non-Friends From Sending You Messages</title>
		<link>http://codes.rendz.com/2008/04/block-non-friends-from-sending-you-messages/</link>
		<comments>http://codes.rendz.com/2008/04/block-non-friends-from-sending-you-messages/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 08:26:19 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Myspace FAQ]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[block]]></category>

		<category><![CDATA[faq]]></category>

		<category><![CDATA[friends]]></category>

		<category><![CDATA[help]]></category>

		<category><![CDATA[message]]></category>

		<category><![CDATA[myspace]]></category>

		<category><![CDATA[no]]></category>

		<category><![CDATA[non]]></category>

		<category><![CDATA[send]]></category>

		<category><![CDATA[sending]]></category>

		<guid isPermaLink="false">http://codes.rendz.com/?p=11</guid>
		<description><![CDATA[Block those people from sending messages to you who are not in your friend list.]]></description>
			<content:encoded><![CDATA[<p><a href="http://codes.rendz.com/?attachment_id=12" target="_blank">Step 1</a>: Click &#8220;Settings&#8221; in your Control Panel. <a href="http://codes.rendz.com/?attachment_id=12" target="_blank">(visual)</a></p>
<p><a href="http://codes.rendz.com/?attachment_id=13" target="_blank">Step 2</a>: Click the &#8220;Spam&#8221; link. <a href="http://codes.rendz.com/?attachment_id=13" target="_blank">(visual)</a></p>
<p><a href="http://codes.rendz.com/?attachment_id=14" target="_blank">Step 3</a>: Make sure that the &#8220;Allow non-friends to send me messages&#8221; box is <strong><span style="text-decoration: underline;">NOT CHECKED</span></strong>. <a href="http://codes.rendz.com/?attachment_id=14" target="_blank">(visual)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://codes.rendz.com/2008/04/block-non-friends-from-sending-you-messages/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hide Your Myspace Friend Comments</title>
		<link>http://codes.rendz.com/2008/04/hide-your-myspace-friend-comments/</link>
		<comments>http://codes.rendz.com/2008/04/hide-your-myspace-friend-comments/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 07:55:48 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Code Snippets]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[comments]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[display]]></category>

		<category><![CDATA[friend]]></category>

		<category><![CDATA[hide]]></category>

		<category><![CDATA[myspace]]></category>

		<guid isPermaLink="false">http://codes.rendz.com/?p=10</guid>
		<description><![CDATA[Hide you Myspace friend comments from your Myspace Profile!]]></description>
			<content:encoded><![CDATA[<p>Use the following code to hide your Myspace friend comments from your profile. Copy and paste the code in your &#8220;About Me&#8221; section of editing your profile.</p>
<pre lang="css">
<style type="text/css">
.friendsComments {
	display: none;
	visibility: hidden;
}
</style>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://codes.rendz.com/2008/04/hide-your-myspace-friend-comments/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Code For Adding Photos Or Pictures</title>
		<link>http://codes.rendz.com/2008/04/code-for-adding-photos-or-pictures/</link>
		<comments>http://codes.rendz.com/2008/04/code-for-adding-photos-or-pictures/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 07:35:33 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Code Snippets]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[css]]></category>

		<category><![CDATA[html]]></category>

		<category><![CDATA[myspace]]></category>

		<category><![CDATA[photo]]></category>

		<category><![CDATA[pic]]></category>

		<category><![CDATA[pictures]]></category>

		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://codes.rendz.com/?p=9</guid>
		<description><![CDATA[Add a graphic, picture, or personal photo to your Myspace profile!]]></description>
			<content:encoded><![CDATA[<p>Many people have asked what is the code for adding a picture or photo to your Myspace profile. Here is the solution!</p>
<p>1. Host (or upload, for the noobs) in a picture hosting site like Photobucket, Imageshack, or TinyPic.<br />
2. Copy the direct url. It should look something like http://somesite.com/somepicture.jpg<br />
3. Paste the direct url where it says &#8220;PASTE HERE&#8221;.</p>
<p>THE CODE:</p>
<pre lang="html4strict"><img src="PASTE HERE" alt="" /></pre>
<p>THE EXAMPLE CODE:</p>
<pre lang="html4strict"><img src="http://somesite.com/somepicture.jpg" alt="" /></pre>
]]></content:encoded>
			<wfw:commentRss>http://codes.rendz.com/2008/04/code-for-adding-photos-or-pictures/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Center Your Text!</title>
		<link>http://codes.rendz.com/2008/04/how-to-center-your-text/</link>
		<comments>http://codes.rendz.com/2008/04/how-to-center-your-text/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 19:17:46 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Code Snippets]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[align]]></category>

		<category><![CDATA[center]]></category>

		<category><![CDATA[codes]]></category>

		<category><![CDATA[font]]></category>

		<category><![CDATA[myspace]]></category>

		<category><![CDATA[text]]></category>

		<category><![CDATA[tweak]]></category>

		<guid isPermaLink="false">http://codes.rendz.com/?p=8</guid>
		<description><![CDATA[Learn how to center your text or images!]]></description>
			<content:encoded><![CDATA[<p>Learn how to center your text!<br />
<center>This is a centered text!</center></p>
<pre lang="html4sctrict">
<center>REPLACE WITH WHATEVER YOU WANT TO CENTER</center>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://codes.rendz.com/2008/04/how-to-center-your-text/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Switch Back to &#8220;Classic View&#8221;</title>
		<link>http://codes.rendz.com/2008/04/switch-back-to-classic-view/</link>
		<comments>http://codes.rendz.com/2008/04/switch-back-to-classic-view/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 17:38:54 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Myspace FAQ]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[back]]></category>

		<category><![CDATA[classic]]></category>

		<category><![CDATA[control]]></category>

		<category><![CDATA[help]]></category>

		<category><![CDATA[how]]></category>

		<category><![CDATA[myspace]]></category>

		<category><![CDATA[panel]]></category>

		<category><![CDATA[switch]]></category>

		<category><![CDATA[view]]></category>

		<guid isPermaLink="false">http://codes.rendz.com/?p=6</guid>
		<description><![CDATA[Don't like the new Myspace control panel look? Having trouble on how to switch back to Myspace's control panel "classic view". Here is a quick and short tutorial on how to switch back.]]></description>
			<content:encoded><![CDATA[<p><center><object width="425" height="373"><param name="movie" value="http://www.youtube.com/v/pQoClFs5teY&#038;hl=en&#038;border=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/pQoClFs5teY&#038;hl=en&#038;border=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="373"></embed></object></center></p>
<p>Once you login to Myspace you should automatically be redirected to your control panel. Your control panel is where you see your new updates, friend updates, and friend statuses.</p>
<p>There should be a &#8220;Page Themes&#8221; link on the upper right hand side, right below the Myspace links. It has an image of a round color chart next to it. Click that, then choose &#8220;back to classic view&#8221;. <a href="http://codes.rendz.com/wp-content/uploads/2008/04/b6bl7m.jpg" target="_blank">Click here to get a visual on what you need to look for and where to look for to get back into Myspace&#8217;s classic view.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://codes.rendz.com/2008/04/switch-back-to-classic-view/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Scrolling Box With Title</title>
		<link>http://codes.rendz.com/2008/04/scrolling-box-with-title/</link>
		<comments>http://codes.rendz.com/2008/04/scrolling-box-with-title/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 03:25:54 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Code Snippets]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[box]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[create]]></category>

		<category><![CDATA[fieldset]]></category>

		<category><![CDATA[how]]></category>

		<category><![CDATA[marquee]]></category>

		<category><![CDATA[myspace]]></category>

		<category><![CDATA[scrolling]]></category>

		<category><![CDATA[title]]></category>

		<category><![CDATA[tutorial]]></category>

		<category><![CDATA[tweak]]></category>

		<guid isPermaLink="false">http://codes.rendz.com/?p=3</guid>
		<description><![CDATA[Create scrolling boxes with titles! Read this tutorial on how to create one, two, or even three!]]></description>
			<content:encoded><![CDATA[<p><strong>Change the direction of the scroll:</strong><br />
Line 3. Change &#8220;left&#8221; to right, up, or down.</p>
<p><strong>Change the speed of the scroll:</strong><br />
Line 3. Change the number &#8220;4&#8243; to your liking. The lower the number the slower. The higher the number the faster.</p>
<p><strong>Change the size of the box:</strong><br />
Line 1. Change the &#8220;width: 100px; height: 100px;&#8221; numbers to whatever size you want.</p>
<pre lang="html4strict">
<fieldset style="width: 100px; height: 100px;">
	<legend>TITLE</legend>
	<marquee direction="left" loop="true" scrollamount="4">
		<center>
			CONTENTS CONTENTS CONTENTS CONTENTS CONTENTS CONTENTS
		</center>
	</marquee>
</fieldset>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://codes.rendz.com/2008/04/scrolling-box-with-title/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The &#8220;script&#8221; Font</title>
		<link>http://codes.rendz.com/2008/04/hello-world/</link>
		<comments>http://codes.rendz.com/2008/04/hello-world/#comments</comments>
		<pubDate>Thu, 17 Apr 2008 09:00:10 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
		
		<category><![CDATA[Code Snippets]]></category>

		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[change]]></category>

		<category><![CDATA[curly]]></category>

		<category><![CDATA[font]]></category>

		<category><![CDATA[myspace]]></category>

		<category><![CDATA[pretty]]></category>

		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://codes.rendz.com/?p=1</guid>
		<description><![CDATA[Get that curly script font and use it on your Myspace!]]></description>
			<content:encoded><![CDATA[<p>Many people are asking how to get your font to <font face="script" size="10">look like this!</font> Use the code below.</p>
<p><strong>To change the size of the font:</strong><br />
Change &#8220;10&#8243; to whatever size you want. The lower the number the smaller the font. The higher the number the bigger the font.</p>
<pre lang="html4strict">
<font face="script" size="10">REPLACE WITH YOUR TEXT</font>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://codes.rendz.com/2008/04/hello-world/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
