<?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: Wrapping Blog-Title &#038; Blog-Description in their own Div</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Tue, 21 May 2013 22:15:27 +0000</pubDate>

<item>
<title>snack on "Wrapping Blog-Title &#038; Blog-Description in their own Div"</title>
<link>http://themeshaper.com/forums/topic/wrapping-blog-title-038-blog-description-in-their-own-div#post-4073</link>
<pubDate>Tue, 26 May 2009 08:42:36 +0000</pubDate>
<dc:creator>snack</dc:creator>
<guid isPermaLink="false">4073@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;wow. good idea.
&#60;/p&#62;</description>
</item>
<item>
<title>freedimensional on "Wrapping Blog-Title &#038; Blog-Description in their own Div"</title>
<link>http://themeshaper.com/forums/topic/wrapping-blog-title-038-blog-description-in-their-own-div#post-4063</link>
<pubDate>Mon, 25 May 2009 13:32:49 +0000</pubDate>
<dc:creator>freedimensional</dc:creator>
<guid isPermaLink="false">4063@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks for your effort, but I've now come up with a far safer way that doesn't require a change to the header structure, and has the required effect:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#blog-title, #blog-description {
background:#ffffff none repeat scroll 0 0;
margin-right:715px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I think sometimes it's possible to overcomplicate matters once we get used to how flexible Thematic really is. A bit of lateral thinking and CSS are often the only thing we need.&#60;/p&#62;
&#60;p&#62;Check out the final effect at &#60;a href=&#34;http://digitalcortex.net.&#34; rel=&#34;nofollow&#34;&#62;http://digitalcortex.net.&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Tom
&#60;/p&#62;</description>
</item>
<item>
<title>snack on "Wrapping Blog-Title &#038; Blog-Description in their own Div"</title>
<link>http://themeshaper.com/forums/topic/wrapping-blog-title-038-blog-description-in-their-own-div#post-4056</link>
<pubDate>Sun, 24 May 2009 21:16:03 +0000</pubDate>
<dc:creator>snack</dc:creator>
<guid isPermaLink="false">4056@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;tom, i think if it says &#60;em&#62;thematic_&#60;/em&#62;blah(), it means it's one of the thematic hooks. which means it's prolly in the file hooks_filters.php, and you would modify it safely in your child theme's functions.php.&#60;/p&#62;
&#60;p&#62;but you should just stick that image in the background like i suggested above.&#60;/p&#62;
&#60;p&#62;the answer to the question you ask above (how do you modify the header) is:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;header&#38;quot;&#38;gt;
&#38;lt;div id=&#38;quot;new_div&#38;quot;&#38;gt;
&#38;lt;?php thematic_header() ?&#38;gt;
&#38;lt;/div&#38;gt;
&#38;lt;/div&#38;gt;

#new_div{ background: url(blah); }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;but that's not the right way to go about it. you should modify the core templates as little as possible, and when you do, you should do so as safely as possible (ie, in a child theme if not in functions.php)
&#60;/p&#62;</description>
</item>
<item>
<title>freedimensional on "Wrapping Blog-Title &#038; Blog-Description in their own Div"</title>
<link>http://themeshaper.com/forums/topic/wrapping-blog-title-038-blog-description-in-their-own-div#post-4054</link>
<pubDate>Sun, 24 May 2009 20:21:40 +0000</pubDate>
<dc:creator>freedimensional</dc:creator>
<guid isPermaLink="false">4054@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thematic Power Blog is a near-perfect theme, and changing the markup as you suggest would risk affecting the way all of the various elements line up.&#60;/p&#62;
&#60;p&#62;I realise that I need to create a div at a certain point, but in looking at my child theme's header.php (Power Blog is a child theme) and indeed in the header.php in Thematic's core files, only the following relevant code is referred to:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;div id=&#34;header&#34;&#38;gt;&#60;br /&#62;
    &#38;lt;?php thematic_header() ?&#38;gt;&#60;br /&#62;
&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;How do I modify the the thematic_header to create my new div?&#60;br /&#62;
I can't find the section in either my child theme or core functions.php.&#60;/p&#62;
&#60;p&#62;All thoughts welcome, thanks in advance,&#60;br /&#62;
Tom
&#60;/p&#62;</description>
</item>
<item>
<title>snack on "Wrapping Blog-Title &#038; Blog-Description in their own Div"</title>
<link>http://themeshaper.com/forums/topic/wrapping-blog-title-038-blog-description-in-their-own-div#post-4053</link>
<pubDate>Sun, 24 May 2009 19:53:34 +0000</pubDate>
<dc:creator>snack</dc:creator>
<guid isPermaLink="false">4053@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;why not put the image as a background of #header ?&#60;/p&#62;
&#60;p&#62;if you're really attached to changing the markup, i think you can just insert&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div id=&#38;quot;new_div&#38;quot;&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and then later on&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;carefully in the right places in header.php (which you should first copy from thematic into your child theme).
&#60;/p&#62;</description>
</item>
<item>
<title>freedimensional on "Wrapping Blog-Title &#038; Blog-Description in their own Div"</title>
<link>http://themeshaper.com/forums/topic/wrapping-blog-title-038-blog-description-in-their-own-div#post-4051</link>
<pubDate>Sun, 24 May 2009 19:26:28 +0000</pubDate>
<dc:creator>freedimensional</dc:creator>
<guid isPermaLink="false">4051@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Snack,&#60;/p&#62;
&#60;p&#62;That's is the sort of styling I want to do, but moving the background image out of the branding div isn't something I'm comfortable with.&#60;/p&#62;
&#60;p&#62;Were the blog-title and blog-description in their own div I could style it without affecting the rest of the header structure.&#60;/p&#62;
&#60;p&#62;Where can I edit the functions called in thematic_header and add the new div?&#60;/p&#62;
&#60;p&#62;Tom
&#60;/p&#62;</description>
</item>
<item>
<title>snack on "Wrapping Blog-Title &#038; Blog-Description in their own Div"</title>
<link>http://themeshaper.com/forums/topic/wrapping-blog-title-038-blog-description-in-their-own-div#post-4050</link>
<pubDate>Sun, 24 May 2009 18:49:23 +0000</pubDate>
<dc:creator>snack</dc:creator>
<guid isPermaLink="false">4050@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;have a look at this diagram of thematic css&#60;br /&#62;
&#60;a href=&#34;http://bluemandala.com/thematic/thematic-structure.html&#34; rel=&#34;nofollow&#34;&#62;http://bluemandala.com/thematic/thematic-structure.html&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;i'm guessing you want something like this:&#60;/p&#62;
&#60;p&#62;#branding {&#60;br /&#62;
background:#FFFFFF;&#60;br /&#62;
padding: 10px 10px 10px 0;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;though you might choose to give the bg to #blog_title / #blog_descrtiption instead...
&#60;/p&#62;</description>
</item>
<item>
<title>freedimensional on "Wrapping Blog-Title &#038; Blog-Description in their own Div"</title>
<link>http://themeshaper.com/forums/topic/wrapping-blog-title-038-blog-description-in-their-own-div#post-4044</link>
<pubDate>Sun, 24 May 2009 15:26:43 +0000</pubDate>
<dc:creator>freedimensional</dc:creator>
<guid isPermaLink="false">4044@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hello there,&#60;/p&#62;
&#60;p&#62;I'd like to replicate the effect I've created in my header image in Power Blog by using CSS.&#60;br /&#62;
Currently, my header image actually has a white square as part of the image itself, because I couldn't work out how to do it any other way. It causes issues when people zoom in or out.&#60;/p&#62;
&#60;p&#62;I think the best way would be to create a div around blog-title and blog-description and style it from there. Can someone show me how, or  suggest a better way? My site is  &#60;a href=&#34;http://digitalcortex.net&#34; rel=&#34;nofollow&#34;&#62;http://digitalcortex.net&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Tom
&#60;/p&#62;</description>
</item>

</channel>
</rss>
