<?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: Recent Topics</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Thu, 09 Sep 2010 14:15:49 +0000</pubDate>

<item>
<title>katedavis on "Unstable css"</title>
<link>http://themeshaper.com/forums/topic/unstable-css#post-15399</link>
<pubDate>Mon, 06 Sep 2010 11:52:44 +0000</pubDate>
<dc:creator>katedavis</dc:creator>
<guid isPermaLink="false">15399@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Firstly, I'd like to thank you for the development of Thematic. It is so easy to use it has given me hope I can develop my own theme after my previous attempts have all failed as the Wordpress code was updated just before I finished!&#60;/p&#62;
&#60;p&#62;However, my desires are higher than my ability so I resort to copy, paste and 'fiddle' until I get what I want. I've been trying to recreate the theme I built for WP2.6 and have got pretty far, but I've got stuck with my styling.&#60;/p&#62;
&#60;p&#62;The site I'm playing at is &#60;a href=&#34;http://katedavisonline.com/peter/&#34; rel=&#34;nofollow&#34;&#62;http://katedavisonline.com/peter/&#60;/a&#62; and I've successfully moved the menu to the top of the page and created 3 widget areas in the header. However you can see I have some problems:&#60;/p&#62;
&#60;p&#62;* my styling of the menu is different on every computer and browser I use&#60;br /&#62;
* the 3 widget areas should be in a row (and they were until I styled the footer)&#60;br /&#62;
* there should be a white background behind the 3 header widgets (there was until I style the footer)&#60;/p&#62;
&#60;p&#62;I'm sure these can all be solved with some changes to the css file, but I haven't discovered what through 'fiddling'. Any help would be appreciated so I can have a new theme for the first time since 2007!
&#60;/p&#62;</description>
</item>
<item>
<title>michieldoetjes on "Inserting post-thumbnails in Thematic"</title>
<link>http://themeshaper.com/forums/topic/inserting-post-thumbnails-in-thematic#post-10582</link>
<pubDate>Tue, 09 Mar 2010 07:56:21 +0000</pubDate>
<dc:creator>michieldoetjes</dc:creator>
<guid isPermaLink="false">10582@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi! I'm relatively new to Thematic. I'm amazed by how powerful this framework is and how easy it is to build your own child-themes.&#60;/p&#62;
&#60;p&#62;I want to add post thumbnails to my child theme, but I'm struggling getting it right. Steps I took:&#60;/p&#62;
&#60;p&#62;1. I added the thumbnail function to my functions.php using the following code:&#60;/p&#62;
&#60;p&#62;add_theme_support('post-thumbnails');&#60;/p&#62;
&#60;p&#62;2. I added the call for the thumbnail to my customized post-header (function: mdv5_postheader) using the following code:&#60;/p&#62;
&#60;p&#62;$postmeta .= the_post_thumbnail();&#60;/p&#62;
&#60;p&#62;3. And this is where the problem starts: it doesn't matter where in the postheader I place the call for the thumbnail, it automatically places the thumbnail &#60;strong&#62;above&#60;/strong&#62; the post-title.&#60;/p&#62;
&#60;p&#62;Any ideas on what I might be doing wrong?
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Thematic Menus Demystified"</title>
<link>http://themeshaper.com/forums/topic/thematic-menus-demystified-1#post-15281</link>
<pubDate>Tue, 31 Aug 2010 22:15:54 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">15281@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Menus seem to generate the most questions and since there have been many threads in the last couple of days, i have decided to lump all the stuff I have together in 1 place.  All the functions go in the functions.php file of your child folder!  The style rules i have included go in your child's style.css.  If it is deemed worthy, perhaps it can get stickied.  &#60;/p&#62;
&#60;p&#62;If you see any code errors, point them out.  But if you need support or are having issues, I think creating your own thread would be best.  That way, future people won't need to wade through everything to get to updates to this post.  (not that significant wading isn't required for this post... it is long!).&#60;/p&#62;
&#60;p&#62;Things I am going to cover:&#60;br /&#62;
1. Moving the menu&#60;br /&#62;
2. Adding a Home link&#60;br /&#62;
3. using a single wordpress 3.0 menu&#60;br /&#62;
4. filter your 3.0 menu's arguments&#60;br /&#62;
5. use more than one 3.0 menu&#60;br /&#62;
6. css styling&#60;br /&#62;
7. filtering away superfish dropdowns&#60;br /&#62;
8. modifying superfish to show little arrows to indicate a sub menu&#60;/p&#62;
&#60;p&#62;And lets begin...&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;1. Moving the Menu above the header&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;moving the default menu is a matter of removing the respsonible function (in this case thematic_access() ) from its current position and adding it back to a different hook.  &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Remove the standard Thematic menu
function remove_menu() {
	remove_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;thematic_access&#38;#39;,9);
}
add_action(&#38;#39;init&#38;#39;, &#38;#39;remove_menu&#38;#39;);

// Moving the thematic menu above the header
add_action(&#38;#39;thematic_aboveheader&#38;#39;,&#38;#39;thematic_access&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;you could also re-write the whole access function, but i don't do this often anymore, so i will refer you to Ian's post instead to &#60;em&#62;attempt&#60;/em&#62; to keep this thread under control&#60;br /&#62;
&#60;a href=&#34;http://themeshaper.com/wordpress-menu-tricks/&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/wordpress-menu-tricks/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;2. Adding a Home Link&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;Switching the default wp_list_pages() menu to wp_page_menu so that a home link can be added.  because this changed between the old and new versions of thematic i will do it both ways.  &#60;/p&#62;
&#60;p&#62;&#60;em&#62;Thematic 0.9.6.4&#60;/em&#62;&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Adds a home link to your menu in Thematic 0.9.6.4
function childtheme_menu_args($args) {
    $args = array(
        &#38;#39;show_home&#38;#39; =&#38;gt; &#38;#39;Home&#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;&#60;em&#62;Thematic 0.9.7.4 &#60;/em&#62;&#60;br /&#62;
This is &#60;em&#62;almost&#60;/em&#62; identical.  EXCEPT the echo parameter must now be set to FALSE.  Chris explains why here: &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://developing.thematic4you.com/2010/04/breaking-things-to-fix-others/&#34; rel=&#34;nofollow&#34;&#62;http://developing.thematic4you.com/2010/04/breaking-things-to-fix-others/&#60;/a&#62; &#60;/p&#62;
&#60;p&#62;just know that it has to do w/ adding the sf-menu class to the ul that contains the menu.  w/o that sf-menu class you will probably notice that your menu loses all its default style.  &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Adds a home link to your menu in Thematic 0.9.7.4
function childtheme_menu_args($args) {
	$args = array(
		&#38;#39;show_home&#38;#39; =&#38;gt; &#38;#39;Home&#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; false
	);
	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;&#60;strong&#62;3. Wordpress 3.0 Menus for Thematic 0.9.7.4&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;My favorite resource on 3.0 menus is:&#60;br /&#62;
&#60;a href=&#34;http://justintadlock.com/archives/2010/06/01/goodbye-headaches-hello-menus&#34; rel=&#34;nofollow&#34;&#62;http://justintadlock.com/archives/2010/06/01/goodbye-headaches-hello-menus&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;if you want to use the new 3.0-style menus then you need to get the newer Thematic:&#60;br /&#62;
&#60;a href=&#34;http://developing.thematic4you.com/thematic-development-release/&#34; rel=&#34;nofollow&#34;&#62;http://developing.thematic4you.com/thematic-development-release/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;if you only need 1 menu it is very easy to switch out the thematic #accesss menu for a 3.0-style menu.  some older posts and tutorials will mention needing to use &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_theme_support( &#38;#39;nav-menus&#38;#39;);
//OR
add_theme_support( &#38;#39;menus&#38;#39; );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;in order to activate menus.  but this is now NOT advised.&#60;br /&#62;
&#60;a href=&#34;http://themeshaper.com/forums/topic/add_theme_supportmenus&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/add_theme_supportmenus&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;the following is all you need to get a single 3.0 menu to replace the default thematic #access menu.&#60;/p&#62;
&#60;p&#62;&#60;em&#62;Enable 1 wordpress 3.0 Menu in the Thematic #access&#60;/em&#62;&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// change Thematic #access menu for a Wordpress 3.0 menu
function child_access_menu() {
	$menu_sys = &#38;#39;wp_nav_menu&#38;#39;;
	return $menu_sys;
}
add_filter(&#38;#39;thematic_menu_type&#38;#39;, &#38;#39;child_access_menu&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>charlietounah on "Help repositioning a plugin from within 'content' to above container"</title>
<link>http://themeshaper.com/forums/topic/help-repositioning-a-plugin-from-within-content-to-above-container#post-15430</link>
<pubDate>Tue, 07 Sep 2010 17:15:09 +0000</pubDate>
<dc:creator>charlietounah</dc:creator>
<guid isPermaLink="false">15430@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;br /&#62;
I'm using Thematic with a child theme. I discovered a plugin that retrieves stock information and displays it in a site. It works perfectly when the data it's looking for (a stock symbol surrounded by double brackets) appears in either a post or a page. The code governing this is as follows:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;add_filter('the_content', 'tickerData', 8);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Now, in page.php, I'm trying to put the stock data in between &#60;code&#62;    thematic_abovecontainer();&#60;/code&#62; and &#60;code&#62;&#38;lt;div id=&#34;container&#34;&#38;gt;&#60;/code&#62;, so that I can set up a marquee that spans the main container and sidebar areas. I'm thinking that I need to change the first argument in the add_filter statement above, but I'm not sure what to change it to. Can someone help?&#60;/p&#62;
&#60;p&#62;Thanks in advance,&#60;br /&#62;
Charlie T.
&#60;/p&#62;</description>
</item>
<item>
<title>Seijun on "Editting template files?"</title>
<link>http://themeshaper.com/forums/topic/editting-template-files#post-15476</link>
<pubDate>Thu, 09 Sep 2010 03:13:28 +0000</pubDate>
<dc:creator>Seijun</dc:creator>
<guid isPermaLink="false">15476@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Child themes have worked really well for customizing the CSS of my thematic site, and the functions.php is ok for making small structural changes. However, I'm having a real problem when it comes to changing or adding to the structure of my site. I'm not sure the right words for it, but whenever I try to follow instructions for adding some new feature to my site, I run into the dreaded &#34;now add xxx to your index.php&#34; step. I can't do that of course because all those template files are overwritten whenever thematic upgrades itself. What am I supposed to do? For example, right now I'm trying to follow the instructions here:&#60;br /&#62;
&#60;a href=&#34;http://net.tutsplus.com/tutorials/wordpress/introducing-wordpress-3-custom-taxonomies/&#34; rel=&#34;nofollow&#34;&#62;http://net.tutsplus.com/tutorials/wordpress/introducing-wordpress-3-custom-taxonomies/&#60;/a&#62;&#60;br /&#62;
and it calls for me to edit several template files. How do I get around that without actually editing any of thematic's core files?&#60;/p&#62;
&#60;p&#62;I have the same problem trying to change stuff in the thematic &#34;extensions&#34; files. What I have done requires massive amounts of code to be added to my functions.php (99% of which is greek to me), and all to achieve only the most minute changes. Isn't there an easier way?
&#60;/p&#62;</description>
</item>
<item>
<title>jcollier on ""Older posts" link broken in search results"</title>
<link>http://themeshaper.com/forums/topic/older-posts-link-broken-in-search-results#post-13917</link>
<pubDate>Thu, 15 Jul 2010 19:52:08 +0000</pubDate>
<dc:creator>jcollier</dc:creator>
<guid isPermaLink="false">13917@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I am seeing a page-not-found error using WP 3.0 multisite with Thematic 0.9.6.2.&#60;/p&#62;
&#60;p&#62;The URL for the first page of search results is:&#60;/p&#62;
&#60;p&#62;	&#60;a href=&#34;http://DOMAIN.com/SITE?s=SEARCHTERM&#38;#38;searchsubmit=Search&#34; rel=&#34;nofollow&#34;&#62;http://DOMAIN.com/SITE?s=SEARCHTERM&#38;#38;searchsubmit=Search&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The &#34;Older posts&#34; link is:&#60;/p&#62;
&#60;p&#62;	&#60;a href=&#34;http://DOMAIN/SITE/SITE/page/2/?s=SEARCHTERM&#38;#38;searchsubmit=Search&#34; rel=&#34;nofollow&#34;&#62;http://DOMAIN/SITE/SITE/page/2/?s=SEARCHTERM&#38;#38;searchsubmit=Search&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The site name is repeated twice. This results in a redirection error. I manually entered the following URL and the search result worked:&#60;/p&#62;
&#60;p&#62;	&#60;a href=&#34;http://DOMAIN/SITE/page/2/?s=SEARCHTERM&#38;#38;searchsubmit=Search&#34; rel=&#34;nofollow&#34;&#62;http://DOMAIN/SITE/page/2/?s=SEARCHTERM&#38;#38;searchsubmit=Search&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I was thinking of adding a function in my child theme to replace the URL construction, but I didn't figure out where that is generated, and I know I shouldn't make changes to the core Thematic files.&#60;/p&#62;
&#60;p&#62;Has this been discussed before? (If so, I could find it.) &#60;/p&#62;
&#60;p&#62;Any suggestions?&#60;/p&#62;
&#60;p&#62;-Jay
&#60;/p&#62;</description>
</item>
<item>
<title>jamesObZ on "Help Adding an Image Border!"</title>
<link>http://themeshaper.com/forums/topic/help-adding-an-image-border#post-15387</link>
<pubDate>Sun, 05 Sep 2010 18:33:22 +0000</pubDate>
<dc:creator>jamesObZ</dc:creator>
<guid isPermaLink="false">15387@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I am trying to add a border to my images but when i select the option to add a border within the image properties nothing happens.  I am guessing this is because some CSS code is over riding it?&#60;/p&#62;
&#60;p&#62;Please help me resolve this, i have limited knowledge about code!&#60;br /&#62;
FYI, my site can be found here: &#60;a href=&#34;http://www.keyword-elite-reviewed.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.keyword-elite-reviewed.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Many thanks,&#60;br /&#62;
James
&#60;/p&#62;</description>
</item>
<item>
<title>charlietounah on "styling not working in chrome or Safari"</title>
<link>http://themeshaper.com/forums/topic/styling-not-working-in-chrome-or-safari#post-15473</link>
<pubDate>Thu, 09 Sep 2010 01:34:02 +0000</pubDate>
<dc:creator>charlietounah</dc:creator>
<guid isPermaLink="false">15473@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;br /&#62;
I've been styling a site (thematic with a child theme), and have been testing in various browsers. In working with a specific page, using Firebug I saw a class of &#34;slug-pagename&#34;, which I'm successfully able to style such that changes appear in IE, Firefox, &#38;#38; Opera; but they don't show up at all in Chrome or Safari. I tried styling on the &#34;wordpress&#34; class, and on the &#34;pageid-5&#34; class, and nothing is showing up. &#60;/p&#62;
&#60;p&#62;Does anyone have any ideas? I would really appreciate any help.&#60;/p&#62;
&#60;p&#62;Thank you,&#60;br /&#62;
Charlie T.
&#60;/p&#62;</description>
</item>
<item>
<title>Anjaloo on "Link to blog when feature site is on"</title>
<link>http://themeshaper.com/forums/topic/link-to-blog-when-feature-site-is-on#post-15472</link>
<pubDate>Thu, 09 Sep 2010 01:09:05 +0000</pubDate>
<dc:creator>Anjaloo</dc:creator>
<guid isPermaLink="false">15472@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I decided to use the thematic theme with the thematicfeaturesite child theme. Well, i guess my question is more general, but i never understood how to do following thing:&#60;/p&#62;
&#60;p&#62;When i choose a static page on the first site, how can i link to the blog? I know how to link to a category or something, but the whole blog? &#60;/p&#62;
&#60;p&#62;Help would be appreciated.&#60;br /&#62;
- Anja
&#60;/p&#62;</description>
</item>
<item>
<title>zhafran on "How to add superfish menu?"</title>
<link>http://themeshaper.com/forums/topic/how-to-add-superfish-menu#post-15459</link>
<pubDate>Wed, 08 Sep 2010 16:50:47 +0000</pubDate>
<dc:creator>zhafran</dc:creator>
<guid isPermaLink="false">15459@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello there,&#60;/p&#62;
&#60;p&#62;I'm a thematic newcomer and I'm sorry for this stupid basic question - how to add superfish menu function in thematic child theme?&#60;/p&#62;
&#60;p&#62;I've search in this forum but not found this basic question. People talk on advance topic in this superfish thing.&#60;/p&#62;
&#60;p&#62;Hopefully someone can help me :D
&#60;/p&#62;</description>
</item>
<item>
<title>tapeter on "Category fetching problem with cats_meow function"</title>
<link>http://themeshaper.com/forums/topic/category-fetching-problem-with-cats_meow-function-1#post-15466</link>
<pubDate>Wed, 08 Sep 2010 21:16:54 +0000</pubDate>
<dc:creator>tapeter</dc:creator>
<guid isPermaLink="false">15466@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;The cats_meow function seems to be failing to register a current category (Teachers), and consequently it is displaying 'Also posted in Teachers' while in the teachers category. (This is not a problem with other categories, such as 'News). I think it has something to do with that I run an additional query (to sort my posts alphabetically). I've pasted the code of my loop below.&#60;/p&#62;
&#60;p&#62;I'm a PHP newbie, so I don't know much about the interaction of multiple queries, loops, and the scope of variables. Can someone help shed some light on the problem? Thanks so much in advance!&#60;/p&#62;
&#60;p&#62;Sincerely,&#60;br /&#62;
Tim&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;
&#38;lt;?php the_post(); ?&#38;gt;  &#60;/p&#62;
&#60;p&#62;  &#38;lt;h1 class=&#34;page-title&#34;&#38;gt;&#38;lt;span&#38;gt;&#38;lt;?php single_cat_title() ?&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/h1&#38;gt;&#60;br /&#62;
    &#38;lt;?php $categorydesc = category_description(); if ( !empty($categorydesc) ) echo apply_filters( 'archive_meta', '&#38;lt;div class=&#34;archive-meta&#34;&#38;gt;' . $categorydesc . '&#38;lt;/div&#38;gt;' ); ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php rewind_posts(); ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php global $wp_query; $total_pages = $wp_query-&#38;gt;max_num_pages; if ( $total_pages &#38;gt; 1 ) { ?&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;nav-above&#34; class=&#34;navigation&#34;&#38;gt;&#60;br /&#62;
     &#38;lt;div class=&#34;nav-previous&#34;&#38;gt;&#38;lt;?php next_posts_link(__( '&#38;lt;span class=&#34;meta-nav&#34;&#38;gt;&#38;laquo;&#38;lt;/span&#38;gt; Older posts', 'your-theme' )) ?&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
     &#38;lt;div class=&#34;nav-next&#34;&#38;gt;&#38;lt;?php previous_posts_link(__( 'Newer posts &#38;lt;span class=&#34;meta-nav&#34;&#38;gt;&#38;raquo;&#38;lt;/span&#38;gt;', 'your-theme' )) ?&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
    &#38;lt;/div&#38;gt;&#38;lt;!– #nav-above –&#38;gt;&#60;br /&#62;
&#38;lt;?php } ?&#38;gt;  &#60;/p&#62;
&#60;p&#62;&#38;lt;?php if(is_category('teachers')){&#60;/p&#62;
&#60;p&#62;query_posts('meta_key=sortname&#38;#38;orderby=meta_value&#38;#38;order=ASC'); } ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php while ( have_posts() ) : the_post(); ?&#38;gt;&#60;/p&#62;
&#60;p&#62;    &#38;lt;div id=&#34;post-&#38;lt;?php the_ID(); ?&#38;gt;&#34; &#38;lt;?php post_class(); ?&#38;gt;&#38;gt;&#60;/p&#62;
&#60;p&#62;     &#38;lt;h2 class=&#34;entry-title&#34;&#38;gt;&#60;a&#62;&#34; title=&#34;&#38;lt;?php printf( __('Permalink to %s', 'your-theme'), the_title_attribute('echo=0') ); ?&#38;gt;&#34; rel=&#34;bookmark&#34;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#60;/a&#62;&#38;lt;/h2&#38;gt;&#60;/p&#62;
&#60;p&#62;     &#38;lt;div class=&#34;entrytext&#34;&#38;gt;&#60;br /&#62;
	 &#38;lt;?php the_content( __( 'Continue reading &#38;lt;span class=&#34;meta-nav&#34;&#38;gt;&#38;raquo;&#38;lt;/span&#38;gt;', 'your-theme' )  ); ?&#38;gt;&#60;br /&#62;
     &#38;lt;/div&#38;gt;&#38;lt;!– .entrytext –&#38;gt;&#60;/p&#62;
&#60;p&#62;     &#38;lt;div class=&#34;entry-utility&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;     &#38;lt;?php if ( $cats_meow = cats_meow(', ') ) : ?&#38;gt;&#60;br /&#62;
      &#38;lt;span class=&#34;cat-links&#34;&#38;gt;&#38;lt;?php printf( __( 'Also posted in %s', 'your-theme' ), $cats_meow ) ?&#38;gt;&#38;lt;/span&#38;gt;&#60;br /&#62;
      &#38;lt;span class=&#34;meta-sep&#34;&#38;gt; &#124; &#38;lt;/span&#38;gt;&#60;br /&#62;
	 &#38;lt;?php endif ?&#38;gt;&#60;/p&#62;
&#60;p&#62;	&#38;lt;?php if(is_category('news')){&#60;br /&#62;
    the_tags( '&#38;lt;span class=&#34;tag-links&#34;&#38;gt;&#38;lt;span class=&#34;entry-utility-prep entry-utility-prep-tag-links&#34;&#38;gt;' . __('Tagged ', 'your-theme' ) . '&#38;lt;/span&#38;gt;', &#34;, &#34;, &#34; &#124; &#38;lt;/span&#38;gt;\n&#34; );&#60;/p&#62;
&#60;p&#62;      echo &#34;&#38;lt;span&#38;gt;Posted on &#34;;&#60;br /&#62;
      echo the_date();&#60;br /&#62;
      echo &#34;&#38;lt;/span&#38;gt;&#34;;&#60;br /&#62;
      }&#60;br /&#62;
      ?&#38;gt;&#60;/p&#62;
&#60;p&#62;      &#38;lt;?php edit_post_link( __( 'Edit', 'your-theme' ), &#34;&#38;lt;span class=\&#34;meta-sep\&#34;&#38;gt;&#124;&#38;lt;/span&#38;gt;\n\t\t\t\t\t\t&#38;lt;span class=\&#34;edit-link\&#34;&#38;gt;&#34;, &#34;&#38;lt;/span&#38;gt;\n\t\t\t\t\t\n&#34; ) ?&#38;gt;&#60;br /&#62;
     &#38;lt;/div&#38;gt;&#38;lt;!– #entry-utility –&#38;gt;&#60;/p&#62;
&#60;p&#62;&#60;/p&#62;
&#60;p&#62;    &#38;lt;/div&#38;gt;&#38;lt;!– #post-&#38;lt;?php the_ID(); ?&#38;gt; –&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php endwhile; ?&#38;gt;
&#60;/p&#62;&#60;/blockquote&#62;</description>
</item>
<item>
<title>tapeter on "Category fetching problem with cats_meow function"</title>
<link>http://themeshaper.com/forums/topic/category-fetching-problem-with-cats_meow-function#post-15465</link>
<pubDate>Wed, 08 Sep 2010 21:16:53 +0000</pubDate>
<dc:creator>tapeter</dc:creator>
<guid isPermaLink="false">15465@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;The cats_meow function seems to be failing to register a current category (Teachers), and consequently it is displaying 'Also posted in Teachers' while in the teachers category. (This is not a problem with other categories, such as 'News). I think it has something to do with that I run an additional query (to sort my posts alphabetically). I've pasted the code of my loop below.&#60;/p&#62;
&#60;p&#62;I'm a PHP newbie, so I don't know much about the interaction of multiple queries, loops, and the scope of variables. Can someone help shed some light on the problem? Thanks so much in advance!&#60;/p&#62;
&#60;p&#62;Sincerely,&#60;br /&#62;
Tim&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;
&#38;lt;?php the_post(); ?&#38;gt;  &#60;/p&#62;
&#60;p&#62;  &#38;lt;h1 class=&#34;page-title&#34;&#38;gt;&#38;lt;span&#38;gt;&#38;lt;?php single_cat_title() ?&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/h1&#38;gt;&#60;br /&#62;
    &#38;lt;?php $categorydesc = category_description(); if ( !empty($categorydesc) ) echo apply_filters( 'archive_meta', '&#38;lt;div class=&#34;archive-meta&#34;&#38;gt;' . $categorydesc . '&#38;lt;/div&#38;gt;' ); ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php rewind_posts(); ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php global $wp_query; $total_pages = $wp_query-&#38;gt;max_num_pages; if ( $total_pages &#38;gt; 1 ) { ?&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;nav-above&#34; class=&#34;navigation&#34;&#38;gt;&#60;br /&#62;
     &#38;lt;div class=&#34;nav-previous&#34;&#38;gt;&#38;lt;?php next_posts_link(__( '&#38;lt;span class=&#34;meta-nav&#34;&#38;gt;&#38;laquo;&#38;lt;/span&#38;gt; Older posts', 'your-theme' )) ?&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
     &#38;lt;div class=&#34;nav-next&#34;&#38;gt;&#38;lt;?php previous_posts_link(__( 'Newer posts &#38;lt;span class=&#34;meta-nav&#34;&#38;gt;&#38;raquo;&#38;lt;/span&#38;gt;', 'your-theme' )) ?&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
    &#38;lt;/div&#38;gt;&#38;lt;!– #nav-above –&#38;gt;&#60;br /&#62;
&#38;lt;?php } ?&#38;gt;  &#60;/p&#62;
&#60;p&#62;&#38;lt;?php if(is_category('teachers')){&#60;/p&#62;
&#60;p&#62;query_posts('meta_key=sortname&#38;#38;orderby=meta_value&#38;#38;order=ASC'); } ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php while ( have_posts() ) : the_post(); ?&#38;gt;&#60;/p&#62;
&#60;p&#62;    &#38;lt;div id=&#34;post-&#38;lt;?php the_ID(); ?&#38;gt;&#34; &#38;lt;?php post_class(); ?&#38;gt;&#38;gt;&#60;/p&#62;
&#60;p&#62;     &#38;lt;h2 class=&#34;entry-title&#34;&#38;gt;&#60;a&#62;&#34; title=&#34;&#38;lt;?php printf( __('Permalink to %s', 'your-theme'), the_title_attribute('echo=0') ); ?&#38;gt;&#34; rel=&#34;bookmark&#34;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#60;/a&#62;&#38;lt;/h2&#38;gt;&#60;/p&#62;
&#60;p&#62;     &#38;lt;div class=&#34;entrytext&#34;&#38;gt;&#60;br /&#62;
	 &#38;lt;?php the_content( __( 'Continue reading &#38;lt;span class=&#34;meta-nav&#34;&#38;gt;&#38;raquo;&#38;lt;/span&#38;gt;', 'your-theme' )  ); ?&#38;gt;&#60;br /&#62;
     &#38;lt;/div&#38;gt;&#38;lt;!– .entrytext –&#38;gt;&#60;/p&#62;
&#60;p&#62;     &#38;lt;div class=&#34;entry-utility&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;     &#38;lt;?php if ( $cats_meow = cats_meow(', ') ) : ?&#38;gt;&#60;br /&#62;
      &#38;lt;span class=&#34;cat-links&#34;&#38;gt;&#38;lt;?php printf( __( 'Also posted in %s', 'your-theme' ), $cats_meow ) ?&#38;gt;&#38;lt;/span&#38;gt;&#60;br /&#62;
      &#38;lt;span class=&#34;meta-sep&#34;&#38;gt; &#124; &#38;lt;/span&#38;gt;&#60;br /&#62;
	 &#38;lt;?php endif ?&#38;gt;&#60;/p&#62;
&#60;p&#62;	&#38;lt;?php if(is_category('news')){&#60;br /&#62;
    the_tags( '&#38;lt;span class=&#34;tag-links&#34;&#38;gt;&#38;lt;span class=&#34;entry-utility-prep entry-utility-prep-tag-links&#34;&#38;gt;' . __('Tagged ', 'your-theme' ) . '&#38;lt;/span&#38;gt;', &#34;, &#34;, &#34; &#124; &#38;lt;/span&#38;gt;\n&#34; );&#60;/p&#62;
&#60;p&#62;      echo &#34;&#38;lt;span&#38;gt;Posted on &#34;;&#60;br /&#62;
      echo the_date();&#60;br /&#62;
      echo &#34;&#38;lt;/span&#38;gt;&#34;;&#60;br /&#62;
      }&#60;br /&#62;
      ?&#38;gt;&#60;/p&#62;
&#60;p&#62;      &#38;lt;?php edit_post_link( __( 'Edit', 'your-theme' ), &#34;&#38;lt;span class=\&#34;meta-sep\&#34;&#38;gt;&#124;&#38;lt;/span&#38;gt;\n\t\t\t\t\t\t&#38;lt;span class=\&#34;edit-link\&#34;&#38;gt;&#34;, &#34;&#38;lt;/span&#38;gt;\n\t\t\t\t\t\n&#34; ) ?&#38;gt;&#60;br /&#62;
     &#38;lt;/div&#38;gt;&#38;lt;!– #entry-utility –&#38;gt;&#60;/p&#62;
&#60;p&#62;&#60;/p&#62;
&#60;p&#62;    &#38;lt;/div&#38;gt;&#38;lt;!– #post-&#38;lt;?php the_ID(); ?&#38;gt; –&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php endwhile; ?&#38;gt;
&#60;/p&#62;&#60;/blockquote&#62;</description>
</item>
<item>
<title>4speed on "Invalid markup when using Ozh who sees ads with Thematic"</title>
<link>http://themeshaper.com/forums/topic/invalid-markup-when-using-ozh-who-sees-ads-with-thematic#post-15462</link>
<pubDate>Wed, 08 Sep 2010 17:29:40 +0000</pubDate>
<dc:creator>4speed</dc:creator>
<guid isPermaLink="false">15462@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;When I try validating my site I get the following error:&#60;br /&#62;
&#34;…i id=&#34;ad-apsr&#34; class=&#34;widgetcontainer lambda_32&#34;&#38;gt;&#38;lt;script type=&#34;text/javascrip…&#34;&#60;br /&#62;
&#34;You have used an illegal character in your text.&#34;&#60;br /&#62;
The site is &#60;a href=&#34;hxxp://universalflatpanelmount.com&#34; rel=&#34;nofollow&#34;&#62;hxxp://universalflatpanelmount.com&#60;/a&#62; (replace &#34;hxxp&#34; with &#34;http&#34;).&#60;br /&#62;
This happens when I add the widget Ozh Who Sees Ads to the primary aside.&#60;br /&#62;
When I remove the Ozh widget it does validate.&#60;br /&#62;
Is there some code I can edit to fix this issue or something else I need to do? Not sure if it is template related or specific to the plugin.
&#60;/p&#62;</description>
</item>
<item>
<title>nimrod on "If/Else Conditional Problem via Functions.php Child Theme"</title>
<link>http://themeshaper.com/forums/topic/ifelse-conditional-problem-via-functionsphp-child-theme#post-15340</link>
<pubDate>Sat, 04 Sep 2010 00:24:06 +0000</pubDate>
<dc:creator>nimrod</dc:creator>
<guid isPermaLink="false">15340@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I've used this if/else code with More Fields plugin before within template files before with success, but am having problems with using in functions.php file in Thematic child theme.&#60;/p&#62;
&#60;p&#62;Would someone mind staring at this code with me for a moment and tell me where the problem is? &#60;/p&#62;
&#60;p&#62;It might be just some php syntax problem I'm unaware of (as opposed to More Fields oriented).&#60;br /&#62;
___________&#60;/p&#62;
&#60;p&#62;Here's an example that looks for data in the &#60;strong&#62;author-website&#60;/strong&#62; field and, if available, wraps that data in an anchor tag with the &#60;strong&#62;author-name&#60;/strong&#62; data as the link text. Otherwise, it just displays the &#60;strong&#62;author-name&#60;/strong&#62; data:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php $author-website = get_post_meta($post-&#38;gt;ID, &#38;#39;author-website&#38;#39;, true);
if ($author-website) {
	print &#38;#39;&#38;lt;a href=&#38;quot;http://&#38;#39;;
	echo get_post_meta(get_the_ID(), &#38;#39;author-website&#38;#39;, true);
	print &#38;#39;&#38;quot; title=&#38;quot;View author&#38;amp;rsquo;s website&#38;quot;&#38;gt;&#38;#39;;
	echo get_post_meta(get_the_ID(), &#38;#39;author-name&#38;#39;, true);
	print &#38;#39;&#38;lt;/a&#38;gt;&#38;#39;;
} else {
	echo get_post_meta(get_the_ID(), &#38;#39;author-name&#38;#39;, true);
} ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Problem is, I get a syntax error about an unexpected &#34;=&#34; in the first line.&#60;/p&#62;
&#60;p&#62;If I put in double equals &#34;==&#34; in the first line like so:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php $author-website == get_post_meta($post-&#38;gt;ID, &#38;#39;author-website&#38;#39;, true);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;...the page shows but ignores the first &#34;if&#34; section and only shows the &#34;else&#34; part which is just the author's name with no link even when there IS website data.&#60;br /&#62;
____________&#60;/p&#62;
&#60;p&#62;&#60;em&#62;Any ideas on what about using the above code in a child theme functions.php file would cause this...? &#60;/em&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>SBr on "autufocus+ no parent theme"</title>
<link>http://themeshaper.com/forums/topic/autufocus-no-parent-theme#post-15455</link>
<pubDate>Wed, 08 Sep 2010 15:15:33 +0000</pubDate>
<dc:creator>SBr</dc:creator>
<guid isPermaLink="false">15455@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I&#34;m new to WP and I want to create a photo gallery. I installed the free version of autofocusplus and I get this message:&#60;/p&#62;
&#60;p&#62;&#34;Broken Themes&#60;br /&#62;
The following themes are installed but incomplete. Themes must have a stylesheet and a template.&#60;/p&#62;
&#60;p&#62;Name	Description&#60;br /&#62;
AutoFocus+	The parent theme is missing. Please install the &#34;thematic&#34; parent theme.&#34;&#60;/p&#62;
&#60;p&#62;I re-uploaded it a few times, have the newest version of WP 3.0.3.&#60;br /&#62;
Can someone help me on this???&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>knowlsy on "Different Menu Images"</title>
<link>http://themeshaper.com/forums/topic/different-menu-images#post-14760</link>
<pubDate>Mon, 16 Aug 2010 20:48:51 +0000</pubDate>
<dc:creator>knowlsy</dc:creator>
<guid isPermaLink="false">14760@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm fairly new to css but am managing to find out how to tweak the things i want to tweak while messing around with a few child themes. I am however stuck on my menu...&#60;/p&#62;
&#60;p&#62;I want different coloured buttons for different pages (which will subsequently be the colour of the menu tab, but i think i can work that bit out). My menu is going to be pretty static, so it doesn't have to be something that updates itself when new pages appear.&#60;/p&#62;
&#60;p&#62;I think I'll have to use some images as I want to curve my buttons at the top (and for some reason can't get curvy corners working to display them in ie).&#60;/p&#62;
&#60;p&#62;If anyone could give me some pointers I'd appreaciate it! I've read lots of bits and bobs out there but can't my head around it like I'm managing with other issues.&#60;/p&#62;
&#60;p&#62;Thanks!&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>jrobben on "Step by Step - style a horizontal superfish menu w sample code"</title>
<link>http://themeshaper.com/forums/topic/step-by-step-style-a-horizontal-superfish-menu-w-sample-code#post-8024</link>
<pubDate>Mon, 23 Nov 2009 15:48:22 +0000</pubDate>
<dc:creator>jrobben</dc:creator>
<guid isPermaLink="false">8024@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I hope this can help save someone some of the time I wasted .. lol. I have not spent any time refining the look of my sample menu but it should give a decent starting point. The child and grandchild menus are under About -&#38;gt; our company &#60;/p&#62;
&#60;p&#62;This is a step by step instruction for creating a custom horizontal superfish menu&#60;/p&#62;
&#60;p&#62;With this selection there are 6 thing you can customize easily to get a wide range of looks&#60;br /&#62;
the height of the menu&#60;br /&#62;
the font size/type&#60;br /&#62;
Background color/image&#60;br /&#62;
hover color/image&#60;br /&#62;
child menu items color/image&#60;br /&#62;
grandchild menu items color/image&#60;/p&#62;
&#60;p&#62;Ian, chris or some of the other css wizards could polish the css code up and maybe I will followup&#60;br /&#62;
with arrows and shadowing if there is enough interest. I think a full on tutorial&#60;br /&#62;
for superfish and thematic would be a great addition, that could address arrows, shadowing and changing the display defaults like&#60;br /&#62;
dissolve rates in a similar manner.&#60;/p&#62;
&#60;p&#62;I have used 3 images with gradients, but you could delete the links to those and&#60;br /&#62;
just go with flat background colors.&#60;/p&#62;
&#60;p&#62;This is what I ended up with, it is still a rough draft but good enough for me at the moment.&#60;br /&#62;
&#60;a href=&#34;http://www.besthealthsupplies.com&#34; rel=&#34;nofollow&#34;&#62;http://www.besthealthsupplies.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;you will need to decide the height of your menu strip and the font size. The images&#60;br /&#62;
and codes included are 42px high. This can be any height you want with some simple editing&#60;/p&#62;
&#60;p&#62;Strip all superfish menu css styling, anything sf-  and your #access div style from your style.css and default.css files&#60;/p&#62;
&#60;p&#62;add this import file command near the top of your style.css file -- @import URL('superfish-themed.css');&#60;/p&#62;
&#60;p&#62;if you are going to use images you can start with these: &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.rradvice.com/wp-content/themes/RRadvice/images/access-blue-42.gif&#34; rel=&#34;nofollow&#34;&#62;http://www.rradvice.com/wp-content/themes/RRadvice/images/access-blue-42.gif&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.rradvice.com/wp-content/themes/RRadvice/images/access-palelightblue-42.gif&#34; rel=&#34;nofollow&#34;&#62;http://www.rradvice.com/wp-content/themes/RRadvice/images/access-palelightblue-42.gif&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.rradvice.com/wp-content/themes/RRadvice/images/access-bblue-42.gif&#34; rel=&#34;nofollow&#34;&#62;http://www.rradvice.com/wp-content/themes/RRadvice/images/access-bblue-42.gif&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;create a folder named  &#34; images &#34; in your child theme directory and save them there&#60;/p&#62;
&#60;p&#62;create a new file called superfish-themed.css and save it to your child directory.&#60;br /&#62;
Change the border style between the menu items if you want to - see comments in css code &#60;/p&#62;
&#60;p&#62;copy the following code to the superfish-themed.css file. Load them to your server and you should be good to go&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;/*
Theme Name:
Theme URI:
Description:
Author:
Template: thematic
Version:

*/

/*** Overall section ***/
#access {  /* Sets the background for the menu division - called access in thematic */
    height:42px; /* this sets the height of your menus */
    font-size:16px;
    overflow:visible;
    z-index:100;
	background:#CFFBFF URL(images/access-blue-42.gif) repeat scroll 0 0; /* sets the color outside of your menu items - if you do not want to use images, you can replace the background lines with something like -- background: blue; -- */
	}
.skip-link { /* for accessibility */
   display:none;
}

/*** ESSENTIAL STYLES positioning***/
 /*coloring etc .. now handled by Theme section */
.sf-menu, .sf-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.sf-menu {
	line-height:	1.0;
}
.sf-menu ul {
	position:		absolute;
	top:			-999em;
	width:			10em; /* left offset of submenus need to match (see below) */
	}
.sf-menu ul li {
	width:			100%;
}
.sf-menu li:hover {
	visibility:		inherit; /* fixes IE7 &#38;#39;sticky bug&#38;#39; */
	}
.sf-menu li {
	float:			left;
	position:		relative;
}
.sf-menu a {
	display:		block;
	position:		relative;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	left:			0;
	top:			2.5em; /* match top ul list item height */
	z-index:		99;
	background:#CFFBFF URL(images/access-bblue-42.gif) repeat scroll 0 0; /*  hover effect - might not be needed duplicates lower entry **/
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
	top:			-999em;
	}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
	}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
	top:			-999em;
	}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
	left:			10em; /* match ul width */
	top:			0;
	}

	/******* Theme Specific SKIN *********/
.sf-menu {
	float:			left;
	margin-bottom:	1em;
	list-style: none;  /* this keeps the dots from showing after each menu item */

}
.sf-menu a {
	border-left:	1px solid #fff;  /* change this to match your color or delete if you do not want dividers between menu selections */
	border-top:		0px solid #CFDEFF;
	padding: 		.75em 1em;
	text-decoration:none; /*so your menu items are not underlined */
	}	

	.sf-menu a, .sf-menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
	color:			#0021BF; /*** main font color **/
  }   

  /*  - sets the background of the page you are on  */
.sf-menu .current_page_item a,
.sf-menu .current_page_ancestor a,
.sf-menu .current_page_parent a {
    border-bottom-color:#fff;
	background: #000000 url(images/access-lightblue-42.gif) repeat scroll 0 0;
}

.sf-menu li { /*this is the one that sets the top level background to blue */
	background:		#BDD2FF;
    background:#CFFBFF url(images/access-blue-42.gif) repeat scroll 0 0;
	list-style:none;
	}
.sf-menu li li {	/* this colors the 2nd level menus set to very light*/
	background:#CFFBFF url(images/access-palelightblue-42.gif) repeat scroll 0 0;
	}
.sf-menu li li li {  /* this sets the grandchild menus to very light */
	background:#CFFBFF url(images/access-palelightblue-42.gif) repeat scroll 0 0;
 }
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
	outline:	0;
	Color: #FF4B4B;  /*** redish **/
	background: #CFFBFF url(images/access-bblue-42.gif) repeat scroll 0 0; /* this is the one that makes the hover work */
}
/**** arrows and shadows not displaying in this version *****/
/*** arrows **/
.sf-menu a.sf-with-ul {
	padding-right: 	2.25em;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			.75em;
	top:			1.05em; /* IE6 only */
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
	background:		url(&#38;#39;../images/arrows-ffffff.png&#38;#39;) no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a &#38;gt; .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			.8em;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus &#38;gt; .sf-sub-indicator,
a:hover &#38;gt; .sf-sub-indicator,
a:active &#38;gt; .sf-sub-indicator,
li:hover &#38;gt; a &#38;gt; .sf-sub-indicator,
li.sfHover &#38;gt; a &#38;gt; .sf-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
background:#CFFBFF url(images/access-bblue-42.gif) repeat scroll 0 0;
}

/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator { background-position:  -10px 0; }
.sf-menu ul a &#38;gt; .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.sf-menu ul a:focus &#38;gt; .sf-sub-indicator,
.sf-menu ul a:hover &#38;gt; .sf-sub-indicator,
.sf-menu ul a:active &#38;gt; .sf-sub-indicator,
.sf-menu ul li:hover &#38;gt; a &#38;gt; .sf-sub-indicator,
.sf-menu ul li.sfHover &#38;gt; a &#38;gt; .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
	background:#CFFBFF url(images/access-bblue-42.gif) repeat scroll 0 0;
	}

/*** shadows for all but IE6 ***/
.sf-shadow ul {
	background:	url(&#38;#39;../images/shadow.png&#38;#39;) no-repeat bottom right;
	padding: 0 8px 9px 0;
	-moz-border-radius-bottomleft: 17px;
	-moz-border-radius-topright: 17px;
	-webkit-border-top-right-radius: 17px;
	-webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
	background: transparent;
}&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>mogito2000 on "Add h1 title to Blog page"</title>
<link>http://themeshaper.com/forums/topic/add-h1-title-to-blog-page#post-15450</link>
<pubDate>Wed, 08 Sep 2010 13:31:48 +0000</pubDate>
<dc:creator>mogito2000</dc:creator>
<guid isPermaLink="false">15450@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;Im struggling to get Blog page title to show. I have set the title for the page in Admin but it doesnt seem to be coming through. All other pages seem to show the title of the page.&#60;/p&#62;
&#60;p&#62;Is this default?&#60;/p&#62;
&#60;p&#62;What should i be doing in functions.php to get the title of the Blog page coming through?&#60;/p&#62;
&#60;p&#62;Thank you for any help provided.&#60;/p&#62;
&#60;p&#62;Mogito
&#60;/p&#62;</description>
</item>
<item>
<title>guyk on "Thematic function (custom CSS) to TinyMCE"</title>
<link>http://themeshaper.com/forums/topic/thematic-function-custom-css-to-tinymce#post-15449</link>
<pubDate>Wed, 08 Sep 2010 13:07:54 +0000</pubDate>
<dc:creator>guyk</dc:creator>
<guid isPermaLink="false">15449@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;hello&#60;/p&#62;
&#60;p&#62;i find this function and i want to use it with thematic&#60;br /&#62;
to add some function(custom CSS) to TinyMCE&#60;/p&#62;
&#60;p&#62;i think i have to transform to thematic function&#60;br /&#62;
can you give me the good way to do it&#60;/p&#62;
&#60;p&#62;thanks&#60;/p&#62;
&#60;p&#62;guy&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.wdmac.com/how-to-use-custom-styles-in-the-word-press-post-editor&#34; rel=&#34;nofollow&#34;&#62;http://www.wdmac.com/how-to-use-custom-styles-in-the-word-press-post-editor&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Editing you theme’s functions.php&#60;br /&#62;
/* Custom CSS styles on WYSIWYG Editor – Start&#60;br /&#62;
======================================= */&#60;br /&#62;
if ( ! function_exists( ‘myCustomTinyMCE’ ) ) :&#60;br /&#62;
function myCustomTinyMCE($init) {&#60;br /&#62;
$init['theme_advanced_buttons2_add_before'] = ‘styleselect’; // Adds the buttons at the begining. (theme_advanced_buttons2_add adds them at the end)&#60;br /&#62;
$init['theme_advanced_styles'] = ‘Float Left=fleft,Float Right=fright’;&#60;br /&#62;
return $init;&#60;br /&#62;
}&#60;br /&#62;
endif;&#60;br /&#62;
add_filter(‘tiny_mce_before_init’, ‘myCustomTinyMCE’ );&#60;br /&#62;
add_filter( ‘mce_css’, ‘tdav_css’ );&#60;br /&#62;
// incluiding the Custom CSS on our theme.&#60;br /&#62;
function mycustomStyles(){&#60;br /&#62;
wp_enqueue_style( ‘myCustomStyles’, get_bloginfo(‘template_url’).’/mycustomstyles.css’, ”,”,’all’ ); /*adjust this path if you place “mycustomstyles.css” in a different folder than the theme’s root.*/&#60;br /&#62;
}&#60;br /&#62;
add_action(‘init’, ‘mycustomStyles’);&#60;br /&#62;
/* Custom CSS styles on WYSIWYG Editor – End&#60;br /&#62;
======================================= */
&#60;/p&#62;</description>
</item>
<item>
<title>matteoc on "Display Subpages in Pages with smart layout with title, summary and link"</title>
<link>http://themeshaper.com/forums/topic/display-subpages-in-pages-with-smart-layout-with-title-summary-and-link#post-15447</link>
<pubDate>Wed, 08 Sep 2010 11:17:45 +0000</pubDate>
<dc:creator>matteoc</dc:creator>
<guid isPermaLink="false">15447@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I am sorry to bore you with this question, probably it requires just basic WP theme customization.&#60;/p&#62;
&#60;p&#62;I would like to create, before the footer of each of my pages, a smart display of the subpages of said page.&#60;/p&#62;
&#60;p&#62;I would like to have the first few lines of the subpages displayed, along with the title and a link to &#34;read more&#34; of the page. Ideally this would use a 2 column layout so to display the different subpages in a sort of grid.&#60;/p&#62;
&#60;p&#62;I have tried a number of plugins that allow to list the subpages (titles only). What I am specifically looking for is a way to provide also a summary of the text of the page and a separate link to go to the subpage.&#60;/p&#62;
&#60;p&#62;Thank you so much for your help.
&#60;/p&#62;</description>
</item>
<item>
<title>Seijun on "WP3 Custom Taxonomies and Thematic"</title>
<link>http://themeshaper.com/forums/topic/wp3-custom-taxonomies-and-thematic#post-15446</link>
<pubDate>Wed, 08 Sep 2010 10:38:18 +0000</pubDate>
<dc:creator>Seijun</dc:creator>
<guid isPermaLink="false">15446@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi all,&#60;br /&#62;
I've been looking at the examples &#60;a href=&#34;http://net.tutsplus.com/tutorials/wordpress/introducing-wordpress-3-custom-taxonomies/&#34;&#62;here&#60;/a&#62; and &#60;a href=&#34;http://www.1stwebdesigner.com/wordpress/essential-guide-wordpress-custom-taxonomies/&#34;&#62;here&#60;/a&#62; showing how Custom Taxonomies can be used in Wordpress postings. I would like to do something similar but I don't know if it's possible in the way I would be using it.&#60;/p&#62;
&#60;p&#62;Here is one of my WP posts:&#60;br /&#62;
&#60;a href=&#34;http://wolfdogrescue.net/adoption/all-available/balto-fl/&#34; rel=&#34;nofollow&#34;&#62;http://wolfdogrescue.net/adoption/all-available/balto-fl/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Where it says &#34;Location&#34; and &#34;Contact&#34; I would like those to be the taxonomy classifications and link to the pages with other posts in the same classification (i.e. all other posts with the same location or contact). Is it even possible to position a post's taxonomy classification within the content like that? Should I even be using Custom Taxonomies for something like this, or is there another method that would work better?
&#60;/p&#62;</description>
</item>
<item>
<title>Jamie Mitchell on "Lining up thematic logo/menu horizontally using css"</title>
<link>http://themeshaper.com/forums/topic/lining-up-thematic-logomenu-horizontally-using-css#post-15444</link>
<pubDate>Wed, 08 Sep 2010 06:45:48 +0000</pubDate>
<dc:creator>Jamie Mitchell</dc:creator>
<guid isPermaLink="false">15444@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Howdy all...&#60;/p&#62;
&#60;p&#62;ok, a lot of folks need a menu on the right and a logo on the left. where as thematic by default has the menu under the logo.&#60;/p&#62;
&#60;p&#62;thanks to some of Ian's clever coding tactics on themeshaper itself i have come up with this solution very quickly.&#60;/p&#62;
&#60;p&#62;hope i explain things ok, let me know if you find any issues.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;/* this is a base to horizontally line up your logo and menu,
you will need to adjust where required for your own individualy site...

first you will need to import one of the thematic layouts to your childtheme style.css as margins and widths are used,
then copy the thematic default.css to your childtheme style.css, then change the css as below*/

#header {
  border-bottom:1px solid #CCCCCC;
  z-index:2;
}
#branding {
  padding:40px 0;
  position:relative;
}
#access {
  /*nothing here*/
}
.menu {
  left:50%;
  margin-left: -470px;
  position:absolute;
  top:50px;
}
.sf-menu {
  border-right:1px solid #ccc;
	float:right;
}&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>adamvonwillis on "Moving the "Leave a Comment" link to top of post"</title>
<link>http://themeshaper.com/forums/topic/moving-the-leave-a-comment-link-to-top-of-post#post-15438</link>
<pubDate>Wed, 08 Sep 2010 01:41:34 +0000</pubDate>
<dc:creator>adamvonwillis</dc:creator>
<guid isPermaLink="false">15438@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I have been searching through the forum (and the rest of the internet) for the answer, but I just can't find it. Maybe I'm daft. I'm trying to move the &#34;Leave a Comment&#34; or &#34;# comment/s&#34; link to the top of the post under the title of the post. I guess I would have to move that link from the .entry-utility to the .entry-meta. I can't figure out how to do this. The end result would look like this:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;By ADAM WILLIS &#124; Published: JULY 30, 2010 &#124; Leave a comment&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;Any help would be greatly appreciated!
&#60;/p&#62;</description>
</item>
<item>
<title>mogito2000 on "How to add a DIV tag inside a function"</title>
<link>http://themeshaper.com/forums/topic/how-to-add-a-div-tag-inside-a-function#post-15420</link>
<pubDate>Tue, 07 Sep 2010 12:18:09 +0000</pubDate>
<dc:creator>mogito2000</dc:creator>
<guid isPermaLink="false">15420@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;Im having trouble adding a div tag with a funtion. &#60;/p&#62;
&#60;p&#62;This is the code im trying to use:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function child_primary_aside() {
	if (is_single()) {

        &#38;lt;DIV TAG TO GO HERE?? &#38;gt;

	$posttitle = &#38;#39;&#38;lt;h2&#38;gt;Project Information&#38;#39;;
	$posttitle .= &#38;quot;&#38;lt;/h2&#38;gt;&#38;quot;;
	echo $posttitle;

	the_excerpt();

        &#38;lt;DIV TAG TO END HERE?? /&#38;gt;

	}
	elseif (is_active_sidebar(&#38;#39;primary-aside&#38;#39;)) {
		echo thematic_before_widget_area(&#38;#39;primary-aside&#38;#39;);
		dynamic_sidebar(&#38;#39;primary-aside&#38;#39;);
		echo thematic_after_widget_area(&#38;#39;primary-aside&#38;#39;);
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;All i get when using this is a white screen. Is it possible to add DIV tags inside funtions?? If not, how would one go about doing this??&#60;/p&#62;
&#60;p&#62;Thanks for any advice given.&#60;/p&#62;
&#60;p&#62;Mogito
&#60;/p&#62;</description>
</item>
<item>
<title>ridgely on "Tip: Modify Thematic Page-Title"</title>
<link>http://themeshaper.com/forums/topic/tip-modify-thematic-page-title#post-15431</link>
<pubDate>Tue, 07 Sep 2010 17:19:25 +0000</pubDate>
<dc:creator>ridgely</dc:creator>
<guid isPermaLink="false">15431@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Every two or three weeks, I'll see a question around here pertaining to &#60;code&#62;thematic_page_title&#60;/code&#62; which you see at the top of thematic archive, category and tag pages. Usually the question is about removing the &#34;Category/Tag/Search Archive:&#34; text. But if you're like me, you have to make things even more complex. In my case, I wanted my page titles to not look quite so much like afterthoughts (apologies to our Noble Builder, Mr. Stewart). I also wanted the &#60;code&#62;&#38;lt;div class=&#38;quot;archive-meta&#38;quot;&#38;gt;&#60;/code&#62; on the same line with the page title. This caused a CSS problem with display, causing the actual posts to ride up next to the description. So I needed an additional &#60;code&#62;div&#60;/code&#62; around &#60;code&#62;h1&#60;/code&#62; and &#60;code&#62;&#38;lt;div class=&#38;quot;archive-meta&#38;quot;&#38;gt;&#60;/code&#62; so I could keep the page title and description in line and keep the page content from crawling up next to them.&#60;/p&#62;
&#60;p&#62;In my &#60;code&#62;functions.php&#60;/code&#62; file:&#60;/p&#62;
&#60;blockquote&#62;&#60;pre&#62;&#60;code&#62;function childtheme_page_title() {
		if (is_category()) {
                                $content .= &#38;#39;&#38;lt;div class=&#38;quot;archive-head&#38;quot;&#38;gt;&#38;#39;; /*Begin encompassing div*/
				$content .= &#38;#39;&#38;lt;h1 class=&#38;quot;page-title&#38;quot;&#38;gt;&#38;#39;;
				$content .= __(&#38;#39;&#38;#39;, &#38;#39;thematic&#38;#39;); /*This removes the &#38;quot;Category Archives:&#38;quot; text*/
				$content .= &#38;#39; &#38;lt;span&#38;gt;&#38;#39;;
				$content .= single_cat_title(&#38;#39;&#38;#39;, FALSE);
				$content .= &#38;#39;&#38;lt;/span&#38;gt;&#38;lt;/h1&#38;gt;&#38;#39;;/*End Category Archive Title*/
				$content .= &#38;#39;&#38;lt;div class=&#38;quot;archive-meta&#38;quot;&#38;gt;&#38;#39;;/*Begin Category Description*/
				if ( !(&#38;#39;&#38;#39;== category_description()) ) : $content .= apply_filters(&#38;#39;archive_meta&#38;#39;, category_description()); endif;
				$content .= &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;/div&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;; /*End description and close encompassing div*/
			} elseif (is_tag()) {
				$content .= &#38;#39;&#38;lt;div class=&#38;quot;archive-head&#38;quot;&#38;gt;&#38;#39;;/*Same deal*/
				$content .= &#38;#39;&#38;lt;h1 class=&#38;quot;page-title&#38;quot;&#38;gt;&#38;#39;;
				$content .= __(&#38;#39;&#38;#39;, &#38;#39;thematic&#38;#39;);
				$content .= &#38;#39; &#38;lt;span&#38;gt;&#38;#39;;
				$content .= single_tag_title(&#38;#39;&#38;#39;, FALSE);
				$content .= &#38;#39;&#38;lt;/span&#38;gt;&#38;lt;/h1&#38;gt;&#38;#39;;
				$content .= &#38;#39;&#38;lt;div class=&#38;quot;archive-meta&#38;quot;&#38;gt;&#38;#39;;
				if ( !(&#38;#39;&#38;#39;== tag_description()) ) : $content .= apply_filters(&#38;#39;archive_meta&#38;#39;, tag_description()); endif;
				$content .= &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;/div&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;
			} elseif (is_tax())	{
				global $taxonomy;
				$content .= &#38;#39;&#38;lt;div class=&#38;quot;archive-head&#38;quot;&#38;gt;&#38;#39;;
				$content .= &#38;#39;&#38;lt;h1 class=&#38;quot;page-title&#38;quot;&#38;gt;&#38;#39;;
				$tax = get_taxonomy($taxonomy);
				//$content .= $tax-&#38;gt;labels-&#38;gt;name . &#38;#39; &#38;#39;;/*Hides the actual taxonomy name*/
				$content .= __(&#38;#39; &#38;#39;, &#38;#39;thematic&#38;#39;);
				$content .= &#38;#39;&#38;lt;span&#38;gt;&#38;#39;;
				$content .= thematic_get_term_name();/*Similar to single_cat_title*/
				$content .= &#38;#39;&#38;lt;/span&#38;gt;&#38;lt;/h1&#38;gt;&#38;#39;;
				$content .= &#38;#39;&#38;lt;div class=&#38;quot;archive-meta&#38;quot;&#38;gt;&#38;#39;;
				if ( !(&#38;#39;&#38;#39;== term_description()) ) : $content .= apply_filters(&#38;#39;archive_meta&#38;#39;, term_description()); endif;
				$content .= &#38;#39;&#38;lt;/div&#38;gt;&#38;lt;/div&#38;gt;&#38;#39; . &#38;quot;\n&#38;quot;;
			}
			return $content;
		}
add_filter(&#38;#39;thematic_page_title&#38;#39;, &#38;#39;childtheme_page_title&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;/blockquote&#62;
&#60;p&#62;Here's the CSS:&#60;/p&#62;
&#60;blockquote&#62;&#60;pre&#62;&#60;code&#62;/*=====CATEGORY ARCHIVE PAGE TITLES + DESCRIPTIONS====*/
.archive-head {
		margin: 0 auto;
		width: 560px;
		float: none;
		clear: both;
		overflow: hidden;
		padding-bottom: 22px;
}

h1.page-title {
		width: 200px;
		float: left;
		clear: none;
		margin: 6px 10px 11px 0;
		padding: 0 10px 0 0;
		background: url(&#38;#39;images/bracket.png&#38;#39;) no-repeat scroll top right #fff;
		height: 70px;
}

h1.page-title span {
		font-family: Georgia, &#38;quot;Times New Roman&#38;quot;, Times, serif;
		font-size: 2.675em;
		line-height: 1.125em;
		font-weight: normal;
		font-style: normal;
}

/* Styles Category Archive Descriptions */
.archive-meta {
		width: 330px;
		float: left;
		padding: 0;
		margin: 0 0 11px 0;
		font-style: italic;
}

.archive-meta p {
		font-size: 1em/16px;
		line-height: 1.375em/22px;
		padding: 0 10px;
}

h1.page-title span,
h1.page-title {
		vertical-align: middle;
}
h1.page-title,
.archive-meta {
	vertical-align: middle;
}
/* END TAX/CAT ARCHIVE PAGE TITLES + DESCRIPTIONS====*/&#60;/code&#62;&#60;/pre&#62;
&#60;/blockquote&#62;
&#60;p&#62;And you can see the result &#60;a href=&#34;http://ridgelyschantz.com/category/uncharted/&#34; title=&#34;Category Page Title&#34;&#62;here&#60;/a&#62; (Contains no posts, but ready for when it does).
&#60;/p&#62;</description>
</item>
<item>
<title>erikvlie on "exclude posts from specific categories"</title>
<link>http://themeshaper.com/forums/topic/exclude-posts-from-specific-categories#post-13142</link>
<pubDate>Wed, 16 Jun 2010 16:35:03 +0000</pubDate>
<dc:creator>erikvlie</dc:creator>
<guid isPermaLink="false">13142@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I'm trying to exclude posts from one category on the home page. I'm using WP3RC3 and this is what I tried. I am absolutely dumb with regards to PHP and programming in general.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//Exclude posts from category xyz
function excludeposts() {
   if (is_home()) {
      query_posts(&#38;quot;cat=-4136&#38;quot;);
   }
   }
add_filter (&#38;#39;thematic_content&#38;#39;,&#38;#39;excludeposts&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks for the help --any help.
&#60;/p&#62;</description>
</item>
<item>
<title>guerrilladesign on "Autofocus+ question"</title>
<link>http://themeshaper.com/forums/topic/autofocus-question#post-13199</link>
<pubDate>Fri, 18 Jun 2010 03:52:15 +0000</pubDate>
<dc:creator>guerrilladesign</dc:creator>
<guid isPermaLink="false">13199@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;To start off, this is the blog I'll be referring to: &#60;a href=&#34;http://guerrilla-photography.com/blog/&#34; rel=&#34;nofollow&#34;&#62;http://guerrilla-photography.com/blog/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I'm using the Autofocus+ Pro theme which is a child theme of Thematic.  What I'm trying to do is change the colors of the picture boxes and the text that goes over them.  In the Autofocus options I can do this, but it changes more than I would like.  With the two images that are up there currently I would like the background to be the dark blue instead of the yellow and when you mouse over the image I would like it to become blue instead of yellow, and the text that shows up to be yellow instead of dark blue.  When using the options the changes happen to more than one of these, and then you can't see the text that shows up, so if anyone has come across this and found a way to go in to the actual code to do this, that would be awesome.&#60;/p&#62;
&#60;p&#62;Thanks in advance.
&#60;/p&#62;</description>
</item>
<item>
<title>ssassen on "Changing color of links for different sections"</title>
<link>http://themeshaper.com/forums/topic/changing-color-of-links-for-different-sections#post-4349</link>
<pubDate>Sat, 06 Jun 2009 20:22:13 +0000</pubDate>
<dc:creator>ssassen</dc:creator>
<guid isPermaLink="false">4349@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi&#60;/p&#62;
&#60;p&#62;This is my blog:&#60;br /&#62;
&#60;a href=&#34;http://we-are-awesome.com/blog/&#34; rel=&#34;nofollow&#34;&#62;http://we-are-awesome.com/blog/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I am wanting to change the color of the links in the content section and leave the color as it is in the sidebar.&#60;br /&#62;
But im not too sure how to do that?&#60;/p&#62;
&#60;p&#62;Is there a way?&#60;br /&#62;
When i change the link color in the stylesheet it just changes everything...
&#60;/p&#62;</description>
</item>
<item>
<title>rscamero92 on "Functions.php question"</title>
<link>http://themeshaper.com/forums/topic/functionsphp-question#post-15403</link>
<pubDate>Mon, 06 Sep 2010 17:25:58 +0000</pubDate>
<dc:creator>rscamero92</dc:creator>
<guid isPermaLink="false">15403@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I downloaded a small plugin (&#60;a href=&#34;http://www.technozeast.com/style-box&#34;&#62;Style Box&#60;/a&#62;). Well I want to add this as a function to my functions.php instead of using it as a plugin. Basically so I can customize it to my liking. &#60;/p&#62;
&#60;p&#62;Here is the plugins functions code....&#60;br /&#62;
&#60;br /&#62;
//&#60;br /&#62;
//&#60;br /&#62;
//&#60;br /&#62;
function style_box(){&#60;br /&#62;
    $style_box = get_option('style_box');&#60;br /&#62;
    if($style_box=='1'){&#60;br /&#62;
        if ( !defined('WP_CONTENT_URL') ) define( 'WP_CONTENT_URL', get_option('siteurl') . '/wp-content');&#60;br /&#62;
        $plugin_url = WP_CONTENT_URL.'/plugins/'.plugin_basename(dirname(__FILE__));&#60;br /&#62;
        echo '&#38;lt;link rel=&#34;stylesheet&#34; href=&#34;'.$plugin_url.'/style.css&#34;'.' type=&#34;text/css&#34; media=&#34;screen&#34; /&#38;gt;';&#60;br /&#62;
    }&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;function active_style_box(){&#60;br /&#62;
        add_option('style_box','1','active the plugin');&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;function deactive_style_box(){&#60;br /&#62;
    delete_option('style_box');&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;add_action('wp_head', 'style_box');&#60;/p&#62;
&#60;p&#62;register_activation_hook(__FILE__,'active_style_box');&#60;br /&#62;
register_deactivation_hook(__FILE__,'deactive_style_box');&#60;/p&#62;
&#60;p&#62;What part of the code, if any, do I delete so that it isn't a &#34;plugin&#34;. Or am I just over thinking this?
&#60;/p&#62;</description>
</item>
<item>
<title>ridgely on "Conditional childtheme_override"</title>
<link>http://themeshaper.com/forums/topic/conditional-childtheme_override#post-15408</link>
<pubDate>Mon, 06 Sep 2010 22:45:09 +0000</pubDate>
<dc:creator>ridgely</dc:creator>
<guid isPermaLink="false">15408@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;(Building from 0.9.7.4 rev709)&#60;br /&#62;
If you want a conditional &#60;code&#62;childtheme_override&#60;/code&#62;, for example, you want to use the &#60;code&#62;childtheme_override_category_loop&#60;/code&#62; only on certain category pages, where does the condition need to occur. I tried inserting the condition within the &#60;code&#62;childtheme_override&#60;/code&#62; but that didn't work entirely as intended, i.e. it affected ALL my category pages:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;/*Custom Category Loop for certain Categories*/
function childtheme_override_category_loop() {
		if (is_category(&#38;#39;drawing&#38;#39;)&#124;&#124; is_category(&#38;#39;painting&#38;#39;)) {
	 	while ( have_posts()	)	:	the_post()	// Start the loop:
?&#38;gt;
		&#38;lt;div id=&#38;quot;post-&#38;lt;?php	the_ID() ?&#38;gt;&#38;quot; class=&#38;quot;&#38;lt;?php	thematic_post_class()	?&#38;gt;&#38;quot;&#38;gt;
				&#38;lt;?php	thematic_postheader(); ?&#38;gt;
				&#38;lt;?php	get_the_image( array(	&#38;#39;custom_key&#38;#39; =&#38;gt;	array( &#38;#39;Thumbnail&#38;#39;,	&#38;#39;thumbnail&#38;#39;	), &#38;#39;default_size&#38;#39;	=&#38;gt; &#38;#39;thumbnail&#38;#39; ) );	?&#38;gt;
				&#38;lt;div class=&#38;quot;entry-content&#38;quot;&#38;gt;
		&#38;lt;?php	thematic_content();	?&#38;gt;
				&#38;lt;/div&#38;gt;
				&#38;lt;?php	thematic_postfooter(); ?&#38;gt;
		&#38;lt;/div&#38;gt;&#38;lt;!-- .post --&#38;gt;
		&#38;lt;?php	endwhile;	// loop	done,	go back	up
		}
	}&#60;/code&#62;&#60;/pre&#62;</description>
</item>

</channel>
</rss>
