<?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>Matthias Pospiech</title>
	<atom:link href="http://www.matthiaspospiech.de/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.matthiaspospiech.de</link>
	<description></description>
	<lastBuildDate>Mon, 31 May 2010 19:37:04 +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>fixes for Qt plugin makefiles</title>
		<link>http://www.matthiaspospiech.de/blog/2010/01/28/fixes-for-qt-plugin-makefiles/</link>
		<comments>http://www.matthiaspospiech.de/blog/2010/01/28/fixes-for-qt-plugin-makefiles/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 22:51:53 +0000</pubDate>
		<dc:creator>pospiech</dc:creator>
				<category><![CDATA[Qt]]></category>
		<category><![CDATA[C++]]></category>

		<guid isPermaLink="false">http://www.matthiaspospiech.de/?p=471</guid>
		<description><![CDATA[There are many usefull Qt plugins, such as qwt, qextserialport, qxt and others. With a new major version of Qt, or a new version of a compiler I have to recompile the plugins to make sure everything is working well together. However many plugins are not compilable from comandline such that the resulting files can [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>There are many usefull Qt plugins, such as qwt, qextserialport, qxt and others. With a new major version of Qt, or a new version of a compiler I have to recompile the plugins to make sure everything is working well together. However many plugins are not compilable from comandline such that the resulting files can easily be deployed. Also they should be compilable with mingw and msvc.
</p>
<p>Here I show the necessary modifications to enable compilation of everything necessary in a naming scheme for windows.</p>

<span id="more-471"></span>

<h3 id="toc-wwwidgets">wwWidgets</h3>
<p>The current release has a wwwidgets.pro file error that needs to be fixed otherwise compilation fails:</p>


<div class="wp_syntax"><div class="code"><pre class="diff" style="font-family:monospace;">-unix:TARGET = $$join<span style="">&#40;</span>TARGET,,,d<span style="">&#41;</span>
<span style="color: #00b000;">+win32:TARGET = $$join<span style="">&#40;</span>TARGET,,,d<span style="">&#41;</span></span></pre></div></div>



<p>apart from that it contains the necessary steps to build debug and release and name them different</p>


<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">CONFIG += debug_and_release
CONFIG += build_all</pre></div></div>




<p>Unfortunately the examples can only be compiled after system wide installation of the library. This can be fixed by adding a file <code>common.pro</code> with the content</p>


<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">INCLUDEPATH += ../../../../../include/qt/wwwidgets \
&nbsp;
CONFIG += release
CONFIG -= debug
&nbsp;
LIBS += -lwwwidgets4 -L../../widgets/release</pre></div></div>



<p>Please note that here all header files were manually moved to <code>.../include/qt/wwwidgets</code></p>

<p>This <code>common.pri</code> is then called in every pro file of the examples, here <code>widgetgallery.pro</code></p>


<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">FORMS += gallery.ui
TEMPLATE = app
CONFIG += wwwidgets
SOURCES += main.cpp
&nbsp;
include(../common.pri)</pre></div></div>




<h3 id="toc-qwtplot3d">qwtPlot3D</h3>
<p>This library has many problems. Its qmake files are only designed for msvc and the code does not compile. Additionally it can not be used to build debug and release builds.</p>

<p><code>qwtplot3d.pro</code></p>


<div class="wp_syntax"><div class="code"><pre class="diff" style="font-family:monospace;">-CONFIG           += qt warn_on opengl thread zlib debug
<span style="color: #00b000;">+CONFIG           += qt warn_on opengl thread zlib</span>
<span style="color: #00b000;">+CONFIG           += debug_and_release</span>
<span style="color: #00b000;">+CONFIG           += build_all</span>
&nbsp;
<span style="color: #991111;">-win32:TEMPLATE    = vclib</span>
<span style="color: #00b000;">+win32:TEMPLATE    = lib</span>
&nbsp;
<span style="color: #00b000;">+CONFIG<span style="">&#40;</span>debug, debug|release<span style="">&#41;</span> <span style="">&#123;</span></span>
<span style="color: #00b000;">+  win32:TARGET = $$join<span style="">&#40;</span>TARGET,,,d<span style="">&#41;</span></span>
<span style="color: #00b000;">+<span style="">&#125;</span></span></pre></div></div>




<p><code>examples/common.pro</code></p>


<div class="wp_syntax"><div class="code"><pre class="diff" style="font-family:monospace;">-CONFIG      += qt warn_on thread debug
<span style="color: #00b000;">+CONFIG      += qt warn_on thread release</span>
<span style="color: #00b000;">+CONFIG      -= debug</span>
&nbsp;
win32<span style="">&#123;</span>
<span style="color: #991111;">-  LIBS += ../../lib/qwtplot3d.lib</span>
<span style="color: #00b000;">+  LIBS += -lqwtplot3d -L../../lib</span>
<span style="color: #991111;">-  TEMPLATE  = vcapp</span>
<span style="color: #00b000;">+  TEMPLATE  = app</span></pre></div></div>




<p><code>src/qwt3d_function.cpp</code></p>


<div class="wp_syntax"><div class="code"><pre class="diff" style="font-family:monospace;">+#include &lt;stdio.h&gt;</pre></div></div>




<h3 id="toc-qwt">Qwt</h3>
Here only the following needs to be enabled in <code>qwtconfig.pri</code>


<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">CONFIG += debug_and_release
CONFIG += build_all</pre></div></div>




<p>With Qt 4.6.x is does not compile. To fix this the following needs to be changed in <code>qwt_valuelist.h</code>. See <a href="http://www.qtcentre.org/threads/24721-qHash%28double%29-problem-with-Qt-4-6-%28tp1%29" class="liexternal">this</a> for discussion of the problem.</p>


<div class="wp_syntax"><div class="code"><pre class="diff" style="font-family:monospace;">-#if defined<span style="">&#40;</span>QWT_TEMPLATEDLL<span style="">&#41;</span>
<span style="color: #991111;">-#if QT_VERSION &lt; 0x040300</span>
<span style="color: #00b000;">+#if defined<span style="">&#40;</span>QWT_TEMPLATEDLL<span style="">&#41;</span> &amp;&amp; QT_VERSION &lt; 0x040600</span>
<span style="color: #00b000;">+#if QT_VERSION == 0x040600</span></pre></div></div>





<h3 id="toc-qextserialport">QextSerialPort</h3>

<p>Usual changes for the pro files, here <code>qextserialport.pro</code>. The examples project however has no chance to compile without the changes. Remove:</p>


<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">CONFIG                 -= debug_and_release
#CONFIG                 += debug
CONFIG                 += release</pre></div></div>




<p>and replace by</p>


<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">CONFIG                 += debug_and_release
CONFIG           	   += build_all</pre></div></div>




<p>also adding at the end</p>


<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">CONFIG(debug, debug|release) {
  win32:TARGET = $$join(TARGET,,,d)
}</pre></div></div>




<p>The examples file <code>QESPTA.pro</code> is missing correct config and library path specification</p>


<div class="wp_syntax"><div class="code"><pre class="diff" style="font-family:monospace;">+CONFIG           += release     
<span style="color: #00b000;">+CONFIG           -= debug     </span>
<span style="color: #991111;">-LIBS          += -lqextserialport</span>
<span style="color: #00b000;">+LIBS          += -lqextserialport -L../../</span></pre></div></div>




<code>examples/qespta/MessageWindow.h</code><p>


<div class="wp_syntax"><div class="code"><pre class="diff" style="font-family:monospace;">+#include &lt;stdio.h&gt;</pre></div></div>





<h3 id="toc-qcodeedit">QCodeEdit</h3>

Removed the following line from <code>qcodeedit.pro</code>, because it is never used anyway


<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">CONFIG += debug</pre></div></div>




I changed the deploy configuration in <code>lib.pro</code>


<div class="wp_syntax"><div class="code"><pre class="diff" style="font-family:monospace;">-DESTDIR = ..
<span style="color: #991111;">-CONFIG += debug</span>
<span style="color: #00b000;">+win32<span style="">&#123;</span></span>
<span style="color: #00b000;">+    CONFIG           += debug_and_release</span>
<span style="color: #00b000;">+    CONFIG           += build_all</span>
<span style="color: #00b000;">+    debug:DESTDIR = ../deploy/lib/debug</span>
<span style="color: #00b000;">+    release:DESTDIR = ../deploy/lib/release</span>
<span style="color: #00b000;">+<span style="">&#125;</span> else <span style="">&#123;</span></span>
<span style="color: #00b000;">+    DESTDIR = ..</span>
<span style="color: #00b000;">+<span style="">&#125;</span></span></pre></div></div>



<p>this required similar changes in further files, <code>example.pro</code></p>


<div class="wp_syntax"><div class="code"><pre class="diff" style="font-family:monospace;">-CONFIG += debug console
<span style="color: #00b000;">+CONFIG += release</span>
<span style="color: #00b000;">+CONFIG -= debug</span>
&nbsp;
<span style="color: #991111;">-LIBS += -L.. -lqcodeedit</span>
<span style="color: #00b000;">+win32<span style="">&#123;</span></span>
<span style="color: #00b000;">+	debug:LIBS += -L../deploy/lib/debug -lqcodeedit</span>
<span style="color: #00b000;">+	release:LIBS += -L../deploy/lib/release -lqcodeedit</span>
<span style="color: #00b000;">+<span style="">&#125;</span> else <span style="">&#123;</span></span>
<span style="color: #00b000;">+	LIBS += -L.. -lqcodeedit</span>
<span style="color: #00b000;">+<span style="">&#125;</span></span></pre></div></div>



<p>and equivalent in <code>designer-plugin.pro</code></p>

<h3 id="toc-qxt">Qxt</h3>
<p>required no changes at all.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.matthiaspospiech.de/blog/2010/01/28/fixes-for-qt-plugin-makefiles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows SDK 7 messed up</title>
		<link>http://www.matthiaspospiech.de/blog/2010/01/21/windows-sdk-7-messed-up/</link>
		<comments>http://www.matthiaspospiech.de/blog/2010/01/21/windows-sdk-7-messed-up/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 17:33:45 +0000</pubDate>
		<dc:creator>pospiech</dc:creator>
				<category><![CDATA[C++]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[Windows SDK]]></category>

		<guid isPermaLink="false">http://www.matthiaspospiech.de/?p=465</guid>
		<description><![CDATA[I am trying to set up the Windows SDK environment for compilation of an other C++ project (Qt phonon library).
However the script seems to be totally broken. It does not work and destroys the path variable.

This is what the path looks like before anything is called:


C:\Users\Matthias&#62;PATH
PATH=C:\Program Files\PC Connectivity Solution\;C:\Program Files\MiKTeX 2.8\mikt
ex\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System
32\WindowsPowerShell\v1.0\;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;
C:\Program Files\TortoiseSVN\bin;C:\Program [...]


Related posts:<ol><li><a href='http://www.matthiaspospiech.de/blog/2008/07/30/compilation-of-phonon-under-windows-xp/' rel='bookmark' title='Permanent Link: Compilation of Phonon under Windows XP'>Compilation of Phonon under Windows XP</a></li>
<li><a href='http://www.matthiaspospiech.de/blog/2008/12/07/free-qt-visual-studio-integration/' rel='bookmark' title='Permanent Link: free Qt Visual Studio Integration'>free Qt Visual Studio Integration</a></li>
<li><a href='http://www.matthiaspospiech.de/blog/2008/02/12/qt-ides/' rel='bookmark' title='Permanent Link: Qt IDEs'>Qt IDEs</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I am trying to set up the Windows SDK environment for compilation of an other C++ project (Qt phonon library).
However the script seems to be totally broken. It does not work and destroys the path variable.
</p>
<p>This is what the path looks like before anything is called:</p>


<div class="wp_syntax"><div class="code"><pre class="dos" style="font-family:monospace;">C:\Users\Matthias&gt;PATH
PATH=C:\Program Files\PC Connectivity Solution\;C:\Program Files\MiKTeX <span style="color: #cc66cc;">2.8</span>\mikt
ex\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System
<span style="color: #cc66cc;">32</span>\WindowsPowerShell\v1.0\;C:\Program Files\Microsoft SQL Server\<span style="color: #cc66cc;">90</span>\Tools\binn\;
C:\Program Files\TortoiseSVN\bin;C:\Program Files\doxygen\bin;C:\Program Files\C
ommon Files\Roxio Shared\<span style="color: #cc66cc;">9.0</span>\DLLShared\;C:\Program Files\MATLAB\R2008a\bin;C:\Pr
ogram Files\MATLAB\R2008a\bin\win32;C:\Program Files\ispell;C:\Program Files\gs\
gs8.63\bin;C:\Program Files\gnuplot\bin;&quot;C:\Program Files\Microsoft SDKs\Windows
\v7.0\bin&quot;;&quot;C:\Program Files\Microsoft Visual Studio <span style="color: #cc66cc;">8</span>\VC\bin&quot;</pre></div></div>




<p>If I call <code>SetEnv.cmd</code> it is messed up:</p>


<div class="wp_syntax"><div class="code"><pre class="dos" style="font-family:monospace;">C:\Users\Matthias&gt;SetEnv.cmd
C:\Users\Matthias&gt;PATH
PATH=;C:\Program Files\Microsoft Visual Studio 9.0vcpackages;C:\Program Files\Mi
crosoft Visual Studio <span style="color: #cc66cc;">9.0</span>\Common7\IDE;C:\Program Files\Microsoft SDKs\Windows\v7
.0\Bin;C:\Windows\Microsoft.NET\Framework\v3.5;C:\Windows\Microsoft.NET\Framewor
k\v2.0.50727;!Path!</pre></div></div>




<p>Apart from that the script fails to find the compilers, though the SDK was installed completely.</p>


<div class="wp_syntax"><div class="code"><pre class="dos" style="font-family:monospace;">The x86 compilers are <span style="color: #000000; font-weight: bold;">not</span> currently installed.
Please go to Add/Remove Programs to update your installation.
.
Setting SDK environment relative to C:\Program Files\Microsoft SDKs\Windows\v7.0
.
Das Sprungziel - Set_x86 wurde nicht gefunden.</pre></div></div>




Debugging the code that is throwing this error the following seems to happen


<div class="wp_syntax"><div class="code"><pre class="dos" style="font-family:monospace;"><span style="color: #b1b100; font-weight: bold;">SET</span> <span style="color: #448844;">&quot;VCRoot</span>=<span style="color: #33cc33;">%</span><span style="color: #448888;">ProgramFiles</span><span style="color: #33cc33;">%</span>\Microsoft Visual Studio <span style="color: #cc66cc;">9.0</span>&quot;
<span style="color: #b1b100; font-weight: bold;">SET</span> <span style="color: #448844;">&quot;VCTools</span>=<span style="color: #33cc33;">%</span><span style="color: #448888;">VCRoot</span><span style="color: #33cc33;">%</span>Bin&quot;
<span style="color: #00b100; font-weight: bold;">IF</span> <span style="color: #000000; font-weight: bold;">NOT</span> <span style="color: #000000; font-weight: bold;">EXIST</span> &quot;<span style="color: #33cc33;">%</span><span style="color: #448888;">VCTools</span><span style="color: #33cc33;">%</span>\cl.exe&quot; <span style="color: #66cc66;">&#40;</span>
  <span style="color: #b1b100; font-weight: bold;">SET</span> <span style="color: #448844;">VCTools</span>=
  <span style="color: #b1b100; font-weight: bold;">ECHO</span> The x86 compilers are <span style="color: #000000; font-weight: bold;">not</span> currently installed.
  <span style="color: #b1b100; font-weight: bold;">ECHO</span> Please go to Add/Remove Programs to update your installation.
  <span style="color: #b1b100; font-weight: bold;">ECHO</span> .
<span style="color: #66cc66;">&#41;</span></pre></div></div>



So the script if looking for <code>C:\Program Files\Microsoft Visual Studio 9.0\Bin\cl.exe</code> &#8211; which does not exist, because there is no bin path. The correct path would be <code>C:\Program Files\Microsoft Visual Studio 9.0\VC\bin</code>.

<p>If anyone has any idea, that would be helpfull.</p>

<p>Related posts:<ol><li><a href='http://www.matthiaspospiech.de/blog/2008/07/30/compilation-of-phonon-under-windows-xp/' rel='bookmark' title='Permanent Link: Compilation of Phonon under Windows XP'>Compilation of Phonon under Windows XP</a></li>
<li><a href='http://www.matthiaspospiech.de/blog/2008/12/07/free-qt-visual-studio-integration/' rel='bookmark' title='Permanent Link: free Qt Visual Studio Integration'>free Qt Visual Studio Integration</a></li>
<li><a href='http://www.matthiaspospiech.de/blog/2008/02/12/qt-ides/' rel='bookmark' title='Permanent Link: Qt IDEs'>Qt IDEs</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.matthiaspospiech.de/blog/2010/01/21/windows-sdk-7-messed-up/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Chilis 2009</title>
		<link>http://www.matthiaspospiech.de/blog/2009/10/29/chilis-2009/</link>
		<comments>http://www.matthiaspospiech.de/blog/2009/10/29/chilis-2009/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 22:10:07 +0000</pubDate>
		<dc:creator>pospiech</dc:creator>
				<category><![CDATA[Blumen]]></category>
		<category><![CDATA[Chilies]]></category>

		<guid isPermaLink="false">http://www.matthiaspospiech.de/?p=453</guid>
		<description><![CDATA[All Chilis of this year
The total amount of chilies this year is rather low, and not all plants have grown successful, but we could try some really nice new kind of chilies. 



Agatha
This chili is not really hot (scale 4) and taste more like a paprika.

Chupetinha 	
One of the most beautiful chili plants we ever [...]


Related posts:<ol><li><a href='http://www.matthiaspospiech.de/blog/2008/07/26/lohnen-sich-2-jaehrige-chilis/' rel='bookmark' title='Permanent Link: Lohnen sich 2-j&#228;hrige Chilis'>Lohnen sich 2-j&#228;hrige Chilis</a></li>
<li><a href='http://www.matthiaspospiech.de/blog/2007/07/24/chilies-erkrankt/' rel='bookmark' title='Permanent Link: Chilies erkrankt'>Chilies erkrankt</a></li>
<li><a href='http://www.matthiaspospiech.de/blog/2007/10/20/chilies-geerntet/' rel='bookmark' title='Permanent Link: Chilies geerntet'>Chilies geerntet</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h3 id="toc-all-chilis-of-this-year">All Chilis of this year</h3>

<div class="ngg-galleryoverview" id="ngg-gallery-43-453">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-217" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/Alle/web.chilis year 2009.jpg" title=" " class="shutterset_set_43" >
								<img title="web.chilis year 2009" alt="web.chilis year 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/Alle/thumbs/thumbs_web.chilis year 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<p>The total amount of chilies this year is rather low, and not all plants have grown successful, but we could try some really nice new kind of chilies.</p> 

<span id="more-453"></span>

<h3 id="toc-agatha">Agatha</h3>

<div class="ngg-galleryoverview" id="ngg-gallery-33-453">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-192" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/Agatha/web.01 chili agatha - 16. september 2009.jpg" title="Agatha Chili changing color" class="shutterset_set_33" >
								<img title="web.01 chili agatha - 16. september 2009" alt="web.01 chili agatha - 16. september 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/Agatha/thumbs/thumbs_web.01 chili agatha - 16. september 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-193" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/Agatha/web.02 chili agatha - 13. september 2009.jpg" title=" " class="shutterset_set_33" >
								<img title="web.02 chili agatha - 13. september 2009" alt="web.02 chili agatha - 13. september 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/Agatha/thumbs/thumbs_web.02 chili agatha - 13. september 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-194" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/Agatha/web.03 chili agatha - 20. oktober 2009.jpg" title=" " class="shutterset_set_33" >
								<img title="web.03 chili agatha - 20. oktober 2009" alt="web.03 chili agatha - 20. oktober 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/Agatha/thumbs/thumbs_web.03 chili agatha - 20. oktober 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-195" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/Agatha/web.04 chili agatha - 20. oktober 2009.jpg" title="New flowers at almost November" class="shutterset_set_33" >
								<img title="web.04 chili agatha - 20. oktober 2009" alt="web.04 chili agatha - 20. oktober 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/Agatha/thumbs/thumbs_web.04 chili agatha - 20. oktober 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<p>This chili is not really hot (scale 4) and taste more like a paprika.</p>

<h3 id="toc-chupetinha">Chupetinha</h3>

<div class="ngg-galleryoverview" id="ngg-gallery-35-453">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-196" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/Chupetinha/web.01 chili chupetinha - 19. september 2009.jpg" title=" " class="shutterset_set_35" >
								<img title="web.01 chili chupetinha - 19. september 2009" alt="web.01 chili chupetinha - 19. september 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/Chupetinha/thumbs/thumbs_web.01 chili chupetinha - 19. september 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-197" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/Chupetinha/web.02 chili chupetinha - 24. oktober 2009.jpg" title=" " class="shutterset_set_35" >
								<img title="web.02 chili chupetinha - 24. oktober 2009" alt="web.02 chili chupetinha - 24. oktober 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/Chupetinha/thumbs/thumbs_web.02 chili chupetinha - 24. oktober 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-198" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/Chupetinha/web.03 chili chupetinha - 24. oktober 2009.jpg" title=" " class="shutterset_set_35" >
								<img title="web.03 chili chupetinha - 24. oktober 2009" alt="web.03 chili chupetinha - 24. oktober 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/Chupetinha/thumbs/thumbs_web.03 chili chupetinha - 24. oktober 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-199" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/Chupetinha/web.04 chili chupetinha - 24. oktober 2009.jpg" title=" " class="shutterset_set_35" >
								<img title="web.04 chili chupetinha - 24. oktober 2009" alt="web.04 chili chupetinha - 24. oktober 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/Chupetinha/thumbs/thumbs_web.04 chili chupetinha - 24. oktober 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

  	
<p>One of the most beautiful chili plants we ever had. Also the chilies are very hot (10) and taste very good.</p>

<h3 id="toc-habanero">Habanero</h3>

<div class="ngg-galleryoverview" id="ngg-gallery-37-453">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-200" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/Habanero/web.01 chili habanero - 13. september 2009.jpg" title=" " class="shutterset_set_37" >
								<img title="web.01 chili habanero - 13. september 2009" alt="web.01 chili habanero - 13. september 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/Habanero/thumbs/thumbs_web.01 chili habanero - 13. september 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-201" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/Habanero/web.02 chili habanero - 19. september 2009.jpg" title=" " class="shutterset_set_37" >
								<img title="web.02 chili habanero - 19. september 2009" alt="web.02 chili habanero - 19. september 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/Habanero/thumbs/thumbs_web.02 chili habanero - 19. september 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-202" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/Habanero/web.03 chili habanero - 24. oktober 2009.jpg" title=" " class="shutterset_set_37" >
								<img title="web.03 chili habanero - 24. oktober 2009" alt="web.03 chili habanero - 24. oktober 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/Habanero/thumbs/thumbs_web.03 chili habanero - 24. oktober 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-203" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/Habanero/web.04 chili habanero - 24. oktober 2009.jpg" title=" " class="shutterset_set_37" >
								<img title="web.04 chili habanero - 24. oktober 2009" alt="web.04 chili habanero - 24. oktober 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/Habanero/thumbs/thumbs_web.04 chili habanero - 24. oktober 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

	
<p>Hot as a Habanero can be (10).</p>

<h3 id="toc-harald">Harald</h3>

<div class="ngg-galleryoverview" id="ngg-gallery-39-453">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-204" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/Harald/web.01 chili harald - 19. september 2009.jpg" title=" " class="shutterset_set_39" >
								<img title="web.01 chili harald - 19. september 2009" alt="web.01 chili harald - 19. september 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/Harald/thumbs/thumbs_web.01 chili harald - 19. september 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-205" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/Harald/web.02 chili harald - 19. september 2009.jpg" title=" " class="shutterset_set_39" >
								<img title="web.02 chili harald - 19. september 2009" alt="web.02 chili harald - 19. september 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/Harald/thumbs/thumbs_web.02 chili harald - 19. september 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-206" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/Harald/web.03 chili harald - 19. september 2009.jpg" title=" " class="shutterset_set_39" >
								<img title="web.03 chili harald - 19. september 2009" alt="web.03 chili harald - 19. september 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/Harald/thumbs/thumbs_web.03 chili harald - 19. september 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<p>This is a special cultivated chili with purple fruits. We have not tasted it, but the plant gets a lot of interest.</p> 

<h3 id="toc-numexsuavered">NumexSuaveRed</h3>

<div class="ngg-galleryoverview" id="ngg-gallery-40-453">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-207" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/NumexSuaveRed/web.01 chili numex suave red - 19. september 2009.jpg" title=" " class="shutterset_set_40" >
								<img title="web.01 chili numex suave red - 19. september 2009" alt="web.01 chili numex suave red - 19. september 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/NumexSuaveRed/thumbs/thumbs_web.01 chili numex suave red - 19. september 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-208" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/NumexSuaveRed/web.02 chili numex suave red - 19. september 2009.jpg" title=" " class="shutterset_set_40" >
								<img title="web.02 chili numex suave red - 19. september 2009" alt="web.02 chili numex suave red - 19. september 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/NumexSuaveRed/thumbs/thumbs_web.02 chili numex suave red - 19. september 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-209" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/NumexSuaveRed/web.03 chili numex suave red - 24. oktober 2009.jpg" title=" " class="shutterset_set_40" >
								<img title="web.03 chili numex suave red - 24. oktober 2009" alt="web.03 chili numex suave red - 24. oktober 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/NumexSuaveRed/thumbs/thumbs_web.03 chili numex suave red - 24. oktober 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-210" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/NumexSuaveRed/web.04 chili numex suave red - 24. oktober 2009.jpg" title=" " class="shutterset_set_40" >
								<img title="web.04 chili numex suave red - 24. oktober 2009" alt="web.04 chili numex suave red - 24. oktober 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/NumexSuaveRed/thumbs/thumbs_web.04 chili numex suave red - 24. oktober 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-211" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/NumexSuaveRed/web.05 chili numex suave red - 24. oktober 2009.jpg" title=" " class="shutterset_set_40" >
								<img title="web.05 chili numex suave red - 24. oktober 2009" alt="web.05 chili numex suave red - 24. oktober 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/NumexSuaveRed/thumbs/thumbs_web.05 chili numex suave red - 24. oktober 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

	
<p>Taste and smells like a Habanero, but is soft like a paprika.</p>

<h3 id="toc-salamandra">Salamandra</h3>

<div class="ngg-galleryoverview" id="ngg-gallery-41-453">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-212" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/Salamandra/web.01 chili salamandra - 19. september 2009.jpg" title=" " class="shutterset_set_41" >
								<img title="web.01 chili salamandra - 19. september 2009" alt="web.01 chili salamandra - 19. september 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/Salamandra/thumbs/thumbs_web.01 chili salamandra - 19. september 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-213" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/Salamandra/web.02 chili salamandra - 24. oktober 2009.jpg" title=" " class="shutterset_set_41" >
								<img title="web.02 chili salamandra - 24. oktober 2009" alt="web.02 chili salamandra - 24. oktober 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/Salamandra/thumbs/thumbs_web.02 chili salamandra - 24. oktober 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

	

<h3 id="toc-shata-baladi">Shata Baladi</h3>

<div class="ngg-galleryoverview" id="ngg-gallery-42-453">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-214" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/ShataBaladi/web.01 chili shata baladi - 19. september 2009.jpg" title=" " class="shutterset_set_42" >
								<img title="web.01 chili shata baladi - 19. september 2009" alt="web.01 chili shata baladi - 19. september 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/ShataBaladi/thumbs/thumbs_web.01 chili shata baladi - 19. september 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-215" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/ShataBaladi/web.02 chili shata baladi - 24. oktober 2009.jpg" title=" " class="shutterset_set_42" >
								<img title="web.02 chili shata baladi - 24. oktober 2009" alt="web.02 chili shata baladi - 24. oktober 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/ShataBaladi/thumbs/thumbs_web.02 chili shata baladi - 24. oktober 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-216" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/chilis2009/ShataBaladi/web.03 chili shata baladi - 24. oktober 2009.jpg" title=" " class="shutterset_set_42" >
								<img title="web.03 chili shata baladi - 24. oktober 2009" alt="web.03 chili shata baladi - 24. oktober 2009" src="http://www.matthiaspospiech.de/files/gallery/chilis2009/ShataBaladi/thumbs/thumbs_web.03 chili shata baladi - 24. oktober 2009.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>



<p>Related posts:<ol><li><a href='http://www.matthiaspospiech.de/blog/2008/07/26/lohnen-sich-2-jaehrige-chilis/' rel='bookmark' title='Permanent Link: Lohnen sich 2-j&#228;hrige Chilis'>Lohnen sich 2-j&#228;hrige Chilis</a></li>
<li><a href='http://www.matthiaspospiech.de/blog/2007/07/24/chilies-erkrankt/' rel='bookmark' title='Permanent Link: Chilies erkrankt'>Chilies erkrankt</a></li>
<li><a href='http://www.matthiaspospiech.de/blog/2007/10/20/chilies-geerntet/' rel='bookmark' title='Permanent Link: Chilies geerntet'>Chilies geerntet</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.matthiaspospiech.de/blog/2009/10/29/chilis-2009/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>theme modifications</title>
		<link>http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/</link>
		<comments>http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 11:07:16 +0000</pubDate>
		<dc:creator>pospiech</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Elegant Themes]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://www.matthiaspospiech.de/?p=436</guid>
		<description><![CDATA[In the following I present the modifcations I made to several themes of elegantthemes.

The changes include

	integrated page numbers with css (was integrated in some themes but without css support)
	breadcrumbs in all themes
	Link for &#8216;edit&#8217; and &#8216;print page&#8217; (using wp-print plugin)
	css support for tables. This is unfortunately missing in all themes
	alternating colors in table rows with [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>In the following I present the modifcations I made to several themes of <a href="http://www.elegantthemes.com/" class="liexternal">elegantthemes</a>.</p>

<p>The changes include</p>
<ul>
	<li>integrated page numbers with css (was integrated in some themes but without css support)</li>
	<li>breadcrumbs in all themes</li>
	<li>Link for &#8216;edit&#8217; and &#8216;print page&#8217; (using <a href="http://wordpress.org/extend/plugins/wp-print/" class="liwp">wp-print</a> plugin)</li>
	<li>css support for tables. This is unfortunately missing in all themes</li>
	<li>alternating colors in table rows with js file, using alternate_rows.js (see <a href="https://forum.wordpress-deutschland.org/plugins-und-widgets/29237-plugin-fuer-alterierende-tabellenfarben.html" class="liexternal">forum with discussion</a>). If you can recommend a better solution I would like to know about it.</li>
	<li>css for <a href="http://wordpress.org/extend/plugins/wp-syntax/" class="liwp">wp_syntax</a> and <a href="http://en.dahnielson.com/2006/08/toc-plugin.html" class="liexternal">toc</a> plugin.</li>
	<li>some general bug fixes in php and css. (All bugs have been reported to the theme author, but I have no information if he fixed any of these.</li>
</ul>

<p>Any comments, especially hints and code for improvements are welcome.</p>

<span id="more-436"></span>

<p>The code here is not complete. Changes that I have applied to every theme are only shown once, and tiny changes to the main css file are mostly not discussed, though these are often fixes for visible bugs. The full code can not be made availabe anyway, because these are commercial themes. The changes were applied to themes downloaded in september 2009.</p>

<p>Not all bugs can be fixed though. Especially the images that are loading in the css files, but are missing in the themes. With the 404 logfile I found out that these are missing: </p>
<ul>
	<li>themes/GrungeMag/images/content-bg.gif</li>
	<li>themes/PureType/images/bullet.gif</li>
	<li>themes/Simplism/images/pages-bg.png</li>
	<li>themes/EarthlyTouch/images/pages-hover.gif</li>
	<li>themes/EarthlyTouch/images/dropdown-bottom.png</li>
</ul>
<p>(no guaranty that this is a complete list.</p>

<a id="toc"></a><ol class="toc"><li><a href="http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/#toc-earthlytouch" class="liinternal">EarthlyTouch</a><ol><li><a href="http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/#toc-screenshots" class="liinternal">Screenshots</a></li><li><a href="http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/#toc-code" class="liinternal">Code</a></li></ol></li><li><a href="http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/2/#toc-grungemag" class="liinternal">GrungeMag</a><ol><li><a href="http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/2/#toc-screenshots1" class="liinternal">Screenshots</a></li><li><a href="http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/2/#toc-code1" class="liinternal">Code</a></li></ol></li><li><a href="http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/3/#toc-puretype" class="liinternal">PureType</a><ol><li><a href="http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/3/#toc-code2" class="liinternal">Code</a></li></ol></li><li><a href="http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/4/#toc-simplism" class="liinternal">Simplism</a><ol><li><a href="http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/4/#toc-screenshots2" class="liinternal">Screenshots</a></li><li><a href="http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/4/#toc-code3" class="liinternal">Code</a></li></ol></li><li><a href="http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/5/#toc-studioblue" class="liinternal">StudioBlue</a><ol><li><a href="http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/5/#toc-screenshots3" class="liinternal">Screenshots</a></li><li><a href="http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/5/#toc-code4" class="liinternal">Code</a></li></ol></li><li><a href="http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/5/#toc-whoswho" class="liinternal">WhosWho</a><ol><li><a href="http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/5/#toc-screenshots4" class="liinternal">Screenshots</a></li><li><a href="http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/5/#toc-code5" class="liinternal">Code</a></li></ol></li></ol>

<h3 id="toc-earthlytouch">EarthlyTouch</h3>

<h4 id="toc-screenshots">Screenshots</h4>

<div class="ngg-galleryoverview" id="ngg-gallery-25-436">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-162" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/earthlytouchmod/earthlytouch01.jpg" title="breadcrumps" class="shutterset_set_25" >
								<img title="breadcrumps" alt="breadcrumps" src="http://www.matthiaspospiech.de/files/gallery/earthlytouchmod/thumbs/thumbs_earthlytouch01.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-163" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/earthlytouchmod/earthlytouch02.jpg" title="page numbers" class="shutterset_set_25" >
								<img title="page numbers" alt="page numbers" src="http://www.matthiaspospiech.de/files/gallery/earthlytouchmod/thumbs/thumbs_earthlytouch02.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-164" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/earthlytouchmod/earthlytouch03.jpg" title="table layout and menu list" class="shutterset_set_25" >
								<img title="table layout and menu list" alt="table layout and menu list" src="http://www.matthiaspospiech.de/files/gallery/earthlytouchmod/thumbs/thumbs_earthlytouch03.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-165" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/earthlytouchmod/earthlytouch04.jpg" title="page numbers" class="shutterset_set_25" >
								<img title="page numbers" alt="page numbers" src="http://www.matthiaspospiech.de/files/gallery/earthlytouchmod/thumbs/thumbs_earthlytouch04.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>



<h4 id="toc-code">Code</h4>
<p>Example code which is used to integrate the breadcrumps and the edit and print link, here for page.php</p>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;div id=&quot;container&quot;&gt;
&lt;div id=&quot;left-div&quot;&gt;
    &lt;div id=&quot;left-inside&quot;&gt;
        <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
        <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'bcn_display'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;div id=&quot;breadcrump&quot;&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> bcn_display<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
        &lt;/div&gt;&lt;div style=&quot;clear: both;&quot;&gt;&lt;/div&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
        <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span>have_posts<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> the_post<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
        &lt;!--Begin Article Single--&gt;
        &lt;div class=&quot;post-wrapper&quot;&gt;
            &lt;h1 class=&quot;post-title&quot;&gt;&lt;a href=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_permalink<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link to <span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot;&gt;
                <span style="color: #000000; font-weight: bold;">&lt;?php</span> the_title<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
                &lt;/a&gt;&lt;/h1&gt;
            &lt;div style=&quot;clear: both;&quot;&gt;&lt;/div&gt;
            <span style="color: #000000; font-weight: bold;">&lt;?php</span> the_content<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
            &lt;div style=&quot;clear: both;&quot;&gt;&lt;/div&gt;        
            &lt;div class=&quot;pagenumbers&quot;&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_link_pages<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'before'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;p&gt;Pages:'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'after'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;/p&gt;'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'next_or_number'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'number'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>  <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/div&gt;    
            <span style="color: #000000; font-weight: bold;">&lt;?php</span> edit_post_link<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Edit entry.'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">' | '</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
            <span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp_print'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> print_link<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
            &lt;div style=&quot;clear: both;&quot;&gt;&lt;/div&gt;
        &lt;/div&gt;</pre></div></div>




<p>example code for page numbers, here in blogstyle.php.</p>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp_pagenavi'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> wp_pagenavi<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span> 
<span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;p class=&quot;pagination&quot;&gt;
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> next_posts_link<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&amp;laquo; Previous Entries'</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> previous_posts_link<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Next Entries &amp;raquo;'</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/p&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>




<p>in single.php and post.php the following code is used instead</p>


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&lt;div class=&quot;pagenumbers&quot;&gt;
    <span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_link_pages<span style="color: #009900;">&#40;</span><span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'before'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;p&gt;Pages:'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'after'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'&lt;/p&gt;'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'next_or_number'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'number'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>  <span style="color: #000000; font-weight: bold;">?&gt;</span>
&lt;/div&gt;</pre></div></div>




<p>the &#8216;wp_link_pages&#8217; code does not nearly achieve what I want from a page numbering display, but the wp-pagenavi plugin does not work on pages/posts and others do not fit my requirements of code and css styling.</p>


<p>additional css for sidebar listnavigation</p>


<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.sidebar-box</span> ul li a<span style="color: #3333ff;">:link</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.sidebar-box</span> ul li a<span style="color: #3333ff;">:visited</span><span style="color: #00AA00;">,</span> <span style="color: #6666ff;">.sidebar-box</span> ul li a<span style="color: #3333ff;">:active </span><span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#373434</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;"><span style="color: #cc66cc;">100</span>%</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">background-image</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span> !important<span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">border-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#dedede</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span> 
<span style="color: #6666ff;">.sidebar-box</span> ul li <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#373434</span> !important<span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">list-style-type</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span><span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.sidebar-box</span> ul li a<span style="color: #3333ff;">:hover </span><span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;"><span style="color: #cc66cc;">100</span>%</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#393939</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span> <span style="color: #933;">3px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#fff</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.sidebar-box</span> ul <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">margin-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span><span style="color: #00AA00;">&#125;</span>
<span style="color: #6666ff;">.sidebar-box</span> ul li ul <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">margin-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">padding-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">&#125;</span>  
<span style="color: #6666ff;">.sidebar-box</span> h2 <span style="color: #00AA00;">&#123;</span> <span style="color: #000000; font-weight: bold;">margin-top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">5px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">20px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#4A493F</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">padding-top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">padding-bottom</span><span style="color: #00AA00;">:</span> <span style="color: #933;">4px</span><span style="color: #00AA00;">;</span> <span style="color: #000000; font-weight: bold;">margin-left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0px</span><span style="color: #00AA00;">;</span> <span style="color: #00AA00;">&#125;</span></pre></div></div>




<p>Additional css file: pospiech.css</p>


<div class="wp_syntax"><div class="code"><pre class="cpp" style="font-family:monospace;"><span style="color: #339900;">#breadcrump { background-color: #f6f6f6; padding: 5px 15px; margin-bottom: 10px; width: 583px; border: 1px solid #EBEBEB; }</span>
&nbsp;
h1 <span style="color: #008000;">&#123;</span> margin<span style="color: #000040;">-</span>top<span style="color: #008080;">:</span> 20px<span style="color: #008080;">;</span> <span style="color: #008000;">&#125;</span>
h2 <span style="color: #008000;">&#123;</span> margin<span style="color: #000040;">-</span>top<span style="color: #008080;">:</span> 20px<span style="color: #008080;">;</span> <span style="color: #008000;">&#125;</span>
h3 <span style="color: #008000;">&#123;</span> margin<span style="color: #000040;">-</span>top<span style="color: #008080;">:</span> 20px<span style="color: #008080;">;</span> <span style="color: #008000;">&#125;</span>
h4 <span style="color: #008000;">&#123;</span> margin<span style="color: #000040;">-</span>top<span style="color: #008080;">:</span> 20px<span style="color: #008080;">;</span> <span style="color: #008000;">&#125;</span>
h3.<span style="color: #007788;">post</span><span style="color: #000040;">-</span>title<span style="color: #008000;">&#123;</span> margin<span style="color: #000040;">-</span>top<span style="color: #008080;">:</span> 0px<span style="color: #008080;">;</span> <span style="color: #008000;">&#125;</span>
&nbsp;
.<span style="color: #007788;">articleinfo</span> <span style="color: #008000;">&#123;</span> border<span style="color: #000040;">-</span>bottom<span style="color: #008080;">:</span> 4px solid <span style="color: #339900;">#F0EACA; margin-bottom: 14px; padding-bottom: 7px; color: #57554B; }</span>
&nbsp;
&nbsp;
.<span style="color: #007788;">current_page_item</span> <span style="color: #008000;">&#123;</span> font<span style="color: #000040;">-</span>weight<span style="color: #008080;">:</span> bold<span style="color: #008080;">;</span> <span style="color: #008000;">&#125;</span>
.<span style="color: #007788;">current_page_item</span> .<span style="color: #007788;">page_item</span> <span style="color: #008000;">&#123;</span> font<span style="color: #000040;">-</span>weight<span style="color: #008080;">:</span> normal<span style="color: #008080;">;</span><span style="color: #008000;">&#125;</span>
.<span style="color: #007788;">current_cat_item</span> <span style="color: #008000;">&#123;</span> font<span style="color: #000040;">-</span>weight<span style="color: #008080;">:</span> bold<span style="color: #008080;">;</span> <span style="color: #008000;">&#125;</span>
&nbsp;
.<span style="color: #007788;">related</span><span style="color: #000040;">-</span>posts <span style="color: #008000;">&#123;</span>
	background<span style="color: #000040;">-</span>color<span style="color: #008080;">:</span> <span style="color: #339900;">#FFF; </span>
	border<span style="color: #000040;">-</span>top<span style="color: #008080;">:</span> 1px solid <span style="color: #339900;">#e7e7e7;</span>
	border<span style="color: #000040;">-</span>bottom<span style="color: #008080;">:</span> 1px solid <span style="color: #339900;">#e7e7e7;</span>
	padding<span style="color: #000040;">-</span>left<span style="color: #008080;">:</span> 15px<span style="color: #008080;">;</span>
	padding<span style="color: #000040;">-</span>top<span style="color: #008080;">:</span> 0px<span style="color: #008080;">;</span>
	display<span style="color: #008080;">:</span> block<span style="color: #008080;">;</span>
	margin<span style="color: #000040;">-</span>bottom<span style="color: #008080;">:</span> 15px<span style="color: #008080;">;</span> 
	margin<span style="color: #000040;">-</span>top<span style="color: #008080;">:</span> 15px<span style="color: #008080;">;</span>
<span style="color: #008000;">&#125;</span>
&nbsp;
.<span style="color: #007788;">landingsites</span><span style="color: #008000;">&#123;</span>
	background<span style="color: #000040;">-</span>color<span style="color: #008080;">:</span> <span style="color: #339900;">#FFF; </span>
	border<span style="color: #008080;">:</span> 1px solid <span style="color: #339900;">#e7e7e7;</span>
	padding<span style="color: #008080;">:</span> 5px 15px<span style="color: #008080;">;</span> 
	display<span style="color: #008080;">:</span> block<span style="color: #008080;">;</span>
	margin<span style="color: #000040;">-</span>right<span style="color: #008080;">:</span> 15px<span style="color: #008080;">;</span>
	margin<span style="color: #000040;">-</span>bottom<span style="color: #008080;">:</span> 15px<span style="color: #008080;">;</span> 
	margin<span style="color: #000040;">-</span>top<span style="color: #008080;">:</span> 15px<span style="color: #008080;">;</span>
	padding<span style="color: #000040;">-</span>top<span style="color: #008080;">:</span> 15px<span style="color: #008080;">;</span>
<span style="color: #008000;">&#125;</span>
&nbsp;
<span style="color: #ff0000; font-style: italic;">/* TOC Plugin */</span>
.<span style="color: #007788;">toc</span> <span style="color: #008000;">&#123;</span>
  border<span style="color: #008080;">:</span> <span style="color: #339900;">#ccc solid 1px;</span>
  <span style="color: #ff0000; font-style: italic;">/*float: left;*/</span>
  font<span style="color: #000040;">-</span>size<span style="color: #008080;">:</span> .9em<span style="color: #008080;">;</span>
  margin<span style="color: #008080;">:</span> <span style="color: #0000dd;">0</span> <span style="color: #0000dd;">0</span> 15px 0px<span style="color: #008080;">;</span>
  width<span style="color: #008080;">:</span> <span style="color: #0000dd;">50</span><span style="color: #000040;">%</span><span style="color: #008080;">;</span>
<span style="color: #008000;">&#125;</span>
&nbsp;
.<span style="color: #007788;">toc</span> ol <span style="color: #008000;">&#123;</span>
  margin<span style="color: #008080;">:</span> 5px<span style="color: #008080;">;</span>
  padding<span style="color: #000040;">-</span>left<span style="color: #008080;">:</span> 30px<span style="color: #008080;">;</span>
<span style="color: #008000;">&#125;</span>
&nbsp;
table<span style="color: #008000;">&#123;</span>
	width<span style="color: #008080;">:</span> <span style="color: #0000dd;">100</span><span style="color: #000040;">%</span><span style="color: #008080;">;</span>
	border<span style="color: #000040;">-</span>collapse<span style="color: #008080;">:</span> collapse<span style="color: #008080;">;</span>
	border<span style="color: #000040;">-</span>spacing<span style="color: #008080;">:</span> <span style="color: #0000dd;">0</span><span style="color: #008080;">;</span>
	border<span style="color: #008080;">:</span> 1px solid <span style="color: #339900;">#ebebeb;</span>
	margin<span style="color: #008080;">:</span> 10px 0px<span style="color: #008080;">;</span>
<span style="color: #008000;">&#125;</span> 
&nbsp;
.<span style="color: #007788;">blanktable</span> <span style="color: #008000;">&#123;</span>
	width<span style="color: #008080;">:</span> <span style="color: #0000ff;">auto</span><span style="color: #008080;">;</span>
	border<span style="color: #000040;">-</span>collapse<span style="color: #008080;">:</span> collapse<span style="color: #008080;">;</span>
	border<span style="color: #008080;">:</span> none<span style="color: #008080;">;</span>
<span style="color: #008000;">&#125;</span> 
&nbsp;
&nbsp;
td, th<span style="color: #008000;">&#123;</span>
	line<span style="color: #000040;">-</span>height<span style="color: #008080;">:</span> <span style="color: #0000dd;">130</span><span style="color: #000040;">%</span><span style="color: #008080;">;</span>
	vertical<span style="color: #000040;">-</span>align<span style="color: #008080;">:</span> top<span style="color: #008080;">;</span> 
	font<span style="color: #000040;">-</span>weight<span style="color: #008080;">:</span> normal<span style="color: #008080;">;</span> 
<span style="color: #008000;">&#125;</span> 
&nbsp;
&nbsp;
table thead tr <span style="color: #008000;">&#123;</span>
	border<span style="color: #008080;">:</span> solid <span style="color: #339900;">#3badef;</span>
	border<span style="color: #000040;">-</span>width<span style="color: #008080;">:</span> 1px<span style="color: #008080;">;</span>
<span style="color: #008000;">&#125;</span>
&nbsp;
table thead th<span style="color: #008000;">&#123;</span>
	letter<span style="color: #000040;">-</span>spacing<span style="color: #008080;">:</span> .1em<span style="color: #008080;">;</span> 
	color<span style="color: #008080;">:</span><span style="color: #339900;">#fff; </span>
	background<span style="color: #008080;">:</span> <span style="color: #339900;">#3badef; </span>
	font<span style="color: #000040;">-</span>weight<span style="color: #008080;">:</span> bold<span style="color: #008080;">;</span> 
	text<span style="color: #000040;">-</span>align<span style="color: #008080;">:</span>left<span style="color: #008080;">;</span>
<span style="color: #008000;">&#125;</span> 
&nbsp;
table tbody th<span style="color: #008000;">&#123;</span>
	border<span style="color: #008080;">:</span> solid <span style="color: #339900;">#53718b;</span>
	border<span style="color: #000040;">-</span>width<span style="color: #008080;">:</span> 1px <span style="color: #0000dd;">0</span><span style="color: #008080;">;</span>
	text<span style="color: #000040;">-</span>align<span style="color: #008080;">:</span>left<span style="color: #008080;">;</span>
	background<span style="color: #008080;">:</span> <span style="color: #339900;">#88b0d4; </span>
<span style="color: #008000;">&#125;</span> 
&nbsp;
table tbody tr <span style="color: #008000;">&#123;</span>
	border<span style="color: #008080;">:</span> solid <span style="color: #339900;">#dadada;</span>
	border<span style="color: #000040;">-</span>width<span style="color: #008080;">:</span> 1px<span style="color: #008080;">;</span>
<span style="color: #008000;">&#125;</span>
&nbsp;
&nbsp;
td, th <span style="color: #008000;">&#123;</span> padding<span style="color: #008080;">:</span> 6px<span style="color: #008080;">;</span> margin<span style="color: #008080;">:</span> 0px<span style="color: #008080;">;</span> <span style="color: #008000;">&#125;</span>   
table tr.<span style="color: #007788;">even</span> th, 
table tr.<span style="color: #007788;">even</span> td <span style="color: #008000;">&#123;</span>background<span style="color: #008080;">:</span> <span style="color: #339900;">#f6f6f6; } </span>
table tr.<span style="color: #007788;">odd</span> th,
table tr.<span style="color: #007788;">odd</span> td <span style="color: #008000;">&#123;</span>background<span style="color: #008080;">:</span> <span style="color: #339900;">#fff; }</span>
&nbsp;
tr td.<span style="color: #007788;">tablesubheader</span>,
tr.<span style="color: #007788;">odd</span> td.<span style="color: #007788;">tablesubheader</span>,
tr.<span style="color: #007788;">even</span> td.<span style="color: #007788;">tablesubheader</span>  <span style="color: #008000;">&#123;</span>
	background<span style="color: #008080;">:</span> <span style="color: #339900;">#dadada; </span>
	border<span style="color: #008080;">:</span> 1px solid <span style="color: #339900;">#dadada;</span>
	color<span style="color: #008080;">:</span> <span style="color: #339900;">#000;</span>
<span style="color: #008000;">&#125;</span>
&nbsp;
.<span style="color: #007788;">wp</span><span style="color: #000040;">-</span>pagenavi<span style="color: #008000;">&#123;</span>
	margin<span style="color: #000040;">-</span>bottom<span style="color: #008080;">:</span> 10px<span style="color: #008080;">;</span>
<span style="color: #008000;">&#125;</span>
&nbsp;
.<span style="color: #007788;">wp</span><span style="color: #000040;">-</span>pagenavi a, .<span style="color: #007788;">wp</span><span style="color: #000040;">-</span>pagenavi a<span style="color: #008080;">:</span>link <span style="color: #008000;">&#123;</span>
	padding<span style="color: #008080;">:</span> 4px 6px 4px 6px<span style="color: #008080;">;</span> 
	margin<span style="color: #008080;">:</span> 2px<span style="color: #008080;">;</span>
	text<span style="color: #000040;">-</span>decoration<span style="color: #008080;">:</span> none<span style="color: #008080;">;</span>
	border<span style="color: #008080;">:</span> 1px solid <span style="color: #339900;">#e7e7e7;</span>
	color<span style="color: #008080;">:</span> <span style="color: #339900;">#1d8dcb;</span>
	background<span style="color: #000040;">-</span>color<span style="color: #008080;">:</span> <span style="color: #339900;">#FFFFFF;	</span>
<span style="color: #008000;">&#125;</span>
.<span style="color: #007788;">wp</span><span style="color: #000040;">-</span>pagenavi a<span style="color: #008080;">:</span>visited <span style="color: #008000;">&#123;</span>
	padding<span style="color: #008080;">:</span> 4px 6px 4px 6px<span style="color: #008080;">;</span> 
	margin<span style="color: #008080;">:</span> 2px<span style="color: #008080;">;</span>
	text<span style="color: #000040;">-</span>decoration<span style="color: #008080;">:</span> none<span style="color: #008080;">;</span>
	border<span style="color: #008080;">:</span> 1px solid <span style="color: #339900;">#e7e7e7;</span>
	color<span style="color: #008080;">:</span> <span style="color: #339900;">#1d8dcb;</span>
	background<span style="color: #000040;">-</span>color<span style="color: #008080;">:</span> <span style="color: #339900;">#FFFFFF;	</span>
<span style="color: #008000;">&#125;</span>
.<span style="color: #007788;">wp</span><span style="color: #000040;">-</span>pagenavi a<span style="color: #008080;">:</span>hover <span style="color: #008000;">&#123;</span>	
	border<span style="color: #008080;">:</span> 1px solid <span style="color: #339900;">#3b3b3b;</span>
	color<span style="color: #008080;">:</span> <span style="color: #339900;">#3b3b3b;</span>
	background<span style="color: #000040;">-</span>color<span style="color: #008080;">:</span> <span style="color: #339900;">#FFFFFF;</span>
<span style="color: #008000;">&#125;</span>
.<span style="color: #007788;">wp</span><span style="color: #000040;">-</span>pagenavi a<span style="color: #008080;">:</span>active <span style="color: #008000;">&#123;</span>
	padding<span style="color: #008080;">:</span> 4px 6px 4px 6px<span style="color: #008080;">;</span> 
	margin<span style="color: #008080;">:</span> 2px<span style="color: #008080;">;</span>
	text<span style="color: #000040;">-</span>decoration<span style="color: #008080;">:</span> none<span style="color: #008080;">;</span>
	border<span style="color: #008080;">:</span> 1px solid <span style="color: #339900;">#e7e7e7;</span>
	color<span style="color: #008080;">:</span> <span style="color: #339900;">#e56100;</span>
	background<span style="color: #000040;">-</span>color<span style="color: #008080;">:</span> <span style="color: #339900;">#FFFFFF;	</span>
<span style="color: #008000;">&#125;</span>
.<span style="color: #007788;">wp</span><span style="color: #000040;">-</span>pagenavi span.<span style="color: #007788;">pages</span> <span style="color: #008000;">&#123;</span>
	padding<span style="color: #008080;">:</span> 4px 6px 4px 6px<span style="color: #008080;">;</span> 
	margin<span style="color: #008080;">:</span> 2px 2px 2px 2px<span style="color: #008080;">;</span>
	color<span style="color: #008080;">:</span> inherit<span style="color: #008080;">;</span>
	border<span style="color: #008080;">:</span> 1px solid <span style="color: #339900;">#e7e7e7;</span>
	background<span style="color: #000040;">-</span>color<span style="color: #008080;">:</span> <span style="color: #339900;">#FFFFFF;</span>
<span style="color: #008000;">&#125;</span>
.<span style="color: #007788;">wp</span><span style="color: #000040;">-</span>pagenavi span.<span style="color: #007788;">current</span> <span style="color: #008000;">&#123;</span>
	padding<span style="color: #008080;">:</span> 4px 6px 4px 6px<span style="color: #008080;">;</span> 
	margin<span style="color: #008080;">:</span> 2px<span style="color: #008080;">;</span>
	font<span style="color: #000040;">-</span>weight<span style="color: #008080;">:</span> bold<span style="color: #008080;">;</span>
	border<span style="color: #008080;">:</span> 1px solid <span style="color: #339900;">#e7e7e7;</span>
	color<span style="color: #008080;">:</span> inherit<span style="color: #008080;">;</span>
	background<span style="color: #000040;">-</span>color<span style="color: #008080;">:</span> <span style="color: #339900;">#FFFFFF;</span>
<span style="color: #008000;">&#125;</span>
.<span style="color: #007788;">wp</span><span style="color: #000040;">-</span>pagenavi span.<span style="color: #007788;">extend</span> <span style="color: #008000;">&#123;</span>
	padding<span style="color: #008080;">:</span> 4px 6px 4px 6px<span style="color: #008080;">;</span> 
	margin<span style="color: #008080;">:</span> 2px<span style="color: #008080;">;</span>	
	border<span style="color: #008080;">:</span> 1px solid <span style="color: #339900;">#e7e7e7;</span>
	color<span style="color: #008080;">:</span> inherit<span style="color: #008080;">;</span>
	background<span style="color: #000040;">-</span>color<span style="color: #008080;">:</span> <span style="color: #339900;">#FFFFFF;</span>
<span style="color: #008000;">&#125;</span>
&nbsp;
.<span style="color: #007788;">pagenumbers</span><span style="color: #008000;">&#123;</span>
	margin<span style="color: #000040;">-</span>bottom<span style="color: #008080;">:</span> 10px<span style="color: #008080;">;</span>
<span style="color: #008000;">&#125;</span>
&nbsp;
.<span style="color: #007788;">pagenumbers</span> a, .<span style="color: #007788;">pagenumbers</span> a<span style="color: #008080;">:</span>link <span style="color: #008000;">&#123;</span>
	padding<span style="color: #008080;">:</span> 4px 6px 4px 6px<span style="color: #008080;">;</span> 
	margin<span style="color: #008080;">:</span> 2px<span style="color: #008080;">;</span>
	text<span style="color: #000040;">-</span>decoration<span style="color: #008080;">:</span> none<span style="color: #008080;">;</span>
	border<span style="color: #008080;">:</span> 1px solid <span style="color: #339900;">#e7e7e7;</span>
	color<span style="color: #008080;">:</span> <span style="color: #339900;">#1d8dcb;</span>
	background<span style="color: #000040;">-</span>color<span style="color: #008080;">:</span> <span style="color: #339900;">#FFFFFF;	</span>
<span style="color: #008000;">&#125;</span>
.<span style="color: #007788;">pagenumbers</span> a<span style="color: #008080;">:</span>visited <span style="color: #008000;">&#123;</span>
	padding<span style="color: #008080;">:</span> 4px 6px 4px 6px<span style="color: #008080;">;</span> 
	margin<span style="color: #008080;">:</span> 2px<span style="color: #008080;">;</span>
	text<span style="color: #000040;">-</span>decoration<span style="color: #008080;">:</span> none<span style="color: #008080;">;</span>
	border<span style="color: #008080;">:</span> 1px solid <span style="color: #339900;">#e7e7e7;</span>
	color<span style="color: #008080;">:</span> <span style="color: #339900;">#1d8dcb;</span>
	background<span style="color: #000040;">-</span>color<span style="color: #008080;">:</span> <span style="color: #339900;">#FFFFFF;	</span>
<span style="color: #008000;">&#125;</span>
.<span style="color: #007788;">pagenumbers</span> a<span style="color: #008080;">:</span>hover <span style="color: #008000;">&#123;</span>	
	border<span style="color: #008080;">:</span> 1px solid <span style="color: #339900;">#3b3b3b;</span>
	color<span style="color: #008080;">:</span> <span style="color: #339900;">#3b3b3b;</span>
	background<span style="color: #000040;">-</span>color<span style="color: #008080;">:</span> <span style="color: #339900;">#FFFFFF;</span>
<span style="color: #008000;">&#125;</span>
.<span style="color: #007788;">pagenumbers</span> a<span style="color: #008080;">:</span>active <span style="color: #008000;">&#123;</span>
	padding<span style="color: #008080;">:</span> 4px 6px 4px 6px<span style="color: #008080;">;</span> 
	margin<span style="color: #008080;">:</span> 2px<span style="color: #008080;">;</span>
	text<span style="color: #000040;">-</span>decoration<span style="color: #008080;">:</span> none<span style="color: #008080;">;</span>
	border<span style="color: #008080;">:</span> 1px solid <span style="color: #339900;">#e7e7e7;</span>
	color<span style="color: #008080;">:</span> <span style="color: #339900;">#e56100;</span>
	background<span style="color: #000040;">-</span>color<span style="color: #008080;">:</span> <span style="color: #339900;">#FFFFFF;	</span>
<span style="color: #008000;">&#125;</span></pre></div></div>




<div class="toc-page-link">Next page: <a href="http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/2/" class="liinternal">&ldquo;GrungeMag&rdquo;</a></div>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.matthiaspospiech.de/blog/2009/10/25/theme-modifications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Website Update</title>
		<link>http://www.matthiaspospiech.de/blog/2009/09/27/website-update/</link>
		<comments>http://www.matthiaspospiech.de/blog/2009/09/27/website-update/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 18:59:21 +0000</pubDate>
		<dc:creator>pospiech</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://test.pospiech.eu/?p=428</guid>
		<description><![CDATA[This website was largely reworked. The base is now wordpress in Version 2.8. Several new functionality was added, the most visible one is the display of related posts. The content was checked for lost links and some minor changes have been done.

However, I have a problem to decide which theme to use. In the sidebar [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>This website was largely reworked. The base is now wordpress in Version 2.8. Several new functionality was added, the most visible one is the display of related posts. The content was checked for lost links and some minor changes have been done.</p>

<p>However, I have a problem to decide which theme to use. In the sidebar you find a theme chooser and a poll. If you some time please check the different themes and make a vote.</p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.matthiaspospiech.de/blog/2009/09/27/website-update/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wordpress plugin memory usage</title>
		<link>http://www.matthiaspospiech.de/blog/2009/09/27/wordpress-plugin-memory-usage/</link>
		<comments>http://www.matthiaspospiech.de/blog/2009/09/27/wordpress-plugin-memory-usage/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 08:18:20 +0000</pubDate>
		<dc:creator>pospiech</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://www.local-matthiaspospiech.de/?p=268</guid>
		<description><![CDATA[memory measurement
I disabled all plugins and then activated them one by one. In between I measured the memory usage that php reports and calculated the difference. This may not be really accurate, but I only want to be precise up to 0.1 MB. 

memory monsters (1.0 &#8211; 10 MB)

	Events Calendar (3.4 MB)
	WP Security Scan (2.8 [...]


Related posts:<ol><li><a href='http://www.matthiaspospiech.de/blog/2007/12/04/development-of-a-plugin-for-wordpress/' rel='bookmark' title='Permanent Link: Development of a Plugin for Wordpress'>Development of a Plugin for Wordpress</a></li>
<li><a href='http://www.matthiaspospiech.de/blog/2007/11/12/wordpress-plugins/' rel='bookmark' title='Permanent Link: Wordpress Plugins for Wordpress 2.3.1'>Wordpress Plugins for Wordpress 2.3.1</a></li>
<li><a href='http://www.matthiaspospiech.de/blog/2009/08/12/wordpress-2-8-plugins/' rel='bookmark' title='Permanent Link: Wordpress 2.8 Plugins'>Wordpress 2.8 Plugins</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h3 id="toc-memory-measurement">memory measurement</h3>
<p>I disabled all plugins and then activated them one by one. In between I measured the memory usage that php reports and calculated the difference. This may not be really accurate, but I only want to be precise up to 0.1 MB. </p>

<h3 id="toc-memory-monsters-1-0-10-mb">memory monsters (1.0 &#8211; 10 MB)</h3>
<ul>
	<li>Events Calendar (3.4 MB)</li>
	<li>WP Security Scan (2.8 MB)</li>
	<li>All in One SEO Pack (2.3 MB)</li>
	<li>NextGEN Gallery (2.1 MB)</li>
	<li>WP-SpamFree (1.4 MB)</li>
	<li>Simple Tags (1.1 MB</li>
	<li>Wordpress Download Monitor (1.1 MB)</li>
	<li>Popular Posts (1.0 MB)</li>
	<li>Subscribe2 (1.0 MB)</li>
	<li>Advertising Manager (1.0 MB)</li>
</ul>

<h3 id="toc-little-memory-monsters-0-4-1-0-mb">little memory monsters (0.4 &#8211; 1.0 MB)</h3>
<ul>
	<li>Contact Form 7 (0.8 MB)</li>
	<li>WP-Syntax (0.78 MB)</li>
	<li>Redirection (0.76 MB)</li>
	<li>WP-Print (0.69 MB)</li>
	<li>Adminimize (0.68 MB)</li>
	<li>StatPress (0.61 MB)</li>
	<li>Breadcrumb NavXT (0.6 Mb)</li>
	<li>NextGEN FlashViewer (0.53 Mb)</li>
	<li>Yet Another Related Posts Plugin (0.48 MB)</li>
	<li>One Click Plugin Updater (0.43 MB)</li>
	<li>WP Super Cache (0.41 MB)</li>
</ul>

<p>Note that this was tested on my lokal 32bit machine. On my webserver the total memory used increased from 40 MB to 54 MB for the same configuration.</p>

<p>Related posts:<ol><li><a href='http://www.matthiaspospiech.de/blog/2007/12/04/development-of-a-plugin-for-wordpress/' rel='bookmark' title='Permanent Link: Development of a Plugin for Wordpress'>Development of a Plugin for Wordpress</a></li>
<li><a href='http://www.matthiaspospiech.de/blog/2007/11/12/wordpress-plugins/' rel='bookmark' title='Permanent Link: Wordpress Plugins for Wordpress 2.3.1'>Wordpress Plugins for Wordpress 2.3.1</a></li>
<li><a href='http://www.matthiaspospiech.de/blog/2009/08/12/wordpress-2-8-plugins/' rel='bookmark' title='Permanent Link: Wordpress 2.8 Plugins'>Wordpress 2.8 Plugins</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.matthiaspospiech.de/blog/2009/09/27/wordpress-plugin-memory-usage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress 2.8 Plugins</title>
		<link>http://www.matthiaspospiech.de/blog/2009/08/12/wordpress-2-8-plugins/</link>
		<comments>http://www.matthiaspospiech.de/blog/2009/08/12/wordpress-2-8-plugins/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 18:53:36 +0000</pubDate>
		<dc:creator>pospiech</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[Plugins]]></category>

		<guid isPermaLink="false">http://www.local-matthiaspospiech.de/?p=203</guid>
		<description><![CDATA[In the following I present the plugins I tested for my new Wordpress Installation. I initially started with 2.7.x and hope to finish with 2.8.x. In total in tested more the 3 times more plugins than presented here. So many because for every task there are typically about 10 plugins which could be used and [...]


Related posts:<ol><li><a href='http://www.matthiaspospiech.de/blog/2007/05/10/wordpress-plugins-for-wp-21x/' rel='bookmark' title='Permanent Link: Wordpress Plugins for WP 2.1.x'>Wordpress Plugins for WP 2.1.x</a></li>
<li><a href='http://www.matthiaspospiech.de/blog/2007/11/12/wordpress-plugins/' rel='bookmark' title='Permanent Link: Wordpress Plugins for Wordpress 2.3.1'>Wordpress Plugins for Wordpress 2.3.1</a></li>
<li><a href='http://www.matthiaspospiech.de/blog/2007/12/04/development-of-a-plugin-for-wordpress/' rel='bookmark' title='Permanent Link: Development of a Plugin for Wordpress'>Development of a Plugin for Wordpress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>In the following I present the plugins I tested for my new Wordpress Installation. I initially started with 2.7.x and hope to finish with 2.8.x. In total in tested more the 3 times more plugins than presented here. So many because for every task there are typically about 10 plugins which could be used and additionally because there are new plugins which provide new functionality which I wanted to test. Unfortunately most plugins are either not compatible with the current WP or do not satisfy me. Most frustrating is however that many plugins are buggy itself or with other plugins. To find out the error caused by 2 of 100 plugins can take hours.</p>
 
<p>To summarize: Choosing plugins is difficult erroneous and highly frustrating. In total I spend something like 40-80 hours only to test and realise a bug free collection of plugins.</p>

<p>Why did I put this long article together? &#8211; Because I can work on the new website only on weekends and if I have enough free time. Since I forget what plugins are usefull and why they did not work I had to make a site to remind me. With the help of this information it is now much easier for me, and maybe others, to start a new website.</p>

<p>Recommended plugins are marked with &#8220;*&#8221;, so you have an idea what I chose in the end for my installation.</p>

<h3 id="toc-security">Security</h3>
<ul>
	<li>* <a href="http://wordpress.org/extend/plugins/wp-security-scan/installation/" class="liwp">WP Security Scan</a>
<blockquote>Scans your WordPress installation for security vulnerabilities and suggests corrective actions. (Only activate for scans)</blockquote></li>
	<li>* <a href="http://wordpress.org/extend/plugins/exploit-scanner/" class="liwp">WordPress Exploit Scanner</a>
<blockquote>This plugin searches the files and database of your website for signs of suspicious activity. </blockquote>	</li>
	<li>* <a href="http://wordpress.org/extend/plugins/tac/" class="liwp">TAC (Theme Authenticity Checker)</a>
<blockquote>TAC scans all of your theme files for potentially malicious and unwanted code. </blockquote></li>
</ul>

<h3 id="toc-access-restriction">Access Restriction</h3>
<ul>
	<li><a href="http://wordpress.org/extend/plugins/pagerestrict/" class="liwp">Page Restrict</a>
<blockquote>This plugin will allow you to restrict all, none, or certain pages to logged in users only. </blockquote></li>
	<li><a href="http://wordpress.org/extend/plugins/hidden-content/" class="liwp">Hidden Content</a>
<blockquote>Some blocks of the text can be shown/hidden for bots, logged-in users or all visitors (in posts, pages and comments)</blockquote></li>
	<li><a href="http://wordpress.org/extend/plugins/members-only/" class="liwp">Members Only</a>
<blockquote>plugin that allows you to make your blog only viewable to visitors that are logged in</blockquote></li>
	<li><a href="http://wordpress.org/extend/plugins/wp-sentry/" class="liwp">WP Sentry</a>
<blockquote>This is a simple plugin to allow for access-restricted posting, allowing bloggers to discuss sensitive subjects without Google or the world finding the post.</blockquote>
	Access to the private marked pages granted on users/group based settings.</li>
	<li><a href="http://www.im-web-gefunden.de/wordpress-plugins/role-manager/" class="liexternal">Role Manager</a>
<blockquote>This Plugin allows you to define and manage multiple subscriber profiles &#8211; called Roles and their Capabilities. Also you can create new Roles and Capabilities.</blockquote></li>
</ul>

<div class="toc-page-link">Next page: <a href="http://www.matthiaspospiech.de/blog/2009/08/12/wordpress-2-8-plugins/2/" class="liinternal">&ldquo;Admin Customizations&rdquo;</a></div>

<p>Related posts:<ol><li><a href='http://www.matthiaspospiech.de/blog/2007/05/10/wordpress-plugins-for-wp-21x/' rel='bookmark' title='Permanent Link: Wordpress Plugins for WP 2.1.x'>Wordpress Plugins for WP 2.1.x</a></li>
<li><a href='http://www.matthiaspospiech.de/blog/2007/11/12/wordpress-plugins/' rel='bookmark' title='Permanent Link: Wordpress Plugins for Wordpress 2.3.1'>Wordpress Plugins for Wordpress 2.3.1</a></li>
<li><a href='http://www.matthiaspospiech.de/blog/2007/12/04/development-of-a-plugin-for-wordpress/' rel='bookmark' title='Permanent Link: Development of a Plugin for Wordpress'>Development of a Plugin for Wordpress</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.matthiaspospiech.de/blog/2009/08/12/wordpress-2-8-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brutblatt Bl&#252;ten</title>
		<link>http://www.matthiaspospiech.de/blog/2009/08/02/brutblatt-blueten/</link>
		<comments>http://www.matthiaspospiech.de/blog/2009/08/02/brutblatt-blueten/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 20:42:46 +0000</pubDate>
		<dc:creator>pospiech</dc:creator>
				<category><![CDATA[Blumen]]></category>

		<guid isPermaLink="false">http://www.matthiaspospiech.de/blog/2009/08/02/brutblatt-blueten/</guid>
		<description><![CDATA[Im Mai hat unser Brutblatt gebl&#252;ht. Er war inzwischen (mit Topf) ca. 1,80 Meter hoch und konnte nur noch mit einer Stange und an die Wand gelehnt stehen. Leider wurde die Pflanze auch unglaublich h&#228;&#223;lich. Die Bl&#228;tter unten sind alle abgefallen, so dass erst ab 1,2 Meter H&#246;he wieder Bl&#228;tter zu sehen waren. Vermutlich lag [...]


Related posts:<ol><li><a href='http://www.matthiaspospiech.de/blog/2008/07/26/brutblatt-wird-riesig/' rel='bookmark' title='Permanent Link: Brutblatt wird riesig'>Brutblatt wird riesig</a></li>
<li><a href='http://www.matthiaspospiech.de/blog/2007/09/28/buntnesseln-wachsen-schnell/' rel='bookmark' title='Permanent Link: Buntnesseln wachsen schnell'>Buntnesseln wachsen schnell</a></li>
<li><a href='http://www.matthiaspospiech.de/blog/2007/07/28/buntnesseln/' rel='bookmark' title='Permanent Link: Buntnesseln'>Buntnesseln</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Im Mai hat unser Brutblatt gebl&#252;ht. Er war inzwischen (mit Topf) ca. 1,80 Meter hoch und konnte nur noch mit einer Stange und an die Wand gelehnt stehen. Leider wurde die Pflanze auch unglaublich h&#228;&#223;lich. Die Bl&#228;tter unten sind alle abgefallen, so dass erst ab 1,2 Meter H&#246;he wieder Bl&#228;tter zu sehen waren. Vermutlich lag es daran, dass die Pflanze auf dem Boden stand und unten kein Licht hin kam. Eigentlich wollten wir sie entsorgen, aber da sie noch angefangen hat zu bl&#252;hen, haben wir das noch abgewartet. Hier sind die Bilder der Bl&#252;ten:</p>
<div class="ngg-galleryoverview" id="ngg-gallery-24-202">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-156" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/brutblattblueten/web.brutblatt01.jpg" title="Von unten gesehen. Kaum noch Blätter aber 1,8 Meter hoch." class="shutterset_set_24" >
								<img title="web.brutblatt01.jpg" alt="web.brutblatt01.jpg" src="http://www.matthiaspospiech.de/files/gallery/brutblattblueten/thumbs/thumbs_web.brutblatt01.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-157" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/brutblattblueten/web.brutblatt02.jpg" title="Teil der noch Blätter hat, sieht aber nicht mehr so schön aus." class="shutterset_set_24" >
								<img title="web.brutblatt02.jpg" alt="web.brutblatt02.jpg" src="http://www.matthiaspospiech.de/files/gallery/brutblattblueten/thumbs/thumbs_web.brutblatt02.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-159" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/brutblattblueten/web.brutblatt04.jpg" title="Brutblatt Blüten" class="shutterset_set_24" >
								<img title="web.brutblatt04.jpg" alt="web.brutblatt04.jpg" src="http://www.matthiaspospiech.de/files/gallery/brutblattblueten/thumbs/thumbs_web.brutblatt04.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-160" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/brutblattblueten/web.brutblatt05.jpg" title="Brutblatt Blüten" class="shutterset_set_24" >
								<img title="web.brutblatt05.jpg" alt="web.brutblatt05.jpg" src="http://www.matthiaspospiech.de/files/gallery/brutblattblueten/thumbs/thumbs_web.brutblatt05.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-161" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/brutblattblueten/webbrutblatt03.jpg" title="Brutblatt Blüten" class="shutterset_set_24" >
								<img title="webbrutblatt03.jpg" alt="webbrutblatt03.jpg" src="http://www.matthiaspospiech.de/files/gallery/brutblattblueten/thumbs/thumbs_webbrutblatt03.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>



<p>Related posts:<ol><li><a href='http://www.matthiaspospiech.de/blog/2008/07/26/brutblatt-wird-riesig/' rel='bookmark' title='Permanent Link: Brutblatt wird riesig'>Brutblatt wird riesig</a></li>
<li><a href='http://www.matthiaspospiech.de/blog/2007/09/28/buntnesseln-wachsen-schnell/' rel='bookmark' title='Permanent Link: Buntnesseln wachsen schnell'>Buntnesseln wachsen schnell</a></li>
<li><a href='http://www.matthiaspospiech.de/blog/2007/07/28/buntnesseln/' rel='bookmark' title='Permanent Link: Buntnesseln'>Buntnesseln</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.matthiaspospiech.de/blog/2009/08/02/brutblatt-blueten/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Tanzschritte</title>
		<link>http://www.matthiaspospiech.de/blog/2009/08/02/tanzschritte/</link>
		<comments>http://www.matthiaspospiech.de/blog/2009/08/02/tanzschritte/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 19:23:19 +0000</pubDate>
		<dc:creator>pospiech</dc:creator>
				<category><![CDATA[Tanzen]]></category>

		<guid isPermaLink="false">http://www.matthiaspospiech.de/blog/2009/08/02/tanzschritte/</guid>
		<description><![CDATA[Gerade gefunden, eine Seite mit vielen Tanzschritten in Bildern: www.olivergross.de/tanzen/.

Was mir aber noch fehlt ist ein Buch das m&#246;glichst vollst&#228;ndig mit Text und Bildern die Schritte in allen Standard und Latein T&#228;nzen erkl&#228;rt. Wir haben ein solches Buch, aber das hat nur f&#252;r die H&#228;lfte der Schritte auch Bilder und uns fehlen fast immer die [...]


Related posts:<ol><li><a href='http://www.matthiaspospiech.de/blog/2006/08/14/schlechte-software-bei-cewe-fotobuch/' rel='bookmark' title='Permanent Link: Schlechte Software bei Cewe Fotobuch'>Schlechte Software bei Cewe Fotobuch</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Gerade gefunden, eine Seite mit vielen Tanzschritten in Bildern: <a href="http://www.olivergross.de/tanzen/" class="liexternal">www.olivergross.de/tanzen/</a>.</p>

<p>Was mir aber noch fehlt ist ein Buch das m&#246;glichst vollst&#228;ndig mit Text und Bildern die Schritte in allen Standard und Latein T&#228;nzen erkl&#228;rt. Wir haben ein solches Buch, aber das hat nur f&#252;r die H&#228;lfte der Schritte auch Bilder und uns fehlen fast immer die Figuren die wir suchen.</p>

<p>Related posts:<ol><li><a href='http://www.matthiaspospiech.de/blog/2006/08/14/schlechte-software-bei-cewe-fotobuch/' rel='bookmark' title='Permanent Link: Schlechte Software bei Cewe Fotobuch'>Schlechte Software bei Cewe Fotobuch</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.matthiaspospiech.de/blog/2009/08/02/tanzschritte/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Holidays on Madeira</title>
		<link>http://www.matthiaspospiech.de/blog/2009/08/01/holidays-on-madeira/</link>
		<comments>http://www.matthiaspospiech.de/blog/2009/08/01/holidays-on-madeira/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 20:22:12 +0000</pubDate>
		<dc:creator>pospiech</dc:creator>
				<category><![CDATA[Holidays]]></category>
		<category><![CDATA[flowers]]></category>
		<category><![CDATA[Madeira]]></category>

		<guid isPermaLink="false">http://www.matthiaspospiech.de/blog/2009/08/01/holidays-on-madeira/</guid>
		<description><![CDATA[Reasons to go to Madeira
Maybe you find something that is of special interest for you on this site. It is about comfortable weather, wonderfull walking routes, very good wine and food. Just keep on reading&#8230;

Hotel
We have been in the  Quinta Bela São Tiago Hotel. It is an 4 star hotel with every comfort we [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<h3 id="toc-reasons-to-go-to-madeira">Reasons to go to Madeira</h3>
<p>Maybe you find something that is of special interest for you on this site. It is about comfortable weather, wonderfull walking routes, very good wine and food. Just keep on reading&#8230;</p>

<h3 id="toc-hotel">Hotel</h3>
<p>We have been in the  <a href="http://www.quintabelasaotiago.com" class="liexternal">Quinta Bela São Tiago Hotel</a>. It is an 4 star hotel with every comfort we would expect. Only the restaurant of the hotel was too expensive, so that we always went to the restaurants near by. But if you are looking for a really good hotel in the old town of Funchal we can really recommend it.</p>

<h3 id="toc-funchal">Funchal</h3>
<h4 id="toc-old-town">Old Town</h4>
<p>Funchal (the central town) has three parts. In the west the large and really not attractive hotel zone. In the center the harbour with the town center and shopping area above. This part includes all main buildings around the cathedral. And eastern to the center is the old town. Old however does not imply beautiful old houses. It is the old living area of poor fishers and has small houses with narrow stone roads. It is however very attractive because of its cafes, bars and selection of great restaurants. It is called old town, because this part was the original core of the town, but the center moved to the area around the catherdral already 600 years in the past.</p>
<div class="ngg-galleryoverview" id="ngg-gallery-18-200">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-88" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiraoldtown/FunchalOldTown01.jpg" title="Forte de Sao Tiago" class="shutterset_set_18" >
								<img title="FunchalOldTown01.jpg" alt="FunchalOldTown01.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiraoldtown/thumbs/thumbs_FunchalOldTown01.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-89" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiraoldtown/FunchalOldTown02.jpg" title="Rua de Santa Maria" class="shutterset_set_18" >
								<img title="FunchalOldTown02.jpg" alt="FunchalOldTown02.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiraoldtown/thumbs/thumbs_FunchalOldTown02.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-90" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiraoldtown/FunchalOldTown03.jpg" title="Small water across Rua de Santa Maria" class="shutterset_set_18" >
								<img title="FunchalOldTown03.jpg" alt="FunchalOldTown03.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiraoldtown/thumbs/thumbs_FunchalOldTown03.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-91" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiraoldtown/FunchalOldTown04.jpg" title="Rua de Santa Maria" class="shutterset_set_18" >
								<img title="FunchalOldTown04.jpg" alt="FunchalOldTown04.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiraoldtown/thumbs/thumbs_FunchalOldTown04.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-92" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiraoldtown/FunchalOldTown05.jpg" title="Rua Dom Carlos (at O Tapassol restaurant)" class="shutterset_set_18" >
								<img title="FunchalOldTown05.jpg" alt="FunchalOldTown05.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiraoldtown/thumbs/thumbs_FunchalOldTown05.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-93" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiraoldtown/FunchalOldTown06.jpg" title="Portao de S. Tiago" class="shutterset_set_18" >
								<img title="FunchalOldTown06.jpg" alt="FunchalOldTown06.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiraoldtown/thumbs/thumbs_FunchalOldTown06.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-94" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiraoldtown/FunchalOldTown07.jpg" title="Portao de S. Tiago" class="shutterset_set_18" >
								<img title="FunchalOldTown07.jpg" alt="FunchalOldTown07.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiraoldtown/thumbs/thumbs_FunchalOldTown07.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-95" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiraoldtown/FunchalOldTown08.jpg" title="Portao de S. Tiago (at restaurant Cidade Velha)" class="shutterset_set_18" >
								<img title="FunchalOldTown08.jpg" alt="FunchalOldTown08.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiraoldtown/thumbs/thumbs_FunchalOldTown08.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-96" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiraoldtown/FunchalOldTown09.jpg" title="Rua de Santa Maria (at restaurant riso)" class="shutterset_set_18" >
								<img title="FunchalOldTown09.jpg" alt="FunchalOldTown09.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiraoldtown/thumbs/thumbs_FunchalOldTown09.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-97" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiraoldtown/FunchalOldTown10.jpg" title="restaurant riso" class="shutterset_set_18" >
								<img title="FunchalOldTown10.jpg" alt="FunchalOldTown10.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiraoldtown/thumbs/thumbs_FunchalOldTown10.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

<span id="more-200"></span>

<h4 id="toc-restaurants">Restaurants</h4>
<p>The old town is famous for its restaurants. Most of them serve similar selections of fish and beef or chicken (there is hardly any pork or sheep). The fish is typically of very high cooking level, but comparable cheap (about 10 Euro). If you find a restaurant that does not serve regional food, such as pizza, chinese or such we can not recommend them. Most pizza we had were not made out of fresh vegetables and not with quailty meat. Also the chinese restaurant was worse than most fast food restaurants we know in Hanover (Germany). </p>

<p>Restaurants we can recommed are </p>
<ul>
	<li><a href="http://www.restaurantetapassol.com/" class="liexternal">O Tapassol</a></li>
	<li><a href="http://www.restaurantelejardin.com/" class="liexternal">Le Jardim</a> (next to O Tapassol, the owner is the same but the cook and citchen is different)</li>
	<li>Cidade Velha</li>
	<li>Embaixador Madeirense</li>
</ul>
<p>note that we did not try every restaurant, there are too many.</p>

<p>If you want to go out really good, and can afford it, we highly recommend <a href="http://www.riso-fx.com/" class="liexternal">Riso Risottoria del Mundo</a>. It offers very good interpretations of regional and international food all comming with some sort of rice. Not only the food is very good, but also the location and the view!</p>

<h4 id="toc-funchal-market-mercado-dos-lavradores">Funchal Market &#8211; Mercado dos Lavradores</h4>
<p>This market offers all the fruits you can find on the island. If you want to go for longer walks it is good place to take some &#8217;snacks&#8217; with you. And you can try fruits you did not know before.</p>
<div class="ngg-galleryoverview" id="ngg-gallery-19-200">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-98" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/funchalmarket/FunchalMarket01.jpg" title="Fish market" class="shutterset_set_19" >
								<img title="FunchalMarket01.jpg" alt="FunchalMarket01.jpg" src="http://www.matthiaspospiech.de/files/gallery/funchalmarket/thumbs/thumbs_FunchalMarket01.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-99" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/funchalmarket/FunchalMarket02.jpg" title="fruits and fowers" class="shutterset_set_19" >
								<img title="FunchalMarket02.jpg" alt="FunchalMarket02.jpg" src="http://www.matthiaspospiech.de/files/gallery/funchalmarket/thumbs/thumbs_FunchalMarket02.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-100" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/funchalmarket/FunchalMarket03.jpg" title="fruits and fowers" class="shutterset_set_19" >
								<img title="FunchalMarket03.jpg" alt="FunchalMarket03.jpg" src="http://www.matthiaspospiech.de/files/gallery/funchalmarket/thumbs/thumbs_FunchalMarket03.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

<h3 id="toc-madeira-wine">Madeira Wine</h3>
<p>No question, Madeira offers excellent wines. If you want to buy one, it should be 10 years old. These have a much more rich taste than the 5 years or the cheap ones with 3 years. Also do not consider to buy them at home via web. That can cost up to twice of the money you have to spent in Madeira (for example a 10 year Bual costs 22 Euro in Madeira, but 45 Euro in Germany).</p>

<h3 id="toc-gardens">Gardens</h3>
<p>We visited three gardens. The <a href="http://www.madeirabotanicalgarden.com/" class="liexternal">Jardim Botanico</a>, <a href="http://www.montepalace.com/" class="liexternal">Monte Palace Tropical Garden</a> and the <a href="http://www.palheiroestate.com/lang-en/gardens/welcome.html" class="liexternal">Palheiro Gardens</a>.</p>
<div class="ngg-galleryoverview" id="ngg-gallery-17-200">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-73" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiragardens/BotanicalGarden01.jpg" title="Botanical Garden" class="shutterset_set_17" >
								<img title="BotanicalGarden01.jpg" alt="BotanicalGarden01.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiragardens/thumbs/thumbs_BotanicalGarden01.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-74" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiragardens/BotanicalGarden02.jpg" title="Botanical Garden" class="shutterset_set_17" >
								<img title="BotanicalGarden02.jpg" alt="BotanicalGarden02.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiragardens/thumbs/thumbs_BotanicalGarden02.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-75" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiragardens/BotanicalGarden03.jpg" title="Botanical Garden" class="shutterset_set_17" >
								<img title="BotanicalGarden03.jpg" alt="BotanicalGarden03.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiragardens/thumbs/thumbs_BotanicalGarden03.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-76" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiragardens/BotanicalGarden04.jpg" title="Botanical Garden" class="shutterset_set_17" >
								<img title="BotanicalGarden04.jpg" alt="BotanicalGarden04.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiragardens/thumbs/thumbs_BotanicalGarden04.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-77" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiragardens/BotanicalGarden05.jpg" title="Botanical Garden" class="shutterset_set_17" >
								<img title="BotanicalGarden05.jpg" alt="BotanicalGarden05.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiragardens/thumbs/thumbs_BotanicalGarden05.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-78" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiragardens/MonteGarden01.jpg" title="Monte Palace Garden" class="shutterset_set_17" >
								<img title="MonteGarden01.jpg" alt="MonteGarden01.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiragardens/thumbs/thumbs_MonteGarden01.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-79" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiragardens/MonteGarden02.jpg" title="Monte Palace Garden" class="shutterset_set_17" >
								<img title="MonteGarden02.jpg" alt="MonteGarden02.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiragardens/thumbs/thumbs_MonteGarden02.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-80" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiragardens/MonteGarden03.jpg" title="Monte Palace Garden" class="shutterset_set_17" >
								<img title="MonteGarden03.jpg" alt="MonteGarden03.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiragardens/thumbs/thumbs_MonteGarden03.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-81" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiragardens/MonteGarden04.jpg" title="Monte Palace Garden" class="shutterset_set_17" >
								<img title="MonteGarden04.jpg" alt="MonteGarden04.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiragardens/thumbs/thumbs_MonteGarden04.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-82" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiragardens/MonteGarden05.jpg" title="Monte Palace Garden" class="shutterset_set_17" >
								<img title="MonteGarden05.jpg" alt="MonteGarden05.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiragardens/thumbs/thumbs_MonteGarden05.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-83" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiragardens/PalheiroGarden01.jpg" title="Palheiro Garden" class="shutterset_set_17" >
								<img title="PalheiroGarden01.jpg" alt="PalheiroGarden01.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiragardens/thumbs/thumbs_PalheiroGarden01.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-84" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiragardens/PalheiroGarden02.jpg" title="Palheiro Garden" class="shutterset_set_17" >
								<img title="PalheiroGarden02.jpg" alt="PalheiroGarden02.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiragardens/thumbs/thumbs_PalheiroGarden02.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-85" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiragardens/PalheiroGarden03.jpg" title="Palheiro Garden" class="shutterset_set_17" >
								<img title="PalheiroGarden03.jpg" alt="PalheiroGarden03.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiragardens/thumbs/thumbs_PalheiroGarden03.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-86" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiragardens/PalheiroGarden04.jpg" title="Palheiro Garden" class="shutterset_set_17" >
								<img title="PalheiroGarden04.jpg" alt="PalheiroGarden04.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiragardens/thumbs/thumbs_PalheiroGarden04.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-87" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiragardens/PalheiroGarden05.jpg" title="Palheiro Garden" class="shutterset_set_17" >
								<img title="PalheiroGarden05.jpg" alt="PalheiroGarden05.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiragardens/thumbs/thumbs_PalheiroGarden05.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

<h3 id="toc-walking-tours">Walking tours</h3>
<h4 id="toc-levadas">Levadas</h4>
<p>Madeira is a rock mass that looks out of the water. Therefore all streets are steep and seldom flat. That makes it very difficult to walk on the island &#8211; but the <a href="http://en.wikipedia.org/wiki/Levada" rel="nofollow" class="liwikipedia">Levadas</a> change this completely. The early settlers on the island had the problem that there are many springs of water, but seldom where the farmers have their land. So they created water flows of very small downward slope that collect that water sources and bring it to the farmers. These were mainly build hundret years ago by slaves but most were reworked or new ones created in the last century. Since they need to be maintained regulary they all have walking ways next to the levada. This can nowadays be used to walk around the island.</p>
<div class="ngg-galleryoverview" id="ngg-gallery-22-200">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-144" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/levadawalks/RibeiroFrio03.jpg" title="Ribeiro Frio / Balcoes" class="shutterset_set_22" >
								<img title="RibeiroFrio03.jpg" alt="RibeiroFrio03.jpg" src="http://www.matthiaspospiech.de/files/gallery/levadawalks/thumbs/thumbs_RibeiroFrio03.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-143" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/levadawalks/RibeiroFrio02.jpg" title="Banana-Maracuja at Ribeiro Frio" class="shutterset_set_22" >
								<img title="RibeiroFrio02.jpg" alt="RibeiroFrio02.jpg" src="http://www.matthiaspospiech.de/files/gallery/levadawalks/thumbs/thumbs_RibeiroFrio02.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-142" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/levadawalks/RibeiroFrio01.jpg" title="Ribeiro Frio" class="shutterset_set_22" >
								<img title="RibeiroFrio01.jpg" alt="RibeiroFrio01.jpg" src="http://www.matthiaspospiech.de/files/gallery/levadawalks/thumbs/thumbs_RibeiroFrio01.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-129" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/levadawalks/LevadaDoNorteOst02.jpg" title="Levada do Norte" class="shutterset_set_22" >
								<img title="LevadaDoNorte02.jpg" alt="LevadaDoNorte02.jpg" src="http://www.matthiaspospiech.de/files/gallery/levadawalks/thumbs/thumbs_LevadaDoNorteOst02.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-141" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/levadawalks/Rabacal05.jpg" title="Rabacal waterfall" class="shutterset_set_22" >
								<img title="Rabacal05.jpg" alt="Rabacal05.jpg" src="http://www.matthiaspospiech.de/files/gallery/levadawalks/thumbs/thumbs_Rabacal05.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-140" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/levadawalks/Rabacal04.jpg" title="Rabacal waterfall" class="shutterset_set_22" >
								<img title="Rabacal04.jpg" alt="Rabacal04.jpg" src="http://www.matthiaspospiech.de/files/gallery/levadawalks/thumbs/thumbs_Rabacal04.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-139" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/levadawalks/Rabacal03.jpg" title="Rabacal" class="shutterset_set_22" >
								<img title="Rabacal03.jpg" alt="Rabacal03.jpg" src="http://www.matthiaspospiech.de/files/gallery/levadawalks/thumbs/thumbs_Rabacal03.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-138" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/levadawalks/Rabacal02.jpg" title="Rabacal" class="shutterset_set_22" >
								<img title="Rabacal02.jpg" alt="Rabacal02.jpg" src="http://www.matthiaspospiech.de/files/gallery/levadawalks/thumbs/thumbs_Rabacal02.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-137" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/levadawalks/Rabacal01.jpg" title="Rabacal" class="shutterset_set_22" >
								<img title="Rabacal01.jpg" alt="Rabacal01.jpg" src="http://www.matthiaspospiech.de/files/gallery/levadawalks/thumbs/thumbs_Rabacal01.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-136" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/levadawalks/LevadaDoPaul05.jpg" title="Levada do Paul" class="shutterset_set_22" >
								<img title="LevadaDoPaul05.jpg" alt="LevadaDoPaul05.jpg" src="http://www.matthiaspospiech.de/files/gallery/levadawalks/thumbs/thumbs_LevadaDoPaul05.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-135" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/levadawalks/LevadaDoPaul04.jpg" title="Levada do Paul" class="shutterset_set_22" >
								<img title="LevadaDoPaul04.jpg" alt="LevadaDoPaul04.jpg" src="http://www.matthiaspospiech.de/files/gallery/levadawalks/thumbs/thumbs_LevadaDoPaul04.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-134" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/levadawalks/LevadaDoPaul03.jpg" title="Levada do Paul" class="shutterset_set_22" >
								<img title="LevadaDoPaul03.jpg" alt="LevadaDoPaul03.jpg" src="http://www.matthiaspospiech.de/files/gallery/levadawalks/thumbs/thumbs_LevadaDoPaul03.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-133" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/levadawalks/LevadaDoPaul02.jpg" title="Levada do Paul - Cows walking along the Levada as well." class="shutterset_set_22" >
								<img title="LevadaDoPaul02.jpg" alt="LevadaDoPaul02.jpg" src="http://www.matthiaspospiech.de/files/gallery/levadawalks/thumbs/thumbs_LevadaDoPaul02.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-132" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/levadawalks/LevadaDoPaul01.jpg" title="Levada do Paul" class="shutterset_set_22" >
								<img title="LevadaDoPaul01.jpg" alt="LevadaDoPaul01.jpg" src="http://www.matthiaspospiech.de/files/gallery/levadawalks/thumbs/thumbs_LevadaDoPaul01.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-131" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/levadawalks/LevadaDoNorteOst04.jpg" title="Tunnel at end of Levada do Norte" class="shutterset_set_22" >
								<img title="LevadaDoNorte04.jpg" alt="LevadaDoNorte04.jpg" src="http://www.matthiaspospiech.de/files/gallery/levadawalks/thumbs/thumbs_LevadaDoNorteOst04.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-130" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/levadawalks/LevadaDoNorteOst03.jpg" title="Levada do Norte" class="shutterset_set_22" >
								<img title="LevadaDoNorte03.jpg" alt="LevadaDoNorte03.jpg" src="http://www.matthiaspospiech.de/files/gallery/levadawalks/thumbs/thumbs_LevadaDoNorteOst03.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-128" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/levadawalks/LevadaDoNorteOst01.jpg" title="Levada do Norte" class="shutterset_set_22" >
								<img title="LevadaDoNorte01.jpg" alt="LevadaDoNorte01.jpg" src="http://www.matthiaspospiech.de/files/gallery/levadawalks/thumbs/thumbs_LevadaDoNorteOst01.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-127" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/levadawalks/LevadaDaSerra.jpg" title="Levada da Serra" class="shutterset_set_22" >
								<img title="LevadaDaSerra.jpg" alt="LevadaDaSerra.jpg" src="http://www.matthiaspospiech.de/files/gallery/levadawalks/thumbs/thumbs_LevadaDaSerra.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

<h4 id="toc-high-steeps-or-rough">High, steeps or rough</h4>
<p>Apart from the Levadas there are places to visit which offer a great view over the mountains and you can look hundrets of meters down to the ground. One should therefore be free from giddiness. One has a great view over the mountains from the peak of Pico Ruivo and a nice view down into a valley from Balcoes at Ribeiro Frio and from the cliff Cabo Girao where one can look straigth down to the sea at a high at 560 m. Really nice cliffs in a very rough are can be viewed in the area of Ponta de Sao Lourenco</p>
<div class="ngg-galleryoverview" id="ngg-gallery-23-200">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-146" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/places/CaboGirao01.jpg" title="View down from Cabo Girao" class="shutterset_set_23" >
								<img title="CaboGirao01.jpg" alt="CaboGirao01.jpg" src="http://www.matthiaspospiech.de/files/gallery/places/thumbs/thumbs_CaboGirao01.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-147" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/places/CaboGirao02.jpg" title="View down from Cabo Girao" class="shutterset_set_23" >
								<img title="CaboGirao02.jpg" alt="CaboGirao02.jpg" src="http://www.matthiaspospiech.de/files/gallery/places/thumbs/thumbs_CaboGirao02.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-148" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/places/PicoRuivo01.jpg" title="Pico Ruivo" class="shutterset_set_23" >
								<img title="PicoRuivo01.jpg" alt="PicoRuivo01.jpg" src="http://www.matthiaspospiech.de/files/gallery/places/thumbs/thumbs_PicoRuivo01.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-149" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/places/PicoRuivo02.jpg" title="View towards Pico das Torres" class="shutterset_set_23" >
								<img title="PicoRuivo02.jpg" alt="PicoRuivo02.jpg" src="http://www.matthiaspospiech.de/files/gallery/places/thumbs/thumbs_PicoRuivo02.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-150" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/places/PicoRuivo03.jpg" title="View towards Pico das Torres" class="shutterset_set_23" >
								<img title="PicoRuivo03.jpg" alt="PicoRuivo03.jpg" src="http://www.matthiaspospiech.de/files/gallery/places/thumbs/thumbs_PicoRuivo03.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-151" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/places/PicoRuivo04.jpg" title="View from peak of Pico Ruivo" class="shutterset_set_23" >
								<img title="PicoRuivo04.jpg" alt="PicoRuivo04.jpg" src="http://www.matthiaspospiech.de/files/gallery/places/thumbs/thumbs_PicoRuivo04.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-152" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/places/PicoRuivo05.jpg" title="View from peak of Pico Ruivo" class="shutterset_set_23" >
								<img title="PicoRuivo05.jpg" alt="PicoRuivo05.jpg" src="http://www.matthiaspospiech.de/files/gallery/places/thumbs/thumbs_PicoRuivo05.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-153" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/places/PontadeSaoLourenco01.jpg" title="Ponte de Sao Lourenco" class="shutterset_set_23" >
								<img title="PontadeSaoLourenco01.jpg" alt="PontadeSaoLourenco01.jpg" src="http://www.matthiaspospiech.de/files/gallery/places/thumbs/thumbs_PontadeSaoLourenco01.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-154" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/places/PontadeSaoLourenco02.jpg" title="Ponte de Sao Lourenco" class="shutterset_set_23" >
								<img title="PontadeSaoLourenco02.jpg" alt="PontadeSaoLourenco02.jpg" src="http://www.matthiaspospiech.de/files/gallery/places/thumbs/thumbs_PontadeSaoLourenco02.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-155" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/places/PontadeSaoLourenco03.jpg" title="Ponte de Sao Lourenco" class="shutterset_set_23" >
								<img title="PontadeSaoLourenco03.jpg" alt="PontadeSaoLourenco03.jpg" src="http://www.matthiaspospiech.de/files/gallery/places/thumbs/thumbs_PontadeSaoLourenco03.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

<h3 id="toc-dolphins">Dolphins</h3>
<p>The island, or better its surrounding sea is an oasis in the atlantic sea for all dolphins and wales. We went on a dolphin wathcing tour with <a href="http://www.rota-dos-cetaceos.pt/" class="liexternal">Rota dos Detaceos</a>. Wales are very shy and we could only see some from far away. Since they did not start to dive it was not possible to identify the. But we had the pleasure to watch a school of spotted dolphins, which are curious and swim around the ship if you come close.</p>
<div class="ngg-galleryoverview" id="ngg-gallery-20-200">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-102" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiradolphins/Dolphins02.jpg" title=" " class="shutterset_set_20" >
								<img title="Dolphins02.jpg" alt="Dolphins02.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiradolphins/thumbs/thumbs_Dolphins02.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-103" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiradolphins/Dolphins03.jpg" title=" " class="shutterset_set_20" >
								<img title="Dolphins03.jpg" alt="Dolphins03.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiradolphins/thumbs/thumbs_Dolphins03.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-104" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiradolphins/Dolphins04.jpg" title=" " class="shutterset_set_20" >
								<img title="Dolphins04.jpg" alt="Dolphins04.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiradolphins/thumbs/thumbs_Dolphins04.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-105" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiradolphins/Dolphins05.jpg" title=" " class="shutterset_set_20" >
								<img title="Dolphins05.jpg" alt="Dolphins05.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiradolphins/thumbs/thumbs_Dolphins05.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-106" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiradolphins/Dolphins06.jpg" title=" " class="shutterset_set_20" >
								<img title="Dolphins06.jpg" alt="Dolphins06.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiradolphins/thumbs/thumbs_Dolphins06.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-107" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiradolphins/Dolphins07.jpg" title=" " class="shutterset_set_20" >
								<img title="Dolphins07.jpg" alt="Dolphins07.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiradolphins/thumbs/thumbs_Dolphins07.jpg"  />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-108" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.matthiaspospiech.de/files/gallery/madeiradolphins/Dolphins08.jpg" title=" " class="shutterset_set_20" >
								<img title="Dolphins08.jpg" alt="Dolphins08.jpg" src="http://www.matthiaspospiech.de/files/gallery/madeiradolphins/thumbs/thumbs_Dolphins08.jpg"  />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

<h4 id="toc-reasons-not-go-to-madeira">Reasons not go to Madeira</h4>
<p>if you read until now maybe that is of additional interest:</p>
<ul>
	<li>if you are a vegeterian you will die of hunger. If you on the other hand like fish or steak it is great place to go. The restaurants simply have no vegeterian meals and do no emphasize on the vegetables.</li>
	<li>if you are looking for sunbathing and beautiful sand beaches, there exist no beaches and the sun shines only in the morning. During midday to afternoon thick clouds evolve around the mountains. It though does not get any colder because of the clouds.</li>
	<li>if you want to go out drinking and having fun with many young people &#8211; The typical visitors is older than 30 years and though there exist bars and discos, they are probably only used by people from Madeira.</li>
</ul>
<p>(I could read about this article that this last section is not very accurate&#8230;)</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.matthiaspospiech.de/blog/2009/08/01/holidays-on-madeira/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
