<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Vfxdude &#187; Tag: sidebar - Recent Posts</title>
		<link>http://www.vfxdude.com/forum/tags/sidebar</link>
		<description>premium wordpress themes</description>
		<language>en-US</language>
		<pubDate>Thu, 09 Feb 2012 05:59:42 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.vfxdude.com/forum/search.php</link>
		</textInput>
		<atom:link href="http://www.vfxdude.com/forum/rss/tags/sidebar" rel="self" type="application/rss+xml" />

		<item>
			<title>vfxdude on "Tips and Tricks"</title>
			<link>http://www.vfxdude.com/forum/topic/tips-and-tricks#post-8203</link>
			<pubDate>Fri, 20 Jan 2012 14:43:14 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">8203@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;&#60;strong&#62;Image placeholder for bfthumbs&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;add this code to functions.php (of a child theme) to add a placeholder for bfthumbs posts (a default image when there's no thumb image):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function bf_thumb_placeholder() {
$placeholder = &#38;#39;http://domain.com/default-thumb.jpg&#38;#39;; ?&#38;gt;
&#38;lt;script&#38;gt;
jQuery(function($){
  $(&#38;#39;.thumb.bfthumbs:not(:has(img))&#38;#39;).each(function(){
    $(this).prepend(&#38;#39;&#38;lt;img width=&#38;quot;&#38;#39;+($(this).width())+&#38;#39;&#38;quot; src=&#38;quot;&#38;lt;?php echo $placeholder; ?&#38;gt;&#38;quot; /&#38;gt;&#38;#39;);
  });
});
&#38;lt;/script&#38;gt;
&#38;lt;?php
}
add_action( &#38;#39;wp_head&#38;#39;, &#38;#39;bf_thumb_placeholder&#38;#39; );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Change the $placeholder url to the thumb placeholder url.&#60;/p&#62;
&#60;p&#62;To only apply it some bfthumbs shortcodes, add a class paramater like this (in the shortcode): class=&#34;phthumb&#34;, and in the code above, change &#34;.thumb&#34; to &#34;.phthumb .thumb&#34;.&#60;/p&#62;
&#60;p&#62;-------&#60;/p&#62;
&#60;p&#62;Here's another solution, using the bfthumbs_content filter:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function bfthumbs_placeholder($thumbPost, $atts) {
    if ($atts[&#38;#39;pholder&#38;#39;]) $placeholder = $atts[&#38;#39;pholder&#38;#39;];
    else $placeholder = &#38;#39;http://domain.com/default-thumb.jpg&#38;#39;;
    if (!($width = $atts[&#38;#39;width&#38;#39;])) $width = &#38;#39;255&#38;#39;;
    $placeholder = &#38;#39;&#38;lt;img src=&#38;quot;&#38;#39;.$placeholder.&#38;#39;&#38;quot; width=&#38;quot;&#38;#39;.$width.&#38;#39;&#38;quot; /&#38;gt;&#38;#39;;
    $image = false;
    if (is_array($thumbPost[0])) {
    	foreach ($thumbPost as $items) if ($items[&#38;#39;image&#38;#39;]) $image = true;
	if (!$image) array_unshift($thumbPost, array(&#38;#39;image&#38;#39; =&#38;gt; $placeholder));

    } else if (!$thumbPost[&#38;#39;image&#38;#39;]) $thumbPost[&#38;#39;image&#38;#39;] = $placeholder;

    return $thumbPost;
}
add_filter(&#38;#39;bfthumbs_content&#38;#39;, &#38;#39;bfthumbs_placeholder&#38;#39;, 10, 2);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This will only work for bfthumbs, but the jQuery one can be modified to work with the blog thumbs, portfolio template, featured widget etc. The advantage using the filter one is that a pholder parameter can be added to the bfthumbs shortcode with a placeholder image url (can have different placeholder per shortcode).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Sidebar Font Size..."</title>
			<link>http://www.vfxdude.com/forum/topic/sidebar-font-size#post-8146</link>
			<pubDate>Thu, 12 Jan 2012 09:59:03 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">8146@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;&#60;code&#62;#sidebar { font-size: 11px; }&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>arothafel on "Sidebar Font Size..."</title>
			<link>http://www.vfxdude.com/forum/topic/sidebar-font-size#post-8138</link>
			<pubDate>Wed, 11 Jan 2012 14:24:09 +0000</pubDate>
			<dc:creator>arothafel</dc:creator>
			<guid isPermaLink="false">8138@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;This is probably a dumb question, but I can't seem to find (theme editor) where to change the font size for the side bar.  Not the Headers, but the text below the headers.  I just updated the theme and somehow deleted my child theme in the process so all my css inserts are gone.&#60;/p&#62;
&#60;p&#62;Is there a css insert for the sidebar fonts to 11px normal?&#60;/p&#62;
&#60;p&#62;Here's the site:&#60;br /&#62;
&#60;a href=&#34;http://www.privatelabelfitness.com/2011/12/weight-management-on-autopilot/&#34; rel=&#34;nofollow&#34;&#62;http://www.privatelabelfitness.com/2011/12/weight-management-on-autopilot/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "BF - Individual Menu in the Sidebar"</title>
			<link>http://www.vfxdude.com/forum/topic/bf-individual-menu-in-the-sidebar#post-7950</link>
			<pubDate>Thu, 22 Dec 2011 14:54:34 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">7950@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;changing styles for any widget can be done with css. Use Firebug to find what to change, example:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;.widget_nav_menu .sub-menu a { font-size: 11px; }&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>philippe on "BF - Individual Menu in the Sidebar"</title>
			<link>http://www.vfxdude.com/forum/topic/bf-individual-menu-in-the-sidebar#post-7938</link>
			<pubDate>Wed, 21 Dec 2011 12:16:34 +0000</pubDate>
			<dc:creator>philippe</dc:creator>
			<guid isPermaLink="false">7938@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;no, i use a menu on the sidebar&#60;br /&#62;
and i want to change the font size etc of the childpages.&#60;br /&#62;
&#60;a href=&#34;http://www.fairbindung.org/wp/bildung/angebot/&#34; rel=&#34;nofollow&#34;&#62;http://www.fairbindung.org/wp/bildung/angebot/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hartenkamer on "The sidebar titles are IN CAPS"</title>
			<link>http://www.vfxdude.com/forum/topic/the-sidebar-titles-are-in-caps#post-7915</link>
			<pubDate>Sat, 17 Dec 2011 13:20:39 +0000</pubDate>
			<dc:creator>hartenkamer</dc:creator>
			<guid isPermaLink="false">7915@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Thank you...&#60;/p&#62;
&#60;p&#62;I added it here... but it didn't work.&#60;/p&#62;
&#60;p&#62;/* Tabber tabs */&#60;br /&#62;
#sidebar ul.tabbernav &#38;gt; li { display:inline; padding:5px 5px 5px 0; border: none; }&#60;br /&#62;
#sidebar .style1 { background:none; padding: 0; }&#60;br /&#62;
#sidebar .style1 ul.tabbernav li.tabberactive a { color: #fff; background-color: #333; border: 1px solid #333; }&#60;br /&#62;
#sidebar .style1 ul.tabbernav li a:hover { color: #fff; border: 1px solid #666769; }&#60;br /&#62;
#sidebar .style1 ul.tabbernav { margin:0 !important; padding-left:0 !important; }&#60;br /&#62;
#sidebar .style1.tabberlive .tabbertab { padding: 15px 0 0; margin: 0; border: none; }&#60;br /&#62;
#sidebar .widgetheading h2 { text-transform: normal; }
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "The sidebar titles are IN CAPS"</title>
			<link>http://www.vfxdude.com/forum/topic/the-sidebar-titles-are-in-caps#post-7912</link>
			<pubDate>Sat, 17 Dec 2011 09:52:14 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">7912@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;with css (add to bottom of style.css):&#60;/p&#62;
&#60;p&#62;&#60;code&#62;#sidebar .widgetheading h2 { text-transform: normal; }&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hartenkamer on "The sidebar titles are IN CAPS"</title>
			<link>http://www.vfxdude.com/forum/topic/the-sidebar-titles-are-in-caps#post-7909</link>
			<pubDate>Sat, 17 Dec 2011 02:23:48 +0000</pubDate>
			<dc:creator>hartenkamer</dc:creator>
			<guid isPermaLink="false">7909@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;How do I change the CAPS in the Bigfeature widget titles for the sidebar?&#60;/p&#62;
&#60;p&#62;(example at &#60;a href=&#34;http://www.hartenkamer.nl&#34; rel=&#34;nofollow&#34;&#62;http://www.hartenkamer.nl&#60;/a&#62;)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "BF - Individual Menu in the Sidebar"</title>
			<link>http://www.vfxdude.com/forum/topic/bf-individual-menu-in-the-sidebar#post-7895</link>
			<pubDate>Thu, 15 Dec 2011 09:47:18 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">7895@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;size of the dropdown menu? added with the bfnav shortcode? change font size? or padding?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>philippe on "BF - Individual Menu in the Sidebar"</title>
			<link>http://www.vfxdude.com/forum/topic/bf-individual-menu-in-the-sidebar#post-7885</link>
			<pubDate>Wed, 14 Dec 2011 17:31:02 +0000</pubDate>
			<dc:creator>philippe</dc:creator>
			<guid isPermaLink="false">7885@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;i use an individual menu on the sidebar and want to change the size of the level2-pages.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Tips and Tricks"</title>
			<link>http://www.vfxdude.com/forum/topic/tips-and-tricks#post-7807</link>
			<pubDate>Fri, 02 Dec 2011 10:39:14 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">7807@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;&#60;strong&#62;Child themes do's and dont's&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;1. Do not change the header in style.css of the child theme, unless you know what you are doing. &#60;/p&#62;
&#60;p&#62;2. The parent theme must be installed correctly. It must be in a folder bigfeature under the themes folder. Some install the downloaded zip file and then the bigfeature folder will be in a subfolder, and then child themes will not work. And this will also cause many other problems too.&#60;/p&#62;
&#60;p&#62;3. Do not import style.css of the parent theme like done in other child themes. The importing is handled in functions.php. This improves the performance, and sets the right order of importing. &#60;/p&#62;
&#60;p&#62;4. Do not copy all css from style.css of the parent theme into the child theme style.css. This will override all the theme setting styles and cause all kinds of problems. Only copy in those styles that should be overriden.&#60;/p&#62;
&#60;p&#62;5. Do not copy header.php into the child theme, unless you know what you are doing. Changing this template will mess up the theme.&#60;/p&#62;
&#60;p&#62;6. Do not remove any hooks, like wp_head or wp_footer since they must be there for the theme and plugins to work.&#60;/p&#62;
&#60;p&#62;7. When copying templates into the child themes for modification, do not remove the importing of the header or footer, since these are essential for the theme to work.&#60;/p&#62;
&#60;p&#62;8. If creating templates to be used with the import shortcode in the shortcode template system the header and footer can be removed and the whole div structure can be in the template. The &#34;Remove the header &#38;amp; footer html&#34; setting must then be enabled.&#60;/p&#62;
&#60;p&#62;9. If using the yarpp plugin with child themes the yarpp-template-bf.php template (from the bigfeature folder) must be copied into the child theme folder.&#60;/p&#62;
&#60;p&#62;10. Functions added to functions.php of the child theme must have unique names. Many have copied code and gotten errors, then it's most likely a naming conflict with an existing function (in the child theme, parent theme, wordpress or plugins).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Tips and Tricks"</title>
			<link>http://www.vfxdude.com/forum/topic/tips-and-tricks#post-7579</link>
			<pubDate>Thu, 03 Nov 2011 18:56:15 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">7579@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;&#60;strong&#62;Targeting the BF Page widget&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;In version 1.4.1.1 the BF Page widget was modified to use the shortcode template system. This means that the content added in the template outputted by the BF Page widget will only show where it's targeted. Here's how:&#60;/p&#62;
&#60;p&#62;1. Enable the &#34;Enable Custom Templates Feature&#34; theme setting.&#60;br /&#62;
2. Create a new post in the Templates custom post.&#60;br /&#62;
3. Add the content to be outputted by the BF Page plugin into the editor.&#60;br /&#62;
4. Select the targeting under the editor (single, blog, page etc.) and the &#34;BF Page widget template&#34; checkbox, and then publish the post.&#60;br /&#62;
5. Drag the BF Page widget to a widget area and select the template created in step 2-4.&#60;/p&#62;
&#60;p&#62;Now the widget will only show where it's targeted (set in the template). And it's also possible to add a widgetarea shortcode to the template, this means you can combine sidebars. In other words, you can create a custom sidebar in the theme setting (1.4.1 functionality) and add widgets to this sidebar, and add it to the main sidebar with the BF Page widget, and then use the targeting to determine where it should display.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Tips and Tricks"</title>
			<link>http://www.vfxdude.com/forum/topic/tips-and-tricks#post-7577</link>
			<pubDate>Thu, 03 Nov 2011 12:48:36 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">7577@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;&#60;strong&#62;Shortcode Template System&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;Here's a short tutorial (to clarify some stuff that was not shown in &#60;a href=&#34;http://www.youtube.com/user/vfxdudedotcom#p/u/0/mzFXQVhiNOs&#34;&#62;the video&#60;/a&#62;):&#60;/p&#62;
&#60;p&#62;1. Enable the &#34;Enable Custom Templates Feature&#34; theme setting.&#60;/p&#62;
&#60;p&#62;2. Create a new post in the Templates custom post.&#60;/p&#62;
&#60;p&#62;3. Add a bfthumbs to the editor (in html mode), like this:&#60;br /&#62;
&#60;code&#62;[bfthumbs sid=&#34;bfthumbs-loop&#34; showposts=&#34;10&#34; width=&#34;153&#34; height=&#34;120&#34; numcols=&#34;5&#34; marginright=&#34;20&#34; numwords=&#34;10&#34; ajaxnav=&#34;false&#34;] &#60;/code&#62;&#60;/p&#62;
&#60;p&#62;4. Select the targeting under the editor (blog, search etc.) and publish the post.&#60;/p&#62;
&#60;p&#62;The shortcode above is a 5 column bfthumbs layout. The numcols=&#34;5&#34; sets the number of columns, and the showposts=&#34;10&#34; sets the number of posts shown on every page (must install wp-pagenavi or &#34;wp page numbers&#34; plugin for page navigation). The ajaxnav=&#34;false&#34; parameter makes it so that it's normal page navigation (the page reloads).&#60;/p&#62;
&#60;p&#62;The clue here is that there's no post fetching parameters in the bfthumbs shortcode (category, tag, tax etc.), so that it will show the post relevant for where it's targetted. For example, if the blog is the target then it will replace the normal blog design, but show the same posts, just with a custom design (same for the archive and search).&#60;/p&#62;
&#60;p&#62;This makes it possible to have custom designs per category/taxonomy/custompost etc. For example a portfolio can be created with categories, and every category/taxonomy can have a different design. And there's more shortcodes for this template system, for example one for sidebars (widgetarea) and one for outputting hook content (bfhook), and also one for including php templates (bfinclude) added to a child theme (use the shortcode GUI to see the possible parameters and a description of each one).&#60;/p&#62;
&#60;p&#62;One of the possibilities with this is also to include external php templates and target those. Just add an include shortcode with the name of a custom single.php template and it can be targeted with this system (enable the &#34;Don't include header &#38;amp; footer files&#34; setting below the targeting if the template imports the header and footer). This means that the &#60;a href=&#34;http://www.vfxdude.com/bigfeature/2009/10/faq/#customsingle&#34;&#62;custom single functionality&#60;/a&#62; is not necessary anymore since this is way more flexible, since it can target just about everything (custom post type, taxonomy type, taxonomy term, category, tag).&#60;/p&#62;
&#60;p&#62;Another feature is to remove the header and footer html for just this template. This makes it possible to have a custom div structure (100% width designs etc.) for just the portfolio, while the blog is using the normal layout. Many possibilities with this system, and I'm exploring those with some new child themes coming soon.&#60;/p&#62;
&#60;p&#62;The shortcodes from the &#34;custom blog frontpage&#34; and &#34;featured thumbnails with bfthumbs&#34; tutorials above can used in these templates. It uses 2 parameters that is important to learn, offset and onlyfirstpage. The offset parameter makes it possible to use many bfthumbs and continue the flow of posts. For example offset=&#34;1&#34; makes the shortcode skip the first post and together with numposts or showposts (pages) the design can have many bfthumbs making up the post design. The onlyfirstpage parameter makes the bfthumbs only show up on the first page, but not on other pages when using ajaxnav=&#34;false&#34; for normal pagination.&#60;/p&#62;
&#60;p&#62;Also read the &#60;a href=&#34;http://www.vfxdude.com/bigfeature/2010/01/changelog/&#34;&#62;changelog&#60;/a&#62; for version 1.4.1, since it got a lot of information about this system there. And also &#60;a href=&#34;http://www.vfxdude.com/forum/topic/announcements#post-7040&#34;&#62;read this&#60;/a&#62; for more information and also some shortcode examples.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Tips and Tricks"</title>
			<link>http://www.vfxdude.com/forum/topic/tips-and-tricks#post-7572</link>
			<pubDate>Wed, 02 Nov 2011 20:34:34 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">7572@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;&#60;strong&#62;Custom related posts design&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;In the latest version of the theme (1.4.1.1) it is possible to use the bfthumbs shortcode with the yarpp plugin. Then you can have any design (number of columns, width etc.) of the related posts thumbs. Here's how:&#60;/p&#62;
&#60;p&#62;1. Enable the &#34;Enable Custom Templates Feature&#34; theme setting.&#60;/p&#62;
&#60;p&#62;2. In Templates (a custom post that will appear. see &#60;a href=&#34;http://www.youtube.com/user/vfxdudedotcom#p/u/0/mzFXQVhiNOs&#34;&#62;this video&#60;/a&#62; for more info.) create a new post and call it &#34;yarpp template&#34;.&#60;br /&#62;
Insert this code into the editor (in html mode):&#60;br /&#62;
&#60;code&#62;&#38;lt;h5&#38;gt;Related Posts&#38;lt;/h5&#38;gt;&#60;br /&#62;
[bfthumbs sid=&#34;bfthumbs-yarpp&#34; numposts=&#34;6&#34; numcols=&#34;3&#34; width=&#34;200&#34;]&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;3. Add this code to the child theme functions.php (use the bf_after_article hook to add above the comments):&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_action( &#38;#39;bf_after_comments&#38;#39;, &#38;#39;custom_related_posts&#38;#39; );
function custom_related_posts() {
 echo do_shortcode(&#38;#39;[bfyarpp template=&#38;quot;yarpp template&#38;quot;]&#38;#39;);
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;4. Deactivate the related posts setting in the theme settings.&#60;/p&#62;
&#60;p&#62;Now the look of the related posts can modified with bfthumbs in the yarpp template.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Sidebar vs Full Width options"</title>
			<link>http://www.vfxdude.com/forum/topic/sidebar-vs-full-width-options#post-7390</link>
			<pubDate>Tue, 04 Oct 2011 10:40:53 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">7390@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;use the new shortcode template system. &#60;a href=&#34;http://www.youtube.com/user/vfxdudedotcom#p/u/0/mzFXQVhiNOs&#34;&#62;See this video&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;Here's the steps:&#60;br /&#62;
1. Enable the &#34;Enable Custom Templates Feature&#34; setting (need the latest version of the theme).&#60;/p&#62;
&#60;p&#62;2. Create a new template with a bfthumbs shortcode in it (you need one of the navigation plugins listed &#60;a href=&#34;http://www.vfxdude.com/bigfeature/2009/07/setting-up-the-theme/&#34;&#62;here&#60;/a&#62; for page navigation). Example:&#60;br /&#62;
&#60;code&#62;[bfthumbs sid=&#34;bfthumbs-mycat&#34; showposts=&#34;9&#34; ajaxnav=&#34;false&#34;]&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;3. Enable archive below the editor of the template editor and select the category to target and publish the template.&#60;/p&#62;
&#60;p&#62;The bfthumbs shortcode can have very many different designs, and with the new &#60;a href=&#34;http://www.youtube.com/user/vfxdudedotcom#p/u/1/-N0dein2ofw&#34;&#62;bfthumbs layout system&#60;/a&#62; it can be even more customized.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>thempro on "Sidebar vs Full Width options"</title>
			<link>http://www.vfxdude.com/forum/topic/sidebar-vs-full-width-options#post-7374</link>
			<pubDate>Thu, 29 Sep 2011 17:24:43 +0000</pubDate>
			<dc:creator>thempro</dc:creator>
			<guid isPermaLink="false">7374@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
How is it possible to have one category page with no sidebar, with the sidebar only appearing on the blog ?&#60;br /&#62;
Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Navigation below featured image?"</title>
			<link>http://www.vfxdude.com/forum/topic/navigation-below-featured-image#post-7357</link>
			<pubDate>Tue, 27 Sep 2011 21:14:28 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">7357@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;sidebar2 set to left is using the same hook, so modify the hook call above to this to make it display before the sidebar.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;add_action( 'bf_before_content', 'bf_navigation', 9 );&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>aw2 on "Navigation below featured image?"</title>
			<link>http://www.vfxdude.com/forum/topic/navigation-below-featured-image#post-7354</link>
			<pubDate>Tue, 27 Sep 2011 13:41:21 +0000</pubDate>
			<dc:creator>aw2</dc:creator>
			<guid isPermaLink="false">7354@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Thanks.&#60;br /&#62;
This works fine.&#60;/p&#62;
&#60;p&#62;But:&#60;br /&#62;
if I use two sidebars and I move Sidebar2 to the left in the theme settings, the site design gets messed up.&#60;br /&#62;
The content and right sidebar (sidebar1) go below sidebar2 instead of next to sidebar2.&#60;/p&#62;
&#60;p&#62;I've tested this on different sites but always get this problem.&#60;br /&#62;
Am I doing something wrong or is there any solution to this?&#60;/p&#62;
&#60;p&#62;Thank you for helping me out.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Navigation below featured image?"</title>
			<link>http://www.vfxdude.com/forum/topic/navigation-below-featured-image#post-7287</link>
			<pubDate>Wed, 14 Sep 2011 11:04:47 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">7287@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;adding this at the bottom of functions.php will do it (before the ?&#38;gt;):&#60;/p&#62;
&#60;p&#62;&#60;code&#62;remove_action( 'bf_header', 'bf_navigation' );&#60;br /&#62;
add_action( 'bf_before_content', 'bf_navigation' );&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;You can add a if(is_single()) around them to only do this in for single view pages. If you add them to a child theme you need to add the remove_action in a hook the the wp_head (see &#60;a href=&#34;http://www.vfxdude.com/downloads/&#34;&#62;other child themes&#60;/a&#62; for examples).&#60;/p&#62;
&#60;p&#62;changing some styles is also necessary:&#60;br /&#62;
&#60;code&#62;ul.navigation { margin-bottom: 20px; }&#60;br /&#62;
.feature { margin:0; }&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>opticmedia on "Navigation below featured image?"</title>
			<link>http://www.vfxdude.com/forum/topic/navigation-below-featured-image#post-7282</link>
			<pubDate>Wed, 14 Sep 2011 07:13:04 +0000</pubDate>
			<dc:creator>opticmedia</dc:creator>
			<guid isPermaLink="false">7282@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;&#60;em&#62;&#60;strong&#62;It's possible to move the navigation below the featured posts images with hooks, but I need to know if that is what you are talking about before I go further with this.&#60;/strong&#62;&#60;/em&#62;&#60;br /&#62;
Indeed this is what i needed! Hope you can help me out because at the moment i have a temporarily solution.&#60;br /&#62;
The other option is to have a vertical menu on the left side of the feautured image...&#60;/p&#62;
&#60;p&#62;thanks in advanced!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Page using &#34;blog post&#34; template by category AND tag"</title>
			<link>http://www.vfxdude.com/forum/topic/page-using-blog-post-template-by-category-and-tag#post-7213</link>
			<pubDate>Wed, 07 Sep 2011 09:48:06 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">7213@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;the cf name is tax (like the bfthumbs parameter). It can have this format: genre:action,thriller;actor:Mel Gibson.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>manuelden on "Page using &#34;blog post&#34; template by category AND tag"</title>
			<link>http://www.vfxdude.com/forum/topic/page-using-blog-post-template-by-category-and-tag#post-7196</link>
			<pubDate>Wed, 31 Aug 2011 14:18:53 +0000</pubDate>
			<dc:creator>manuelden</dc:creator>
			<guid isPermaLink="false">7196@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;is this feature ready?&#60;/p&#62;
&#60;p&#62;I tried to use &#34;taxonomy&#34; and &#34;taxonomy name&#34; on a page ( I want to display my custom post types) with &#34;blog posts&#34; page attributes with no result
&#60;/p&#62;</description>
		</item>
		<item>
			<title>khasfoto on "Ads at the side bar"</title>
			<link>http://www.vfxdude.com/forum/topic/ads-at-the-side-bar#post-7108</link>
			<pubDate>Wed, 17 Aug 2011 07:12:21 +0000</pubDate>
			<dc:creator>khasfoto</dc:creator>
			<guid isPermaLink="false">7108@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Thank You
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Ads at the side bar"</title>
			<link>http://www.vfxdude.com/forum/topic/ads-at-the-side-bar#post-7074</link>
			<pubDate>Mon, 15 Aug 2011 12:13:33 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">7074@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;install this the &#60;a href=&#34;http://wordpress.org/extend/plugins/wp125/&#34;&#62;wp125 plugin&#60;/a&#62;, and add the images with the plugin settings, then add the widget to the sidebar that comes with the plugin.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>khasfoto on "Ads at the side bar"</title>
			<link>http://www.vfxdude.com/forum/topic/ads-at-the-side-bar#post-7049</link>
			<pubDate>Sun, 14 Aug 2011 05:44:41 +0000</pubDate>
			<dc:creator>khasfoto</dc:creator>
			<guid isPermaLink="false">7049@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;How do i add my ads to the side bar similiar to &#60;a href=&#34;http://www.vfxdude.com/bigfeature/&#34;&#62;Big Feature Main Page&#60;/a&#62;&#60;br /&#62;
There are 4 ads below the about column. How do i that thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "BF - Individual Menu in the Sidebar"</title>
			<link>http://www.vfxdude.com/forum/topic/bf-individual-menu-in-the-sidebar#post-6992</link>
			<pubDate>Tue, 02 Aug 2011 21:09:15 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">6992@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;how do you add the menu to the sidebar? a hover effect can be made with jquery, binding preview images to the classes in the menu. lineheight of the dropdown menu?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>philippe on "BF - Individual Menu in the Sidebar"</title>
			<link>http://www.vfxdude.com/forum/topic/bf-individual-menu-in-the-sidebar#post-6983</link>
			<pubDate>Tue, 02 Aug 2011 09:03:15 +0000</pubDate>
			<dc:creator>philippe</dc:creator>
			<guid isPermaLink="false">6983@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;BF - Individual Menu in the Sidebar&#60;br /&#62;
How can i create a hover-effect for the links to the pages?&#60;br /&#62;
And how is it possible to change the linehight of the pages in the 2nd level?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "How to show / hide sidebars"</title>
			<link>http://www.vfxdude.com/forum/topic/how-to-show-hide-sidebars#post-6970</link>
			<pubDate>Mon, 01 Aug 2011 19:07:50 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">6970@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;you can create a custom page template and use the get_sidebar call to only show sidebar2. &#60;/p&#62;
&#60;p&#62;like this (replace the default get_sidebar() call):&#60;br /&#62;
&#60;code&#62;get_sidebar('2');&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tommy on "How to show / hide sidebars"</title>
			<link>http://www.vfxdude.com/forum/topic/how-to-show-hide-sidebars#post-6969</link>
			<pubDate>Mon, 01 Aug 2011 17:00:20 +0000</pubDate>
			<dc:creator>tommy</dc:creator>
			<guid isPermaLink="false">6969@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Update: I'm using only one sidebar now, so for the time being the question is not important anymore. Anyway it would be great to know if there's a way to solve this :-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Navigation below featured image?"</title>
			<link>http://www.vfxdude.com/forum/topic/navigation-below-featured-image#post-6955</link>
			<pubDate>Mon, 01 Aug 2011 10:14:12 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">6955@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;it depends if you are talking about the post images displayed as container width on the frontpage of the blog and the single post pages, or an header image added to an adspace. &#60;a href=&#34;http://www.vfxdude.com/bigfeature/2009/10/faq/#featureimage&#34;&#62;Read this&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;It's possible to move the navigation below the featured posts images with hooks, but I need to know if that is what you are talking about before I go further with this.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>

