<?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>Livepreview &#187; admin</title>
	<atom:link href="http://livepreview.net/blog/author/admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://livepreview.net</link>
	<description>Tonyc&#039;s WordPress themes</description>
	<lastBuildDate>Mon, 12 Sep 2011 20:58:18 +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>Help I accidentally disabled my theme options page</title>
		<link>http://livepreview.net/blog/help-i-accidentally-disabled-my-theme-options-page/</link>
		<comments>http://livepreview.net/blog/help-i-accidentally-disabled-my-theme-options-page/#comments</comments>
		<pubDate>Sat, 10 Sep 2011 06:55:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Feature List]]></category>
		<category><![CDATA[MultimediaWP]]></category>
		<category><![CDATA[Product Affiliator V2]]></category>
		<category><![CDATA[Pushed]]></category>
		<category><![CDATA[Slicer]]></category>

		<guid isPermaLink="false">http://livepreview.net/?p=103</guid>
		<description><![CDATA[Some of my themes have the so called super user function. Basically what it does is it disables the theme options panel for all the users except for one which is the<div class="read-more"><a href="http://livepreview.net/blog/help-i-accidentally-disabled-my-theme-options-page/">Read More &#8594;</a></div>]]></description>
			<content:encoded><![CDATA[<p>Some of my themes have the so called super user function. Basically what it does is it disables the theme options panel for all the users except for one which is the super user. This is useful for when you are customizing the theme for a client and you don&#8217;t want him to mess around the options page.</p>
<div class="tn-sc-box  note   full">The problem is you can accidentally block the theme options panel by entering an username and not an user ID. </div>
<p>Anyway here is how to get your theme options back: Go to <strong>http://www.yoursite.com/wp-admin/options.php</strong> page and find the field &#8220;tn_super_user&#8221; and reset it&#8217;s value to be blank. Remember to hit save and you are all set.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://livepreview.net/blog/help-i-accidentally-disabled-my-theme-options-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to switch from Cufon to Google fonts</title>
		<link>http://livepreview.net/blog/how-to-switch-from-cufon-to-google-fonts/</link>
		<comments>http://livepreview.net/blog/how-to-switch-from-cufon-to-google-fonts/#comments</comments>
		<pubDate>Sat, 10 Sep 2011 06:40:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MultimediaWP]]></category>
		<category><![CDATA[Nuvella]]></category>
		<category><![CDATA[Other themes]]></category>
		<category><![CDATA[Product Affiliator V2]]></category>
		<category><![CDATA[Pushed]]></category>
		<category><![CDATA[Slicer]]></category>
		<category><![CDATA[WordPress Tricks]]></category>

		<guid isPermaLink="false">http://livepreview.net/?p=97</guid>
		<description><![CDATA[I have a request for instructions on how to switch the font replacement from cufon to Google fonts on the slicer WordPress theme. And while these apply for that particular theme they<div class="read-more"><a href="http://livepreview.net/blog/how-to-switch-from-cufon-to-google-fonts/">Read More &#8594;</a></div>]]></description>
			<content:encoded><![CDATA[<p>I have a request for instructions on how to switch the font replacement from cufon to Google fonts on the slicer WordPress theme. And while these apply for that particular theme they are pretty genenric and should be working for the other themes as well. So here we go&#8230;</p>
<h3>1. Disable cufon</h3>
<p>In order to disable cufon you need to remove some code from the <strong>functions.php</strong> file. It is the part where the cufon and the font file are loaded into the theme. It looks like this:</p>
<p><code><br />
wp_enqueue_script( 'cufon-yui', get_template_directory_uri().'/js/cufon-yui.js', array( 'jquery' ) );<br />
wp_enqueue_script( 'vegur', get_template_directory_uri().'/js/Vegur_300-Vegur_700.font.js', array( 'jquery' ));</code></p>
<p>&nbsp;</p>
<p>Next you need to remove the replacement calls from <strong>js/custom.js</strong>. They are at the bottom of the file and look like this:</p>
<p><code><br />
// Cufon font replacement rules<br />
Cufon.replace("h1,h2,h3,h4,h5,#slogan,#navigation li a,.cta2 em,.cta1 em,.delimiter, .forms label, .read-more em");<br />
Cufon('#navigation li a',{textShadow: '0px -1px 2px #000'});<br />
Cufon('#footer h3',{textShadow: '0 -1px 1px rgba(0,0,0, 0.3)'});<br />
Cufon('.slice h1, .slice h2, .dark-post h2, .cta1 em, .cta2 em, #footer h2',{ textShadow: '1px 1px 1px rgba(0,0,0, 0.6)'});<br />
Cufon('.slice-light h1, .slice-light h2',{ textShadow: '1px 1px 1px rgba(256,256,256, 0.6)'});<br />
});<br />
</code></p>
<div class="tn-sc-box  normal   "><strong>note:</strong> The cufon replacement rules may vary from theme to theme so look for anything that starts with &#8220;Cufon&#8221;</div>
<h3>2. Implement Google Webfots</h3>
<p>After choosing your font(s) google will provide you with a code you need to insert in your website. It will look something like this:<br />
<code></code></p>
<div>
<pre>&lt;link href='http://fonts.googleapis.com/css?family=Changa+One' rel='stylesheet' type='text/css'&gt;</pre>
</div>
<p>You need to place this in <strong>header.php</strong> right under this part:</p>
<p><code> &lt;link rel="stylesheet" href="&lt;?php bloginfo('template_directory'); ?&gt;/custom.css" type="text/css" media="screen" /&gt;&lt;!-- custom stylesheet --&gt;<br />
</code></p>
<p>Then apply this css rule to all the selectors you like in your custom.css file. For example:</p>
<p><code><br />
h1, h2, h3, h4{<br />
font-family: 'Changa One', sans-serif;<br />
}<br />
#slogan,#navigation li a,.cta2 em,.cta1 em,.delimiter{<br />
font-family: 'Changa One', sans-serif;<br />
}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://livepreview.net/blog/how-to-switch-from-cufon-to-google-fonts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Try before you buy my themes</title>
		<link>http://livepreview.net/blog/try-before-you-buy-my-themes/</link>
		<comments>http://livepreview.net/blog/try-before-you-buy-my-themes/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 16:16:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MultimediaWP]]></category>
		<category><![CDATA[Nuvella]]></category>
		<category><![CDATA[Other themes]]></category>
		<category><![CDATA[Product Affiliator V2]]></category>
		<category><![CDATA[Slicer]]></category>
		<category><![CDATA[WordPress Tricks]]></category>

		<guid isPermaLink="false">http://livepreview.net/?p=91</guid>
		<description><![CDATA[I introduce you &#8211; WPlayground. It is a place where you can quickly create a new wordpress setup using one of my themes so you can experience them first hand. No more<div class="read-more"><a href="http://livepreview.net/blog/try-before-you-buy-my-themes/">Read More &#8594;</a></div>]]></description>
			<content:encoded><![CDATA[<p>I introduce you &#8211; <a href="http://playground.livepreview.net">WPlayground</a>. It is a place where you can quickly create a new wordpress setup using one of my themes so you can experience them first hand. No more lame pimped out demos that throw dust in your face <img src='http://livepreview.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  This is the real thing. A real world example of what it is to run some of my themes.</p>
<h3>How it works</h3>
<p>You pick an username (eg. &#8220;<strong>exclusive</strong>&#8220;), password, site title etc. during the registration process ( takes about 30 seconds ) and hit &#8220;Create a site&#8221;. A custom WordPress Installation is created for you with the following url:</p>
<div class="tn-sc-box  normal   ">http://playground.livepreview.net/<strong>exclusive </strong></div>
<p>Now you can go to</p>
<div class="tn-sc-box  normal   ">http://playground.livepreview.net/exclusive/<strong>wp-admin</strong></div>
<p>and experience for yourself how the the theme operates on the backend.</p>
<p>At the time of this writing not all themes are available and the whole system is a bit unstable but feel free to try it out and drop a comment with your feedback.</p>
<p>P.S: I&#8217;m using a WordPress network install for this. If any of the other authors is curious how to do something like this I may post a follow up with some guidelines.</p>
<p>Tony</p>
]]></content:encoded>
			<wfw:commentRss>http://livepreview.net/blog/try-before-you-buy-my-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slicer Installation and demo video</title>
		<link>http://livepreview.net/blog/slicer-installation-and-demo-video/</link>
		<comments>http://livepreview.net/blog/slicer-installation-and-demo-video/#comments</comments>
		<pubDate>Sat, 27 Aug 2011 09:33:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Slicer]]></category>

		<guid isPermaLink="false">http://livepreview.net/?p=55</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="588" height="356"><param name="movie" value="http://www.youtube.com/v/mRyxix_pR8A?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/mRyxix_pR8A?version=3" type="application/x-shockwave-flash" width="588" height="356" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://livepreview.net/blog/slicer-installation-and-demo-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change the frontpage slider height in the Nuvella theme</title>
		<link>http://livepreview.net/blog/how-to-change-the-frontpage-slider-height-in-the-nuvella-theme/</link>
		<comments>http://livepreview.net/blog/how-to-change-the-frontpage-slider-height-in-the-nuvella-theme/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 16:14:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Nuvella]]></category>

		<guid isPermaLink="false">http://livepreview.net/?p=52</guid>
		<description><![CDATA[I just had a request by email for instructions on how to adjust the height of the featured slider on the homepage of the Nuvella theme. By default all your images will<div class="read-more"><a href="http://livepreview.net/blog/how-to-change-the-frontpage-slider-height-in-the-nuvella-theme/">Read More &#8594;</a></div>]]></description>
			<content:encoded><![CDATA[<p>I just had a request by email for instructions on how to adjust the height of the featured slider on the homepage of the Nuvella theme. By default all your images will be resized by the theme to 960px x 466px. And although you can&#8217;t change the width of the whole thing you can easily adjust the height. So here are the steps you need to complete:</p>
<p><span id="more-52"></span></p>
<p>1. You need to edit the <strong>template-home.php</strong> file and change that line of code adjusting the 466 part ofcourse:</p>
<p><code>$url .= "&amp;h=466";</code></p>
<p>2. You need to go and edit the <strong>js/custom.js</strong> file and change this line:</p>
<p><code>height: 466,</code></p>
<p>3. Finally you need to adjust the position of the slides titles and the arrows. You won&#8217;t need to do this if your new height is more than 275px. But if you go bellow that the slide&#8217;s titles are going to overlap with the content and it will be a total mess. You can fix that by editing your custom.css file:</p>
<p>Insert this code at the end of the file:<br />
<code><br />
#slideshow h1{<br />
top: 100px;<br />
}<br />
#slider_controls{<br />
top: 80px;<br />
}</code></p>
<p>and adjust the values until you are happy with the result.</p>
]]></content:encoded>
			<wfw:commentRss>http://livepreview.net/blog/how-to-change-the-frontpage-slider-height-in-the-nuvella-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://livepreview.net/blog/hello-world/</link>
		<comments>http://livepreview.net/blog/hello-world/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 15:51:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Other themes]]></category>

		<guid isPermaLink="false">http://livepreview.net/?p=1</guid>
		<description><![CDATA[Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!]]></description>
			<content:encoded><![CDATA[<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://livepreview.net/blog/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

