<?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 Tag: divs</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sun, 19 May 2013 07:35:01 +0000</pubDate>

<item>
<title>Gigi on "Add div tags to breadcrumb navigation"</title>
<link>http://themeshaper.com/forums/topic/add-div-tags-to-breadcrumb-navigation#post-20767</link>
<pubDate>Fri, 22 Apr 2011 14:33:57 +0000</pubDate>
<dc:creator>Gigi</dc:creator>
<guid isPermaLink="false">20767@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey Pictrix,&#60;br /&#62;
Not sure if I'm in the right place but I'm trying to add a breadcrumb navigation in the &#34;page top&#34; widget area but need to put it into several custom divs for styling.  How might I go about doing that using this code?&#60;/p&#62;
&#60;p&#62;Any help would be greatly appreciated!
&#60;/p&#62;</description>
</item>
<item>
<title>davidthiel on "Adding sidebar widgets that clear main content"</title>
<link>http://themeshaper.com/forums/topic/adding-sidebar-widgets-that-clear-main-content#post-13728</link>
<pubDate>Wed, 07 Jul 2010 17:40:44 +0000</pubDate>
<dc:creator>davidthiel</dc:creator>
<guid isPermaLink="false">13728@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey... how'd you get the subsidiaries above the footer?   &#60;/p&#62;
&#60;p&#62;... sorry I'm no help on your actual question :-)
&#60;/p&#62;</description>
</item>
<item>
<title>statusquota on "Adding sidebar widgets that clear main content"</title>
<link>http://themeshaper.com/forums/topic/adding-sidebar-widgets-that-clear-main-content#post-13712</link>
<pubDate>Tue, 06 Jul 2010 19:16:42 +0000</pubDate>
<dc:creator>statusquota</dc:creator>
<guid isPermaLink="false">13712@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I'm trying to add content in an almost magazine-y layout in a child theme of Thematic. I have the 3 column layout (left, main content, right) and I've gotten the subsidiary widget areas to move above the footer. However, what I need them to do is come up right under the primary/secondary widget areas. I tried moving them using belowmainasides but that didn't work... does anyone have a suggestion of how I could do that? And/or a way to implement side divs where I could style the entire div to float left rather than individual ones that won't clear? &#60;/p&#62;
&#60;p&#62;I really appreciate it... thanks so much!
&#60;/p&#62;</description>
</item>
<item>
<title>Pictrix on "Add div tags to breadcrumb navigation"</title>
<link>http://themeshaper.com/forums/topic/add-div-tags-to-breadcrumb-navigation#post-11505</link>
<pubDate>Sat, 17 Apr 2010 03:16:28 +0000</pubDate>
<dc:creator>Pictrix</dc:creator>
<guid isPermaLink="false">11505@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I've been playing with this code more an it does not work for Level-3 pages.  I've given up and I'll use the NavXT plugin for now.  Although I could have placed the NavXT widget in any of the widget areas, I ended up placing it above the container by adding the following script to the functions.php file (full credit is due to Chris): &#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
&#38;lt;?php&#60;br /&#62;
// ---------- ADD BREADCRUMB NAVIGATION&#60;br /&#62;
function breadcrumb() { ?&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;breadcrumb&#34;&#38;gt;&#60;br /&#62;
        &#38;lt;?php if(function_exists('bcn_display')) {&#60;br /&#62;
	    bcn_display();&#60;br /&#62;
        } ?&#38;gt;&#60;br /&#62;
    &#38;lt;/div&#38;gt;&#60;br /&#62;
&#38;lt;?php&#60;br /&#62;
}&#60;br /&#62;
add_action ('thematic_abovecontainer', 'breadcrumb', 1);&#60;br /&#62;
// ---------- END - ADD BREADCRUMB NAVIGATION&#60;br /&#62;
?&#38;gt;&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Note that there's a CSS-ready section included in the &#34;Asides, Sidebars &#38;#38; Widget-Ready Areas&#34; in the default.css file --just style away.&#60;/p&#62;
&#60;p&#62;It would be exciting if the next version of Thematic comes with a built-in breadcrumb navigation option... I'll keep my fingers crossed!
&#60;/p&#62;</description>
</item>
<item>
<title>Pictrix on "Add div tags to breadcrumb navigation"</title>
<link>http://themeshaper.com/forums/topic/add-div-tags-to-breadcrumb-navigation#post-11470</link>
<pubDate>Fri, 16 Apr 2010 01:10:46 +0000</pubDate>
<dc:creator>Pictrix</dc:creator>
<guid isPermaLink="false">11470@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I'm trying to place the code below between &#38;lt;div&#38;gt;&#38;lt;/div&#38;gt; tags in order to style it. However, no matter where I place the div tags, they aren't working properly: when I check the &#34;view source&#34; I get the &#38;lt;/div&#38;gt; tag at the top of my document and not at at the end of the breadcrumb navigation as it should be.  My PHP script, which is otherwise working correctly is:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
&#38;lt;?php&#60;br /&#62;
// ---------- ADD BREADCRUMB NAVIGATION ABOVE CONTAINER&#60;br /&#62;
if (!function_exists('breadcrumb')) {&#60;br /&#62;
function breadcrumb() {&#60;br /&#62;
if ( !is_home() &#124;&#124; !is_front_page() ) {&#60;br /&#62;
global $post;&#60;br /&#62;
_e(' ') . bloginfo('name') . _e(' &#38;gt; ');&#60;br /&#62;
if ( is_category() ) {&#60;br /&#62;
single_cat_title();&#60;br /&#62;
//the_category(', ');&#60;br /&#62;
} elseif ( is_single() ) {&#60;br /&#62;
the_category(', ') . _e(' &#38;gt; ') . the_title() . _e('');&#60;br /&#62;
} elseif ( is_page() &#38;#38;&#38;#38; $post-&#38;gt;post_parent ) {&#60;br /&#62;
_e( get_the_title($post-&#38;gt;post_parent) );&#60;br /&#62;
_e(' &#38;gt; ');&#60;br /&#62;
_e( the_title() .'');&#60;br /&#62;
} elseif ( is_page() ) {&#60;br /&#62;
_e( the_title() . '');&#60;br /&#62;
} elseif ( is_search() ) {&#60;br /&#62;
_e('Search in: ') . the_search_query() . _e('');&#60;br /&#62;
}&#60;br /&#62;
}&#60;br /&#62;
}&#60;br /&#62;
}&#60;br /&#62;
?&#38;gt;&#60;br /&#62;
&#38;lt;?php&#60;br /&#62;
add_action('thematic_abovecontainer','breadcrumb');&#60;br /&#62;
// ---------- END - ADD BREADCRUMB NAVIGATION ABOVE CONTAINER&#60;br /&#62;
?&#38;gt;&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Any suggestions?
&#60;/p&#62;</description>
</item>
<item>
<title>amygail on "Background image issues"</title>
<link>http://themeshaper.com/forums/topic/background-image-issues#post-6696</link>
<pubDate>Thu, 24 Sep 2009 19:22:44 +0000</pubDate>
<dc:creator>amygail</dc:creator>
<guid isPermaLink="false">6696@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;can you post a link or at least the css you're using?
&#60;/p&#62;</description>
</item>
<item>
<title>goodbobman on "Background image issues"</title>
<link>http://themeshaper.com/forums/topic/background-image-issues#post-6693</link>
<pubDate>Thu, 24 Sep 2009 03:47:42 +0000</pubDate>
<dc:creator>goodbobman</dc:creator>
<guid isPermaLink="false">6693@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi; I've created a child theme. I'm creating a page template and using one background image in the body and another, called LETTERHEAD to cover the bulk of the page, which I had put in the wrapper div. Here's the RUB: each new page entry calls the wrapper div AGAIN, which means I have LETTERHEAD on top of LETTERHEAD for a bad effect.&#60;/p&#62;
&#60;p&#62;What can be done? Other hooks to use for LETTERHEAD? &#60;/p&#62;
&#60;p&#62;thank you
&#60;/p&#62;</description>
</item>
<item>
<title>johnny baconbitz on "can't find some div and class css in Thematic?"</title>
<link>http://themeshaper.com/forums/topic/cant-find-some-div-and-class-css-in-thematic#post-1238</link>
<pubDate>Sat, 10 Jan 2009 03:26:20 +0000</pubDate>
<dc:creator>johnny baconbitz</dc:creator>
<guid isPermaLink="false">1238@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Chris, thanks. So there are remnants of code that live on like a class of .widgettitle that are just picking up parental or cascading css? Funny, I spent so much time looking for that css in the theme css that I never thought of just writing a new css for it. I'll try it, thanks.&#60;br /&#62;
Ed
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "can't find some div and class css in Thematic?"</title>
<link>http://themeshaper.com/forums/topic/cant-find-some-div-and-class-css-in-thematic#post-1211</link>
<pubDate>Sat, 03 Jan 2009 15:10:34 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">1211@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;There're different approaches to CSS.&#60;/p&#62;
&#60;p&#62;You could create a DIV, a CLASS and an ID for each element in your theme. Pretty hard to learn, understand and to read. A classic case for a designer suffering from what is commonly known as Divititis, or, using the HTML DIV element to tag all of the content.&#60;/p&#62;
&#60;p&#62;Or you could use a hierarchical, semantic HTML and contextual CSS. That means .. not every single element has a unique name .. but can be located by describing it's position in the CSS tree. &#60;/p&#62;
&#60;p&#62;Let's say .. you would like to change the appearance of the titles in &#34;Primary Aside&#34; only .. create a new entry in your CSS file describing the location:&#60;/p&#62;
&#60;p&#62;#primary h3 {color:red;}&#60;/p&#62;
&#60;p&#62;Let's say .. the red titles are ok, but the title of the &#34;categories&#34; widget in &#34;Primary Aside&#34; should be blue .. create an additional entry:&#60;/p&#62;
&#60;p&#62;#primary #categories h3 {color:blue;}&#60;/p&#62;
&#60;p&#62;Don't worry if not everything will work out at once .. I had the same time of trial and error. Once you got it, it's much easier to work with.&#60;/p&#62;
&#60;p&#62;Let me know if you need more examples or help.&#60;/p&#62;
&#60;p&#62;Cheers,&#60;/p&#62;
&#60;p&#62;Chris
&#60;/p&#62;</description>
</item>
<item>
<title>johnny baconbitz on "can't find some div and class css in Thematic?"</title>
<link>http://themeshaper.com/forums/topic/cant-find-some-div-and-class-css-in-thematic#post-1203</link>
<pubDate>Tue, 30 Dec 2008 06:00:10 +0000</pubDate>
<dc:creator>johnny baconbitz</dc:creator>
<guid isPermaLink="false">1203@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Using web developer in Firefox to isolate some info in the main aside.&#60;br /&#62;
So one area is: &#60;code&#62;#primary .aside main-aside&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Only, can't find any css for #primary or class of .aside main-aside?&#60;/p&#62;
&#60;p&#62;On another, in the aside, web dev is telling me a &#38;lt;h3&#38;gt; with a class of .widgettitle, no where I can find?&#60;br /&#62;
The css that makes that &#38;lt;h3&#38;gt; dance is actually a class called .main-aside h3? What is the disparity coming from in what web developer thinks it is named with what actually is its name? Makes for a lot of trial and error in the css. Seems there are several cases like this.&#60;/p&#62;
&#60;p&#62;Any help is appreciated.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
