<?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>DER PRiNZ &#187; Tutorials</title> <atom:link href="http://www.der-prinz.com/tag/tutorials/feed/" rel="self" type="application/rss+xml" /><link>http://www.der-prinz.com</link> <description>PREMIUM WORDPRESS THEMES</description> <lastBuildDate>Mon, 14 May 2012 09:06:33 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>Adding a custom Header to PRiNZ Themes</title><link>http://www.der-prinz.com/adding-custom-header-prinz-themes/</link> <comments>http://www.der-prinz.com/adding-custom-header-prinz-themes/#comments</comments> <pubDate>Sat, 27 Nov 2010 08:56:51 +0000</pubDate> <dc:creator>Michael Oeser</dc:creator> <category><![CDATA[Tutorials]]></category> <category><![CDATA[header]]></category> <category><![CDATA[Image]]></category> <category><![CDATA[Logo]]></category><guid
isPermaLink="false">http://www.der-prinz.com/?p=1116</guid> <description><![CDATA[<div><img
width="600" height="250" src="http://www.der-prinz.com/wp-content/uploads/2010/08/custom-header-title-600x250.jpg" class="attachment-rss-thumb wp-post-image" alt="custom-header-title" title="custom-header-title" style="margin-bottom:15px;" /></div>Thanks to WordPress 3.0 changing the default header or logo of PRiNZ Pro themes is easy as 1, 2, 3. On the themes options page you can decide if you want to use the sitename (blogname) and description or a logo in the header of your WordPress site. By default a logo is used. If you go for a logo you surely want to use your own custom logo in the header. This tutorial shows you how to do that. Go to Appearance &#62; Header in your WordPress admin interface. You will ses a page that shows the current [...]]]></description> <content:encoded><![CDATA[<div><img
width="600" height="250" src="http://www.der-prinz.com/wp-content/uploads/2010/08/custom-header-title-600x250.jpg" class="attachment-rss-thumb wp-post-image" alt="custom-header-title" title="custom-header-title" style="margin-bottom:15px;" /></div><p><strong>Thanks to WordPress 3.0 changing the default header or logo of PRiNZ Pro themes is easy as 1, 2, 3. On the themes options page you can decide if you want to use the sitename (blogname) and description or a logo in the header of your WordPress site. By default a logo is used. If you go for a logo you surely want to use your own custom logo in the header. This tutorial shows you how to do that.</strong><br
/> <span
id="more-1116"></span></p><p>Go to <code>Appearance &gt; Header</code> in your WordPress admin interface. You will ses a page that shows the current (default) header image, some information about that image (width, height), an upload box for a custom header image, a remove button to remove an image that was uploaded and a button to restore the original header image.</p><div
class="img"><img
class="alignnone size-full wp-image-1119" title="custom-header-upload" src="http://www.der-prinz.com/wp-content/uploads/2010/08/custom-header-upload.jpg" alt="" width="620" height="290" /></div><p>Now move to the upload field an click &#8220;browse&#8221; to browse your harddrive for an image that you like to use. Make sure it has the right dimensions (625&#215;100 or 940&#215;120 depending on the version). If it doesn´t have the right dimensions WordPress gives you the chance to crop it before uploading it.</p><div
class="img"><img
class="alignnone size-full wp-image-1120" title="custom-header-uploaded-imag" src="http://www.der-prinz.com/wp-content/uploads/2010/08/custom-header-uploaded-imag.jpg" alt="" width="620" height="290" /></div><p>Once you found the right image click upload. You´re done! That´s all you have to do. Your new custom header will now appear on your website.</p><div
class="img"><img
class="alignnone size-full wp-image-1117" title="custom-header-result" src="http://www.der-prinz.com/wp-content/uploads/2010/08/custom-header-result.jpg" alt="" width="620" height="290" /></div><h2>Changing the allowed Image Dimensions</h2><p>In case you want to change the dimensions of the header image from default to something different, you just need to open <code>/tools/wp3-stuff.php</code> (an include file of functions.php) and change the two figures to the values you like.</p><div
class="dean_ch" style="white-space: wrap;"><span
class="co1">// Custom header image</span><br
/> <a
href="http://www.php.net/define"><span
class="kw3">define</span></a><span
class="br0">&#40;</span> <span
class="st0">&#8216;HEADER_IMAGE&#8217;</span>, <span
class="st0">&#8216;%s/images/logo.png&#8217;</span> <span
class="br0">&#41;</span>; <span
class="co1">// The default logo located in themes folder</span><br
/> <a
href="http://www.php.net/define"><span
class="kw3">define</span></a><span
class="br0">&#40;</span> <span
class="st0">&#8216;HEADER_IMAGE_WIDTH&#8217;</span>, apply_filters<span
class="br0">&#40;</span> <span
class="st0">&#8221;</span>, <span
class="nu0">625</span> <span
class="br0">&#41;</span> <span
class="br0">&#41;</span>; <span
class="co1">// Width of Logo</span><br
/> <a
href="http://www.php.net/define"><span
class="kw3">define</span></a><span
class="br0">&#40;</span> <span
class="st0">&#8216;HEADER_IMAGE_HEIGHT&#8217;</span>, apply_filters<span
class="br0">&#40;</span> <span
class="st0">&#8221;</span>, <span
class="nu0">100</span> <span
class="br0">&#41;</span> <span
class="br0">&#41;</span>; <span
class="co1">// Height of Logo</span><br
/> <a
href="http://www.php.net/define"><span
class="kw3">define</span></a><span
class="br0">&#40;</span> <span
class="st0">&#8216;NO_HEADER_TEXT&#8217;</span>, <span
class="kw2">true</span> <span
class="br0">&#41;</span>;</div><p>BUT ATTENTION: Make sure the new dimensions do not destroy your layout.</p> ]]></content:encoded> <wfw:commentRss>http://www.der-prinz.com/adding-custom-header-prinz-themes/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Support Forum re-opened and tutorials extended</title><link>http://www.der-prinz.com/support-forum-reopened-tutorials-extended/</link> <comments>http://www.der-prinz.com/support-forum-reopened-tutorials-extended/#comments</comments> <pubDate>Wed, 13 Jan 2010 16:27:40 +0000</pubDate> <dc:creator>Michael Oeser</dc:creator> <category><![CDATA[News]]></category> <category><![CDATA[BranfordMagazine]]></category> <category><![CDATA[PRiNZ]]></category> <category><![CDATA[Support Forum]]></category> <category><![CDATA[Tutorials]]></category> <category><![CDATA[WordPress Themes]]></category> <category><![CDATA[WyntonMagazine]]></category><guid
isPermaLink="false">http://www.der-prinz.com/?p=932</guid> <description><![CDATA[I´m happy to announce the re-opening of the support forum and the update/extension of the tutorial section here at DER PRiNZ. Both areas will help new and advanced PRiNZ-Users to get their Websites up and running with one of my themes as fast and professional as possible. The latest tutorials are always available from the Homepage. So if you need support check out the tutorials or/and the support forum.]]></description> <content:encoded><![CDATA[<p><strong>I´m happy to announce the re-opening of the <a
href="http://www.der-prinz.com/support-forum">support forum</a> and the update/extension of the <a
href="http://www.der-prinz.com/category/tutorials">tutorial</a> section here at DER PRiNZ.</strong></p><p>Both areas will help new and advanced PRiNZ-Users to get their Websites up and running with one of my themes as fast and professional as possible. The latest tutorials are always available from the Homepage.</p><p>So if you need support check out the <a
href="http://www.der-prinz.com/category/tutorials">tutorials</a> or/and the <a
href="http://www.der-prinz.com/support-forum">support forum</a>.</p> ]]></content:encoded> <wfw:commentRss>http://www.der-prinz.com/support-forum-reopened-tutorials-extended/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 32/41 queries in 0.010 seconds using disk: basic
Object Caching 934/940 objects using disk: basic

Served from: www.der-prinz.com @ 2012-05-17 00:40:24 -->
