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

<item>
<title>perryb on "Unstable css"</title>
<link>http://themeshaper.com/forums/topic/unstable-css#post-15481</link>
<pubDate>Thu, 09 Sep 2010 10:31:16 +0000</pubDate>
<dc:creator>perryb</dc:creator>
<guid isPermaLink="false">15481@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Glad you're making some progress. I forgot to ask: are you using Firebug at all (a web developer plug-in for Firefox, Google Chrome etc)?&#60;/p&#62;
&#60;p&#62;If not it offers a very useful tool for quickly tracking down how CSS styles are applied on your web pages and helps you to see how precedence works (when a style is applied within nested divs etc).&#60;/p&#62;
&#60;p&#62;You can even do some limited live edits of the CSS to quickly test things out or remove styles that aren't working.&#60;/p&#62;
&#60;p&#62;I found that it really helped me to get my head around how CSS works - though there is a slight learning curve when first using it.&#60;/p&#62;
&#60;p&#62;As Jamie says above; try and work out how to apply your styles generally across the page to avoid conflicts (in your case work out what all the widget elements have in common) before targeting specific areas.&#60;/p&#62;
&#60;p&#62;For example (using your site code):&#60;/p&#62;
&#60;p&#62;The &#60;code&#62;.aside&#60;/code&#62; class will apply styles to all of the areas that contain widgets.&#60;/p&#62;
&#60;p&#62;Then use the more specific widget classes and ids to make more targeted changes.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;id=&#38;quot;header-left&#38;quot;&#60;/code&#62; will style that particular column area&#60;br /&#62;
&#60;code&#62;class=&#38;quot;.widget_recent_entries&#38;quot;&#60;/code&#62; will style that specific widget
&#60;/p&#62;</description>
</item>
<item>
<title>mrsmarshah on "Inserting post-thumbnails in Thematic"</title>
<link>http://themeshaper.com/forums/topic/inserting-post-thumbnails-in-thematic#post-15480</link>
<pubDate>Thu, 09 Sep 2010 10:00:01 +0000</pubDate>
<dc:creator>mrsmarshah</dc:creator>
<guid isPermaLink="false">15480@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Chris, &#60;/p&#62;
&#60;p&#62;I am having the same problem but I am using get_the_post_thumbnail. What am I still doing wrong? (thumbnail is displayed above the title)&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
add_theme_support('post-thumbnails');&#60;br /&#62;
set_post_thumbnail_size( 250, 250, true );&#60;br /&#62;
function my_post_title($title) {&#60;br /&#62;
	if (is_category()) {&#60;br /&#62;
		return get_the_post_thumbnail(NULL, 'thumbnail') . $title;&#60;br /&#62;
	} else {&#60;br /&#62;
		return $title;&#60;br /&#62;
	}&#60;br /&#62;
}&#60;br /&#62;
add_filter('thematic_postheader_posttitle', 'my_post_title');&#60;br /&#62;
&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Jamie Mitchell on "Unstable css"</title>
<link>http://themeshaper.com/forums/topic/unstable-css#post-15479</link>
<pubDate>Thu, 09 Sep 2010 07:09:42 +0000</pubDate>
<dc:creator>Jamie Mitchell</dc:creator>
<guid isPermaLink="false">15479@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;you should have those header widgets in a div..&#60;/p&#62;
&#60;p&#62;forget all the borders and stuff you have used to position the lists etc...&#60;/p&#62;
&#60;p&#62;just use the same css as is used in the footer widgets, as it is the same 3 columns you are trying to create in the header, so style them the same way first, then make adjustment from there...
&#60;/p&#62;</description>
</item>
<item>
<title>Jamie Mitchell on "Thematic Menus Demystified"</title>
<link>http://themeshaper.com/forums/topic/thematic-menus-demystified-1#post-15478</link>
<pubDate>Thu, 09 Sep 2010 06:19:08 +0000</pubDate>
<dc:creator>Jamie Mitchell</dc:creator>
<guid isPermaLink="false">15478@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;you rock Viking !
&#60;/p&#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-15477</link>
<pubDate>Thu, 09 Sep 2010 03:43:52 +0000</pubDate>
<dc:creator>charlietounah</dc:creator>
<guid isPermaLink="false">15477@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;If anyone is interested, I discovered that widget-logic provides for a tag called widget-content, which can be used in place of the content tag.
&#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>em hr on ""Older posts" link broken in search results"</title>
<link>http://themeshaper.com/forums/topic/older-posts-link-broken-in-search-results#post-15475</link>
<pubDate>Thu, 09 Sep 2010 03:00:14 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">15475@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi jcollier-&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;get_bloginfo(&#38;#39;home&#38;#39;)&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;has been deprecated in favor of&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;get_bloginfo( &#38;#39;url&#38;#39; )&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;try that substitution and report back. I think this may  solve your problem. At least it does on with my test set up. The 'url' parameter is what is included in the 0.9.7.5 svn  version.&#60;/p&#62;
&#60;p&#62;-Gene
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Help Adding an Image Border!"</title>
<link>http://themeshaper.com/forums/topic/help-adding-an-image-border#post-15474</link>
<pubDate>Thu, 09 Sep 2010 02:08:58 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">15474@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;sounds like you need to check out some tutorials on child theming in general.&#60;/p&#62;
&#60;p&#62;here is a good place to start:&#60;br /&#62;
&#60;a href=&#34;http://www.catswhocode.com/blog/wordpress-how-to-easily-create-a-thematic-child-theme&#34; rel=&#34;nofollow&#34;&#62;http://www.catswhocode.com/blog/wordpress-how-to-easily-create-a-thematic-child-theme&#60;/a&#62;
&#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>helgatheviking on "How to add superfish menu?"</title>
<link>http://themeshaper.com/forums/topic/how-to-add-superfish-menu#post-15471</link>
<pubDate>Thu, 09 Sep 2010 00:48:41 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">15471@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;superfish is automatic if you have sub-menus.  &#60;/p&#62;
&#60;p&#62;out of the box thematic uses wp_page_menu as your menu, which just lists all your pages.  if you have some pages that are filed under other others (child&#38;gt;parent) relationships they will automatically be dropdowns.  &#60;/p&#62;
&#60;p&#62;for almost everything you could think of about menus please check my other thread:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://themeshaper.com/forums/topic/thematic-menus-demystified-1&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/forums/topic/thematic-menus-demystified-1&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>nickbernier on "Help Adding an Image Border!"</title>
<link>http://themeshaper.com/forums/topic/help-adding-an-image-border#post-15470</link>
<pubDate>Wed, 08 Sep 2010 23:32:35 +0000</pubDate>
<dc:creator>nickbernier</dc:creator>
<guid isPermaLink="false">15470@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks, the site is still a work in progress but it was really neat to put together as I had to take advantage of the functions.php and the hooks. Added my own widget areas at the bottom in the footer and social icons at the top. &#60;/p&#62;
&#60;p&#62;Keep working at it, lots of great people on this forum willing to help.
&#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-15469</link>
<pubDate>Wed, 08 Sep 2010 23:04:29 +0000</pubDate>
<dc:creator>jamesObZ</dc:creator>
<guid isPermaLink="false">15469@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Nick,&#60;/p&#62;
&#60;p&#62;I understand now, that was very helpful - thanks a lot!&#60;br /&#62;
I will get arou8dn to fixing the imaging later, I have nearly got everything back to how it was editing it all correctly this time now :)&#60;/p&#62;
&#60;p&#62;By the way, nice site - looks smart, and some lovely high quality pics!
&#60;/p&#62;</description>
</item>
<item>
<title>nickbernier on "Help Adding an Image Border!"</title>
<link>http://themeshaper.com/forums/topic/help-adding-an-image-border#post-15468</link>
<pubDate>Wed, 08 Sep 2010 21:35:11 +0000</pubDate>
<dc:creator>nickbernier</dc:creator>
<guid isPermaLink="false">15468@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;The safest way to go about things is to make a copy of the sample child theme folder located inside of Thematic's folder. Then rename the folder to what you want you theme to be. Now go inside your newly renamed folder and open up style.css. You'll see header info at the top, modify that to your liking, ie: give it your own theme name, put your name etc...&#60;/p&#62;
&#60;p&#62;&#34; Make sure you did this with a clean &#34;Thematic&#34; install!!! or else your previous mods will change things&#34;&#60;/p&#62;
&#60;p&#62;Go into your Wordpress admin panel, and you should now see a new available theme, the one you just created. Even if there is nothing new in the style.css or functions.php! Change your theme to that one before starting any of your edits. The goal of a child theme is to never, ever touch the parent theme. This way, if Thematic releases a new version, you simply upload the new version replacing the old one and your child theme should remain unaffected.&#60;/p&#62;
&#60;p&#62;----&#60;/p&#62;
&#60;p&#62;The functions.php is used to add, remove or edit what Thematic does out of the box. ie: add a new &#38;lt;div&#38;gt; in the header or footer. Remove the entire drop down menu etc... If all you want to do is change the look and make minor adjustments that are all CSS based, then you don't need to touch the functions.php file, only style.css.&#60;/p&#62;
&#60;p&#62;You see what happens is that your theme folder, style.css file inside it points to the main &#34;thematic&#34; folder. Wordpress sees that and uses everything from the original thematic folder and styles ..... unless you add your own css twists in your child theme's style.css file. So using Firebug, rigth-click on anything on your blog and it will &#34;inspect&#34; it and return the section of code and its appropriate CSS. Because CSS (cascading style sheet) inherits, your theme inherits all the default &#34;Thematic&#34; css definitions. Say &#34;thematic&#34; styles &#34;h2.entry-title&#34; a widht a font size of 11px and you want it to be 16px. All you need to add to your style.css is:&#60;br /&#62;
h2.entry-title {font-size:16px;} If your style.css depends on new images you created such as buttons or background images, then create a &#34;images&#34; folder inside your own child theme folder and link to them.&#60;/p&#62;
&#60;p&#62;That's it, wordpress will keep all the other css definitions and &#34;update&#34; the font-size only! &#60;/p&#62;
&#60;p&#62;It gets kinda weird when you use the functions.php file and manipulate the many &#34;hooks&#34; in Thematic. I had a hard time grasping the whole context. But within a month of reading posts / tutorials on this forum I was able to put this together: &#60;a href=&#34;http://www.daniellelynnphotography.com/blog/&#34; rel=&#34;nofollow&#34;&#62;http://www.daniellelynnphotography.com/blog/&#60;/a&#62;   Its my wife photo blog, I only do this as a hobby so I'm pretty proud about it! &#60;/p&#62;
&#60;p&#62;Nick
&#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-15467</link>
<pubDate>Wed, 08 Sep 2010 21:19:49 +0000</pubDate>
<dc:creator>jamesObZ</dc:creator>
<guid isPermaLink="false">15467@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey Nick,&#60;/p&#62;
&#60;p&#62;Thanks for the response.  To be honest i have never really understood this child theme concept.  I have been making all changes to the original files. &#60;/p&#62;
&#60;p&#62;Are you saying that for any change i need to make i should be doing it within the child theme?  Or is this just for additions?  As there are only 2 files there.  Style.css and functions.php
&#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>nickbernier on "Help Adding an Image Border!"</title>
<link>http://themeshaper.com/forums/topic/help-adding-an-image-border#post-15464</link>
<pubDate>Wed, 08 Sep 2010 19:37:43 +0000</pubDate>
<dc:creator>nickbernier</dc:creator>
<guid isPermaLink="false">15464@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi, just had a quick look at it. PSFlannery's suggestion is right, in your child theme's style.css add this:&#60;br /&#62;
.entry-content img {&#60;br /&#62;
border:10px solid #000;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;Change the CSS to your needs, but basically with a child theme you only need to add what you want to make different. IE: in this case change .entry-content img css only. Don't mess around with deleting .aligncenter etc...&#60;/p&#62;
&#60;p&#62;Try just adding that new specification for .entry-content img. Using Firefox and the firebug plugin, right click on your image and you'll see exactly what is influencing the styling. (ie: .aligncenter img will show up first then .entry-content.&#60;/p&#62;
&#60;p&#62;I had a hard time wrapping my head around the child theme concept, I thought all the CSS had to be re-written, but you want to do the complete opposite and cause the least amount of changes as possible to achieve you goal.&#60;/p&#62;
&#60;p&#62;In summary:&#60;/p&#62;
&#60;p&#62;- Firefox or Safari with the Firebug plugin and &#34;inspect&#34; your current site and the image in question. It will tell you a lot.&#60;br /&#62;
- Only add the .entry-content img css changes you want to change.&#60;br /&#62;
- Finally, using firebug, you'll see that Wordpress has given your image a unique class of wp-image-73 which you can use to style that one specific image. Not really great, but will work in a pinch!&#60;/p&#62;
&#60;p&#62;Nick
&#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-15463</link>
<pubDate>Wed, 08 Sep 2010 17:41:49 +0000</pubDate>
<dc:creator>zhafran</dc:creator>
<guid isPermaLink="false">15463@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;anyone? please help me :( your help will greatly be appreciated :D
&#60;/p&#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>jamesObZ on "Help Adding an Image Border!"</title>
<link>http://themeshaper.com/forums/topic/help-adding-an-image-border#post-15461</link>
<pubDate>Wed, 08 Sep 2010 17:23:23 +0000</pubDate>
<dc:creator>jamesObZ</dc:creator>
<guid isPermaLink="false">15461@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I am not too sure what to do here.  If you could be so kind please:&#60;/p&#62;
&#60;p&#62;1.  Tell me all the CSS code i should remove.&#60;br /&#62;
2.  Tell me all the code i need to add and where it should be added (what filenames etc)&#60;br /&#62;
3.  What code to insert etc to enable me to active the new CSS etc&#60;/p&#62;
&#60;p&#62;Many thanks!
&#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-15460</link>
<pubDate>Wed, 08 Sep 2010 17:06:37 +0000</pubDate>
<dc:creator>nimrod</dc:creator>
<guid isPermaLink="false">15460@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Well, I pulled the dashes from all variable names without any change. The result is the same: Name shows from the else segment only.&#60;/p&#62;
&#60;p&#62;@helgatheviking: if I add the following code outside the if statement, it simply does as expected and returns the text for the entered website address:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php echo get_post_meta(get_the_ID(), &#38;#39;author_website&#38;#39;, true); ?&#38;gt;&#60;/code&#62;&#60;br /&#62;
_________&#60;/p&#62;
&#60;p&#62;This new version has some success and actually shows the name with the proper link. But, it does NOT use the else segment when NO web site data is entered in the field (instead it links the author name with just &#34;http:/&#34; rather than just showing the name):&#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 !== &#38;#39;&#38;#39;) {
	echo &#38;#39;&#38;lt;a href=&#38;quot;http://&#38;#39; . get_post_meta(get_the_ID(), &#38;#39;author_website&#38;#39;, true) . &#38;#39;&#38;quot; title=&#38;quot;View author&#38;amp;rsquo;s website&#38;quot;&#38;gt;&#38;#39; . get_post_meta(get_the_ID(), &#38;#39;author_name&#38;#39;, true) . &#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;Note that both lines 1 and 2 utilize double equals &#34;==&#34; (if not, then just the name shows up) and I used the longer &#60;code&#62;&#38;#39; . get_post_meta(get_the_ID(), &#38;#39;author_website&#38;#39;, true) . &#38;#39;&#60;/code&#62; in line 3 instead of just &#60;code&#62;&#38;#39; . $author_website . &#38;#39;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;So, the question is: is there some syntax or other issue that stops it from using the else segment when no data is entered in the author website field?&#60;br /&#62;
_________&#60;/p&#62;
&#60;p&#62;I finally have a prototype site that shows the above code in action (for now):&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://themagpielist.com/page/2/&#34; rel=&#34;nofollow&#34;&#62;http://themagpielist.com/page/2/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The first name at the bottom of the list shows a properly linked name while the other two posts do not have website data entered in the author_website field and show the wrong link.
&#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>Jonny Janiero on "autufocus+ no parent theme"</title>
<link>http://themeshaper.com/forums/topic/autufocus-no-parent-theme#post-15458</link>
<pubDate>Wed, 08 Sep 2010 16:01:56 +0000</pubDate>
<dc:creator>Jonny Janiero</dc:creator>
<guid isPermaLink="false">15458@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;once its in there. you dont need to activate it. just activate autofocus.&#60;br /&#62;
let me know how you get on
&#60;/p&#62;</description>
</item>
<item>
<title>Jonny Janiero on "autufocus+ no parent theme"</title>
<link>http://themeshaper.com/forums/topic/autufocus-no-parent-theme#post-15457</link>
<pubDate>Wed, 08 Sep 2010 16:01:15 +0000</pubDate>
<dc:creator>Jonny Janiero</dc:creator>
<guid isPermaLink="false">15457@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;AutoFocus is a child theme of THEMATIC&#60;/p&#62;
&#60;p&#62;you need to pop THEMATIC in you wp-content/themes  folder as well as autofocus&#60;br /&#62;
&#60;a href=&#34;http://wordpress.org/extend/themes/thematic&#34;&#62;http://wordpress.org/extend/themes/thematic&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>knowlsy on "Different Menu Images"</title>
<link>http://themeshaper.com/forums/topic/different-menu-images#post-15456</link>
<pubDate>Wed, 08 Sep 2010 15:51:10 +0000</pubDate>
<dc:creator>knowlsy</dc:creator>
<guid isPermaLink="false">15456@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;yeh, sorry, this is the site i have had to re-direct to because somebody gave out the link!! so ignore all of this!!&#60;/p&#62;
&#60;p&#62;i'm still on the connection that doesn't allow ftp traffic, so i can't sort out either a subsiduary on the website, or a free host one like you sugested.&#60;/p&#62;
&#60;p&#62;I've been trying different things to fix it all day and am not getting very far.&#60;/p&#62;
&#60;p&#62;does anybody know of a different way? is there a way to simply add individual images to the menu that already exists in thematic? I know how i can just add an image to them all, but i don't know how to add them to individual tabs (to get the different coloured, curved top tabs i'm looking for)&#60;/p&#62;
&#60;p&#62;thanks again!
&#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>jcollier on ""Older posts" link broken in search results"</title>
<link>http://themeshaper.com/forums/topic/older-posts-link-broken-in-search-results#post-15454</link>
<pubDate>Wed, 08 Sep 2010 13:52:21 +0000</pubDate>
<dc:creator>jcollier</dc:creator>
<guid isPermaLink="false">15454@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;A follow-up. &#60;/p&#62;
&#60;p&#62;The previous correction fixed multisite instances delivered on different domains (e.g., domain1.com, domain2.com), but not subdirectories (domain1.com/first, domain1.com/second) where the problem of duplicated folder remains: &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://domain1.com/first/first/page/2/?s=term&#38;#38;searchsubmit=Search&#34; rel=&#34;nofollow&#34;&#62;http://domain1.com/first/first/page/2/?s=term&#38;#38;searchsubmit=Search&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Should be:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://domain1.com/first/page/2/?s=term&#38;#38;searchsubmit=Search&#34; rel=&#34;nofollow&#34;&#62;http://domain1.com/first/page/2/?s=term&#38;#38;searchsubmit=Search&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Adding the trailing slash seems to make no difference.&#60;/p&#62;
&#60;p&#62;Any ideas?
&#60;/p&#62;</description>
</item>
<item>
<title>rscamero92 on "Different Menu Images"</title>
<link>http://themeshaper.com/forums/topic/different-menu-images#post-15453</link>
<pubDate>Wed, 08 Sep 2010 13:45:01 +0000</pubDate>
<dc:creator>rscamero92</dc:creator>
<guid isPermaLink="false">15453@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Ooops..... THIS is (edited so it doesn't link from here) what I'm seeing&#60;br /&#62;
&#60;/p&#62;
&#60;p&#62;&#38;lt;div id=&#34;nav&#34;)&#60;br /&#62;
&#38;lt;ul)&#60;br /&#62;
&#38;lt;li)(a href=&#34;index.html&#34;&#38;gt;Home&#60;br /&#62;
&#38;lt;li)(a title=&#34;See where they are, what they do and who's there&#34; href=&#34;communities.html&#34;&#38;gt;Communities&#60;br /&#62;
&#38;lt;li)(a title=&#34;What's been happening in our province and further afield&#34; href=&#34;news.html&#34;&#38;gt;News&#60;br /&#62;
&#38;lt;li)(a title=&#34;A brief overview of from 1887 to the present day&#34; href=&#34;history.html&#34;&#38;gt;History&#60;br /&#62;
&#38;lt;li)(a title=&#34;Meet St John Bosco, St Dominic Savio and others&#34; href=&#34;saints.html&#34;&#38;gt;Saints&#60;br /&#62;
&#38;lt;li)(a title=&#34;Maybe you are thinking of serving young people as a Salesian priest or brother?&#34; href=&#34;vocations.html&#34;&#38;gt;Vocations&#60;br /&#62;
&#38;lt;li)(a title=&#34;You can work with us for a few months or longer!&#34; href=&#34;volunteers.html&#34;&#38;gt;Volunteers&#60;br /&#62;
&#38;lt;li)(a title=&#34;Other Salesian sites around the world&#34; href=&#34;links.html&#34;&#38;gt;Links&#60;br /&#62;
&#38;lt;/ul)&#60;br /&#62;
&#38;lt;/div)&#60;/p&#62;
&#60;p&#62;Or am I going to the wrong site?
&#60;/p&#62;</description>
</item>
<item>
<title>rscamero92 on "Different Menu Images"</title>
<link>http://themeshaper.com/forums/topic/different-menu-images#post-15452</link>
<pubDate>Wed, 08 Sep 2010 13:42:48 +0000</pubDate>
<dc:creator>rscamero92</dc:creator>
<guid isPermaLink="false">15452@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;First, are we looking at the same website?&#60;/p&#62;
&#60;p&#62;Here is the site I'm looking at....&#60;br /&#62;
&#60;a href=&#34;http://www.salesians.org.uk/dbuk/&#34; rel=&#34;nofollow&#34;&#62;http://www.salesians.org.uk/dbuk/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Looking at that site with firebug, I don't even see your custom (tab tab-home, tab tab-1 etc etc) Here is what I'm seeing....&#60;/p&#62;
&#60;p&#62;&#38;lt;div id=&#34;nav&#34;&#38;gt;&#60;/p&#62;
&#60;ul&#62;
&#60;li&#62;(a href=&#34;index.html&#34;&#38;gt;Home&#60;/li&#62;
&#60;li&#62;(a title=&#34;See where they are, what they do and who's there&#34; href=&#34;communities.html&#34;&#38;gt;Communities&#60;/li&#62;
&#60;li&#62;(a title=&#34;What's been happening in our province and further afield&#34; href=&#34;news.html&#34;&#38;gt;News&#60;/li&#62;
&#60;li&#62;(a title=&#34;A brief overview of from 1887 to the present day&#34; href=&#34;history.html&#34;&#38;gt;History&#60;/li&#62;
&#60;li&#62;(a title=&#34;Meet St John Bosco, St Dominic Savio and others&#34; href=&#34;saints.html&#34;&#38;gt;Saints&#60;/li&#62;
&#60;li&#62;(a title=&#34;Maybe you are thinking of serving young people as a Salesian priest or brother?&#34; href=&#34;vocations.html&#34;&#38;gt;Vocations&#60;/li&#62;
&#60;li&#62;(a title=&#34;You can work with us for a few months or longer!&#34; href=&#34;volunteers.html&#34;&#38;gt;Volunteers&#60;/li&#62;
&#60;li&#62;(a title=&#34;Other Salesian sites around the world&#34; href=&#34;links.html&#34;&#38;gt;Links&#60;/li&#62;
&#60;/ul&#62;
&#60;p&#62;&#38;lt;/div&#38;gt;&#60;/p&#62;
&#60;p&#62;Or am I going to the wrong site?
&#60;/p&#62;</description>
</item>
<item>
<title>marshcast 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-15451</link>
<pubDate>Wed, 08 Sep 2010 13:41:23 +0000</pubDate>
<dc:creator>marshcast</dc:creator>
<guid isPermaLink="false">15451@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Shame these links are broken - was the best script to work with too!!!
&#60;/p&#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>knowlsy on "Different Menu Images"</title>
<link>http://themeshaper.com/forums/topic/different-menu-images#post-15448</link>
<pubDate>Wed, 08 Sep 2010 12:06:13 +0000</pubDate>
<dc:creator>knowlsy</dc:creator>
<guid isPermaLink="false">15448@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks rscamero, I'm trying to sort out wordpress on one of these free ones, but it's a pain in the bum because i'm sat on a free wifi and it won't allow ftp traffic! I'll try and find some proper internet and sort it so you can help!!&#60;/p&#62;
&#60;p&#62;The link thing is a little odd. the problem i'm trying to fix at the moment is that my menu buttons are repeating. The first button which links to home, coming after &#38;lt;li class=&#34;tab tab-home&#34;&#38;gt; in the functions.php file only has one button, and when you inspect item in firebug, in the html on the left it shows up only one link to the homepage. the rest of the tabs show up two links, one of which comes from me in the functions.php file, the other does not. I'm trying to work out where the other one comes from, as that may be the same place that is doubling up my tabs! I've searched through all the files in the themes folder and can't find the links it is showing, so have no clue why it is there... i am awfully confused!!
&#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>

</channel>
</rss>
