<?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 Topic: Adding a class=".." to blog-title</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Fri, 24 May 2013 18:21:27 +0000</pubDate>

<item>
<title>helgatheviking on "Adding a class=".." to blog-title"</title>
<link>http://themeshaper.com/forums/topic/adding-a-class-to-blog-title#post-15143</link>
<pubDate>Fri, 27 Aug 2010 14:54:57 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">15143@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;i am not familiar w/ that particular child theme, but there was either 1. another instance of &#60;/p&#62;
&#60;p&#62;add_action('thematic_header','somebodys_blogtitle',3);  that would need to be removed &#60;/p&#62;
&#60;p&#62;or 2. you are using thematic 0.9.6.2 and so the override logic doesn't apply.  &#60;/p&#62;
&#60;p&#62;but either way you were sort of using a 2x4 to swat a fly... glad the css solved the problem.
&#60;/p&#62;</description>
</item>
<item>
<title>mrsmarshah on "Adding a class=".." to blog-title"</title>
<link>http://themeshaper.com/forums/topic/adding-a-class-to-blog-title#post-15141</link>
<pubDate>Fri, 27 Aug 2010 14:24:19 +0000</pubDate>
<dc:creator>mrsmarshah</dc:creator>
<guid isPermaLink="false">15141@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thank you Helga! I had no idea it was that simple. I just used CSS &#60;code&#62;#blog-title span&#60;/code&#62; and coded it that way. (I was trying to use the &#60;code&#62;@font-face&#60;/code&#62; code.) This worked just fine.&#60;/p&#62;
&#60;p&#62;I am using the Thematic Feature Site Child Theme, when I put the code you gave me in my functions file it duplicated my blog title.&#60;/p&#62;
&#60;p&#62;Anyhow, the problem is resolved. Thank you so very much!
&#60;/p&#62;</description>
</item>
<item>
<title>helgatheviking on "Adding a class=".." to blog-title"</title>
<link>http://themeshaper.com/forums/topic/adding-a-class-to-blog-title#post-15139</link>
<pubDate>Fri, 27 Aug 2010 14:04:56 +0000</pubDate>
<dc:creator>helgatheviking</dc:creator>
<guid isPermaLink="false">15139@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;you never edit the original files, that is the whole point of hooks and filters.  to do anything you usually need to identify which function is responsible for the thing you want to change or the location of hook you want to add a new function too.  In your case (the former) you want to edit the blog title so you need to find the function that creates it.  All the functions are in the thematic folder, under extensions.  thematic_blogtitle happens to be in the header-extensions.php file... along w/ everything that goes in the header part of a theme (title, description, menu, etc, etc).  &#60;/p&#62;
&#60;p&#62;you will need to override (if you are using the latest dev thematic 0.9.7.4) the existing function by dropping this into your functions.php&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_override_blogtitle() { ?&#38;gt;

&#38;lt;div id=&#38;quot;blog-title&#38;quot;&#38;gt;&#38;lt;span class=&#38;quot;Chunkfive&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;url&#38;#39;) ?&#38;gt;/&#38;quot; title=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;name&#38;#39;) ?&#38;gt;&#38;quot; rel=&#38;quot;home&#38;quot;&#38;gt;&#38;lt;?php bloginfo(&#38;#39;name&#38;#39;) ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;

&#38;lt;?php }

add_action(&#38;#39;thematic_header&#38;#39;,&#38;#39;childtheme_override_blogtitle&#38;#39;,3);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;however- if you look at the original code it already has a span in the blog title so idk why you really need to give it a specific class.  you can target it via css just with #blog-title span&#60;/p&#62;
&#60;p&#62;though your question about adding chunkfive as a span and then the end code (which doesnt mention chunkfive) don't jive.. this should help as you can modify the above function anyway you want.
&#60;/p&#62;</description>
</item>
<item>
<title>mrsmarshah on "Adding a class=".." to blog-title"</title>
<link>http://themeshaper.com/forums/topic/adding-a-class-to-blog-title#post-15137</link>
<pubDate>Fri, 27 Aug 2010 13:23:49 +0000</pubDate>
<dc:creator>mrsmarshah</dc:creator>
<guid isPermaLink="false">15137@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I know it should be obvious, but I can't seem to wrap my brain around this. I have read through all of the hooks and filter tutorials. I'm new at this, maybe it will just take a few trials until it clicks. I am trying to add &#60;code&#62;a class=&#34;Chunkfive&#34;&#60;/code&#62; to my blog-title without editing the original files.&#60;/p&#62;
&#60;p&#62;In the end I would like it to look like this: &#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;div id=&#34;blog-title&#34;&#38;gt;&#60;br /&#62;
&#38;lt;span&#38;gt;&#60;br /&#62;
&#60;a&#62;Delicious&#60;/a&#62;&#60;br /&#62;
&#38;lt;/span&#38;gt;&#60;br /&#62;
&#38;lt;/div&#38;gt;&#60;/code&#62;
&#60;/p&#62;</description>
</item>

</channel>
</rss>
