<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>ThemeShaper Forums: Forum: Travailler - Recent Posts</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Tue, 18 Jun 2013 21:37:30 +0000</pubDate>

<item>
<title>helgatheviking on "problem with 'thematic_content', 'childtheme_content'"</title>
<link>http://themeshaper.com/forums/topic/problem-with-thematic_content-childtheme_content#post-26748</link>
<pubDate>Wed, 02 May 2012 04:06:05 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26748@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;similar maybe, but i think it is different enough to warrant its own thread. plus this one is so old.
&#60;/p&#62;</description>
</item>
<item>
<title>iCristiano on "problem with 'thematic_content', 'childtheme_content'"</title>
<link>http://themeshaper.com/forums/topic/problem-with-thematic_content-childtheme_content#post-26734</link>
<pubDate>Tue, 01 May 2012 20:50:28 +0000</pubDate>
<dc:creator>iCristiano</dc:creator>
<guid isPermaLink="false">26734@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Sorry Helga, I thought it was about the same subject, a &#34;problem with thematic-content&#34;...&#60;br /&#62;
I will create a new thread right now.&#60;br /&#62;
Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "problem with 'thematic_content', 'childtheme_content'"</title>
<link>http://themeshaper.com/forums/topic/problem-with-thematic_content-childtheme_content#post-26733</link>
<pubDate>Tue, 01 May 2012 18:30:29 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">26733@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;instead of bumping a year-old thread, please create a new thread that specifically details what you are trying to do.  i think i understand the q, and will answer in the new thread.  i just want a thread with a better title so people can find it should they have the same question instead of burying it here.
&#60;/p&#62;</description>
</item>
<item>
<title>iCristiano on "problem with 'thematic_content', 'childtheme_content'"</title>
<link>http://themeshaper.com/forums/topic/problem-with-thematic_content-childtheme_content#post-26731</link>
<pubDate>Tue, 01 May 2012 15:57:51 +0000</pubDate>
<dc:creator>iCristiano</dc:creator>
<guid isPermaLink="false">26731@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;In case I don´t want any content for &#34;tax&#34; for exemple... What should I use?&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_content($content) {
	if (is_tax()) {
		$content= &#38;#39;??????&#38;#39;;}
	return $content;
}
add_filter(&#38;#39;thematic_content&#38;#39;, &#38;#39;childtheme_content&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks!!
&#60;/p&#62;</description>
</item>
<item>
<title>crystal8es on "flash in the sidebar"</title>
<link>http://themeshaper.com/forums/topic/flash-in-the-sidebar#post-16569</link>
<pubDate>Mon, 25 Oct 2010 09:40:39 +0000</pubDate>
<dc:creator>crystal8es</dc:creator>
<guid isPermaLink="false">16569@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I am a newbie here and just wanna say Hi to everyone. I am Crystal from Louisiana, US.&#60;/p&#62;
&#60;p&#62;__________________
&#60;/p&#62;</description>
</item>
<item>
<title>Andrew on "problem with 'thematic_content', 'childtheme_content'"</title>
<link>http://themeshaper.com/forums/topic/problem-with-thematic_content-childtheme_content#post-13077</link>
<pubDate>Mon, 14 Jun 2010 16:30:54 +0000</pubDate>
<dc:creator>Andrew</dc:creator>
<guid isPermaLink="false">13077@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;And me too!  Thanks!  Just wanted to make the Homepage to display excerpts only..&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_content($content) {
	if (is_home() &#124;&#124; is_front_page()) {
		$content= &#38;#39;excerpt&#38;#39;;}
	return $content;
}
add_filter(&#38;#39;thematic_content&#38;#39;, &#38;#39;childtheme_content&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and this is what I used based on Chris' answer.&#60;/p&#62;
&#60;p&#62;Thanks Chris!
&#60;/p&#62;</description>
</item>
<item>
<title>GregoryB on "move navigation in Travailler"</title>
<link>http://themeshaper.com/forums/topic/move-navigation-in-travailler#post-11001</link>
<pubDate>Fri, 26 Mar 2010 05:36:53 +0000</pubDate>
<dc:creator>GregoryB</dc:creator>
<guid isPermaLink="false">11001@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;got it! change &#34;#access&#34; to &#34;#branding&#34; in childtheme's function.php&#60;/p&#62;
&#60;p&#62;&#38;lt;style type=&#34;text/css&#34;&#38;gt;&#60;br /&#62;
#branding {&#60;br /&#62;
	background: url(&#38;lt;?php header_image() ?&#38;gt;) no-repeat top center;&#60;br /&#62;
}&#60;br /&#62;
&#38;lt;/style&#38;gt;&#60;/p&#62;
&#60;p&#62;That de-links the Custom Header from thematic_access. Add &#60;/p&#62;
&#60;p&#62;add_action('thematic_footer','thematic_access');&#60;/p&#62;
&#60;p&#62;to move navigation to the footer.  Just have to mess about with style.css to make it pretty again. :)
&#60;/p&#62;</description>
</item>
<item>
<title>GregoryB on "move navigation in Travailler"</title>
<link>http://themeshaper.com/forums/topic/move-navigation-in-travailler#post-10931</link>
<pubDate>Tue, 23 Mar 2010 21:27:41 +0000</pubDate>
<dc:creator>GregoryB</dc:creator>
<guid isPermaLink="false">10931@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Tried the code to remove the nav menu I found in the Themeshaper forum;&#60;/p&#62;
&#60;p&#62;'// remove thematic_access()&#60;br /&#62;
function remove_access() {&#60;br /&#62;
	remove_action('thematic_header','thematic_access',9);&#60;br /&#62;
}&#60;br /&#62;
add_action('init', 'remove_access');'&#60;/p&#62;
&#60;p&#62;in the childtheme function.php (also tried variant.php) but nothing happens.&#60;/p&#62;
&#60;p&#62;If I add it to the Themtic function.php it kills off the Custom Header.&#60;/p&#62;
&#60;p&#62;Any thoughs? Would like to eventually move nav menu to the footer.&#60;/p&#62;
&#60;p&#62;TIA
&#60;/p&#62;</description>
</item>
<item>
<title>joshfeck on "Dropdown menus for Travailler"</title>
<link>http://themeshaper.com/forums/topic/dropdown-menus-for-travailler#post-10485</link>
<pubDate>Fri, 05 Mar 2010 18:56:48 +0000</pubDate>
<dc:creator>joshfeck</dc:creator>
<guid isPermaLink="false">10485@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Is possible to have child pages show up in the main nav menu?
&#60;/p&#62;</description>
</item>
<item>
<title>Joanne on "Avatar set-up for Travailler"</title>
<link>http://themeshaper.com/forums/topic/avatar-set-up-for-travailler#post-10032</link>
<pubDate>Mon, 22 Feb 2010 01:43:05 +0000</pubDate>
<dc:creator>Joanne</dc:creator>
<guid isPermaLink="false">10032@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Chris&#60;/p&#62;
&#60;p&#62;I hadn't, but have now done so and its all working.&#60;/p&#62;
&#60;p&#62;Many thanks for helping out.&#60;/p&#62;
&#60;p&#62;I knew it would be easy, just didn't know where to start.&#60;/p&#62;
&#60;p&#62;cheers&#60;/p&#62;
&#60;p&#62;Jo
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "Avatar set-up for Travailler"</title>
<link>http://themeshaper.com/forums/topic/avatar-set-up-for-travailler#post-9897</link>
<pubDate>Wed, 17 Feb 2010 19:49:36 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">9897@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Jo,&#60;/p&#62;
&#60;p&#62;have you registered the admin's email address with &#60;a href=&#34;http://en.gravatar.com/&#34; rel=&#34;nofollow&#34;&#62;http://en.gravatar.com/&#60;/a&#62; ?&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>Joanne on "Avatar set-up for Travailler"</title>
<link>http://themeshaper.com/forums/topic/avatar-set-up-for-travailler#post-9886</link>
<pubDate>Wed, 17 Feb 2010 04:01:22 +0000</pubDate>
<dc:creator>Joanne</dc:creator>
<guid isPermaLink="false">9886@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Anyone?
&#60;/p&#62;</description>
</item>
<item>
<title>Joanne on "Avatar set-up for Travailler"</title>
<link>http://themeshaper.com/forums/topic/avatar-set-up-for-travailler#post-9696</link>
<pubDate>Thu, 11 Feb 2010 07:13:51 +0000</pubDate>
<dc:creator>Joanne</dc:creator>
<guid isPermaLink="false">9696@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;No one out there able to offer a tip or suggestion?  I am sure it cannot be that hard.&#60;/p&#62;
&#60;p&#62;All responses greatly appreciated....
&#60;/p&#62;</description>
</item>
<item>
<title>Joanne on "Avatar set-up for Travailler"</title>
<link>http://themeshaper.com/forums/topic/avatar-set-up-for-travailler#post-9476</link>
<pubDate>Thu, 04 Feb 2010 01:12:04 +0000</pubDate>
<dc:creator>Joanne</dc:creator>
<guid isPermaLink="false">9476@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi there&#60;/p&#62;
&#60;p&#62;No doubt the answer to this is really straight forward, which makes me a bit embarrassed to ask, but I cannot seem to work out how to assign an avatar to myself (as the site's primary author and administrator).&#60;/p&#62;
&#60;p&#62;I am using Travailler.&#60;/p&#62;
&#60;p&#62;I am yet to tackle code or anything like that but I'm not so anti-technical that I can't understand the gist of most things.&#60;/p&#62;
&#60;p&#62;Hope someone can point me in the right direction&#60;/p&#62;
&#60;p&#62;cheers&#60;/p&#62;
&#60;p&#62;Jo
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "best practices tweaking appearance travailler"</title>
<link>http://themeshaper.com/forums/topic/best-practices-tweaking-appearance-travailler#post-8735</link>
<pubDate>Fri, 01 Jan 2010 21:30:55 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">8735@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;as you said. The best way is using the variant.css.&#60;/p&#62;
&#60;p&#62;I never used the built-in editor. On Windows you can use Notepad++ for editing CSS / HTML / PHP files.&#60;/p&#62;
&#60;p&#62;On Windows I'm using XAMPP as test platform.&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>foxtrot on "best practices tweaking appearance travailler"</title>
<link>http://themeshaper.com/forums/topic/best-practices-tweaking-appearance-travailler#post-8682</link>
<pubDate>Wed, 30 Dec 2009 12:44:05 +0000</pubDate>
<dc:creator>foxtrot</dc:creator>
<guid isPermaLink="false">8682@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello -&#60;br /&#62;
I am restyling my travailer theme via the styles.css - but is this best practice?&#60;br /&#62;
Should I be overriding with a variant.css and coding via the wp-admin with div tags?&#60;/p&#62;
&#60;p&#62;Another Q: what will happen when I switch between thematic and back again to travailler&#60;br /&#62;
will I loose information?&#60;/p&#62;
&#60;p&#62;As a novice what is the best way to set up a testing environment?&#60;/p&#62;
&#60;p&#62;Regards Foxtrot
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "Travailler theme"</title>
<link>http://themeshaper.com/forums/topic/travailler-theme#post-8180</link>
<pubDate>Tue, 01 Dec 2009 19:58:17 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">8180@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Elisabeth,&#60;/p&#62;
&#60;p&#62;Travailler is compatible with WP 2.8.6.&#60;/p&#62;
&#60;p&#62;Could you please let me know where you want to have your logo?! .. With this information I can tell you how to implement the logo.&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>Elisabeth on "Travailler theme"</title>
<link>http://themeshaper.com/forums/topic/travailler-theme#post-8176</link>
<pubDate>Tue, 01 Dec 2009 18:08:51 +0000</pubDate>
<dc:creator>Elisabeth</dc:creator>
<guid isPermaLink="false">8176@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Can I incorporate a logo in the theme's header? And is Travailler compatible with WP 2.8.6?
&#60;/p&#62;</description>
</item>
<item>
<title>JLsantiago on "Problem with Threaded comments"</title>
<link>http://themeshaper.com/forums/topic/problem-with-threaded-comments#post-7384</link>
<pubDate>Fri, 23 Oct 2009 18:17:58 +0000</pubDate>
<dc:creator>JLsantiago</dc:creator>
<guid isPermaLink="false">7384@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi, I´m having a problem using threaded comments on my site. For some reason I can reply only to the last comment. I can only reply to the comments in the middle from the dashboard. That means that people visiting the site won´t be able to reply to the comments made before the last one. I think its a problem with the Travailer theme I´m using on my site &#60;a href=&#34;http://www.sobrelafotografia.com/2009/10/19/tradicional-matanza-en-huajuapan-de-leon/&#34; rel=&#34;nofollow&#34;&#62;http://www.sobrelafotografia.com/2009/10/19/tradicional-matanza-en-huajuapan-de-leon/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Any ideas on how to fix this?
&#60;/p&#62;</description>
</item>
<item>
<title>askgreve on "problem with 'thematic_content', 'childtheme_content'"</title>
<link>http://themeshaper.com/forums/topic/problem-with-thematic_content-childtheme_content#post-6976</link>
<pubDate>Wed, 07 Oct 2009 17:18:04 +0000</pubDate>
<dc:creator>askgreve</dc:creator>
<guid isPermaLink="false">6976@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks, it worked for me too.&#60;/p&#62;
&#60;p&#62;Ask
&#60;/p&#62;</description>
</item>
<item>
<title>guyk on "problem with 'thematic_content', 'childtheme_content'"</title>
<link>http://themeshaper.com/forums/topic/problem-with-thematic_content-childtheme_content#post-4629</link>
<pubDate>Thu, 18 Jun 2009 11:38:18 +0000</pubDate>
<dc:creator>guyk</dc:creator>
<guid isPermaLink="false">4629@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello&#60;/p&#62;
&#60;p&#62;Now is OK,&#60;br /&#62;
i dont understand what im doing the first time&#60;br /&#62;
i thank you a lot&#60;/p&#62;
&#60;p&#62;guyk
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "problem with 'thematic_content', 'childtheme_content'"</title>
<link>http://themeshaper.com/forums/topic/problem-with-thematic_content-childtheme_content#post-4609</link>
<pubDate>Wed, 17 Jun 2009 16:49:55 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">4609@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;sorry .. don't know what caused this error. I tested the original code in my child theme's functions.php without any problems.&#60;/p&#62;
&#60;p&#62;You might want to change the above mentioned code to:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_content($content) {
	if (is_archive()) {
		$content= &#38;#39;full&#38;#39;;}
	return $content;
}
add_filter(&#38;#39;thematic_content&#38;#39;, &#38;#39;childtheme_content&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Cheers,&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>guyk on "problem with 'thematic_content', 'childtheme_content'"</title>
<link>http://themeshaper.com/forums/topic/problem-with-thematic_content-childtheme_content#post-4534</link>
<pubDate>Sun, 14 Jun 2009 15:30:30 +0000</pubDate>
<dc:creator>guyk</dc:creator>
<guid isPermaLink="false">4534@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello&#60;/p&#62;
&#60;p&#62;excuse my poor english&#60;br /&#62;
i try to do the following&#60;/p&#62;
&#60;p&#62;I implemented a new filter named thematic_content into the current SVN copy. You can return the following constants:&#60;br /&#62;
- full : the full post content including .. More .. is displayed - excerpt : the excerpt of the post is displayed - none : nothing will be displayed&#60;br /&#62;
You could use the following code snippet in your child theme's functions.php to display the full post instead of the excerpt on a category page:&#60;br /&#62;
function childtheme_content($content) {&#60;br /&#62;
	if (is_category()) {&#60;br /&#62;
		$content= 'full';}&#60;br /&#62;
	return $content;&#60;br /&#62;
}&#60;br /&#62;
add_filter('thematic_content', 'childtheme_content');&#60;/p&#62;
&#60;p&#62;and i get&#60;/p&#62;
&#60;p&#62;Warning: Missing argument 2 for add_filter() in /homez.34/autoport/mesites/vousgagnezaetreconnu/wordpress/wp-includes/plugin.php on line 65&#60;/p&#62;
&#60;p&#62;you can see  the result at&#60;br /&#62;
&#60;a href=&#34;http://www.vousgagnezaetreconnu.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.vousgagnezaetreconnu.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;the only thing i want to do is going directly to the entire content of archive&#60;br /&#62;
fhanks if you can help me&#60;/p&#62;
&#60;p&#62;guyk
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "home button"</title>
<link>http://themeshaper.com/forums/topic/home-button#post-3835</link>
<pubDate>Tue, 12 May 2009 06:29:39 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">3835@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey Fred,&#60;/p&#62;
&#60;p&#62;add the following code (Home link) to the Travailler's functions.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_menu_args($args) {
    $args = array(
        &#38;#39;show_home&#38;#39; =&#38;gt; &#38;#39;Start&#38;#39;,
        &#38;#39;sort_column&#38;#39; =&#38;gt; &#38;#39;menu_order&#38;#39;,
        &#38;#39;menu_class&#38;#39; =&#38;gt; &#38;#39;menu&#38;#39;,
        &#38;#39;echo&#38;#39; =&#38;gt; true
    );
	return $args;
}
add_filter(&#38;#39;wp_page_menu_args&#38;#39;,&#38;#39;childtheme_menu_args&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;For the tab navigation you need to style #menu / .menu and all kind of sub-selectors in your style.css. But don't expect it to be a plain copy &#38;#38; paste job .. Might or might not work ;-) &#60;/p&#62;
&#60;p&#62;Cheers,&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>foxtrot on "home button"</title>
<link>http://themeshaper.com/forums/topic/home-button#post-3776</link>
<pubDate>Fri, 08 May 2009 13:56:18 +0000</pubDate>
<dc:creator>foxtrot</dc:creator>
<guid isPermaLink="false">3776@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello Chris can you give some pointers:&#60;/p&#62;
&#60;p&#62;- how to create a home button in the travailler theme.&#60;br /&#62;
Now the first page is a paginated post. Fine with me if only I could get a home button in the top navigation.&#60;/p&#62;
&#60;p&#62;- seconds. How to get a neat tab interface for the top navigation. Is it copy/paste and adjusting the Travailler styles.css?&#60;/p&#62;
&#60;p&#62;It's becoming more and more fun with WP and Themes!&#60;br /&#62;
Thanks in advance for a reply &#38;#38; regards Fred&#60;/p&#62;
&#60;p&#62;Current private project: &#60;a href=&#34;http://www.animation.nl/oefentof&#34; rel=&#34;nofollow&#34;&#62;www.animation.nl/oefentof&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "space above header in IE"</title>
<link>http://themeshaper.com/forums/topic/space-above-header-in-ie#post-3464</link>
<pubDate>Thu, 23 Apr 2009 15:01:01 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">3464@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;copied your CSS and your header image .. on my local machine everything's fine in IE and the only difference is the top offset for the image. Need to look into it. At the moment I 've no idea where the different offset is coming from.&#60;/p&#62;
&#60;p&#62;Cheers,&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>foxtrot on "space above header in IE"</title>
<link>http://themeshaper.com/forums/topic/space-above-header-in-ie#post-3405</link>
<pubDate>Tue, 21 Apr 2009 15:34:27 +0000</pubDate>
<dc:creator>foxtrot</dc:creator>
<guid isPermaLink="false">3405@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello - there's a difference with the header in IE and Mozilla with the travaillertheme site&#60;br /&#62;
&#60;a href=&#34;http://www.managementindezorgenwelzijn.nl&#34; rel=&#34;nofollow&#34;&#62;http://www.managementindezorgenwelzijn.nl&#60;/a&#62;&#60;br /&#62;
In IE the top part of the image is not visible.&#60;/p&#62;
&#60;p&#62;Suggestions how to fix this welcome!&#60;/p&#62;
&#60;p&#62;regards foxtrot
&#60;/p&#62;</description>
</item>
<item>
<title>foxtrot on "removing border around header image"</title>
<link>http://themeshaper.com/forums/topic/removing-border-around-header-image#post-3129</link>
<pubDate>Mon, 13 Apr 2009 15:17:24 +0000</pubDate>
<dc:creator>foxtrot</dc:creator>
<guid isPermaLink="false">3129@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;fixed it thanks again - fred
&#60;/p&#62;</description>
</item>
<item>
<title>foxtrot on "flash in the sidebar"</title>
<link>http://themeshaper.com/forums/topic/flash-in-the-sidebar#post-3128</link>
<pubDate>Mon, 13 Apr 2009 15:05:00 +0000</pubDate>
<dc:creator>foxtrot</dc:creator>
<guid isPermaLink="false">3128@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Chris thanx - Resolved!
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "flash in the sidebar"</title>
<link>http://themeshaper.com/forums/topic/flash-in-the-sidebar#post-3110</link>
<pubDate>Sun, 12 Apr 2009 17:08:35 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">3110@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;add a text widget to one of your sidebars and add the code included in your demo site. Did a short test with your swf file on my local machine and it works.&#60;/p&#62;
&#60;p&#62;Cheers,&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>

</channel>
</rss>
