<?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; User Favorites: LoveFillies</title>
		<link><a href='http://www.vfxdude.com/forum/profile/lovefillies'>lovefillies</a></link>
		<description>premium wordpress themes</description>
		<language>en-US</language>
		<pubDate>Fri, 10 Feb 2012 11:42:57 +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/profile/" 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 "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 "Tips and Tricks"</title>
			<link>http://www.vfxdude.com/forum/topic/tips-and-tricks#post-5359</link>
			<pubDate>Mon, 24 Jan 2011 14:49:23 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">5359@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;&#60;strong&#62;custom blog frontpage&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;&#60;img src=&#34;http://www.vfxdude.com/external-images/custom-blog-frontpage.jpg&#34;&#62;&#60;/p&#62;
&#60;p&#62;bfthumbs has many different uses, like the featured thumbs above, but it can also be used to create a blog frontpage. The thumbs in the code below use an offset parameter to continue from the first post. That way a whole page can be designed with a magazine style look, adding ads in between and whatnot. There's no category or tag added so then all new posts are fetched. The older posts link can be to the second page of the blog or maybe the archive (replace the hash sign with the url). Add the code to a page using the default template (disable the &#34;Use the name as heading in pages (default template)&#34; theme setting).&#60;/p&#62;
&#60;p&#62;&#60;code&#62;[bfthumbs numposts=&#34;1&#34; numcols=&#34;1&#34;  width=&#34;528&#34; height=&#34;250&#34; caption=&#34;overlay&#34; text=&#34;false&#34; title=&#34;false&#34;]&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;&#60;code&#62;[bfthumbs numposts=&#34;6&#34; numcols=&#34;3&#34; offset=&#34;2&#34;  marginright=&#34;15&#34;  width=&#34;152&#34; numwords=&#34;10&#34; class=&#34;thumbframe1&#34;]&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;a href=&#38;quot;#&#38;quot;&#38;gt;« Older Posts&#38;lt;/a&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Update:&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;In version 1.4.0.4 some new features was added to make this even better. Now it works with normal page navigation (need one of the page navigation plugins listed &#60;a href=&#34;http://www.vfxdude.com/bigfeature/2009/07/setting-up-the-theme/&#34;&#62;here&#60;/a&#62;), and also stuff can be shown only on the first page (this is useful for the first feature post). This way bfthumbs can be used instead of the blog or any page template. So the new code will then be:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;[bfthumbs numposts=&#34;1&#34; numcols=&#34;1&#34;  width=&#34;528&#34; height=&#34;250&#34; caption=&#34;overlay&#34; text=&#34;false&#34; title=&#34;false&#34; onlyfirstpage=&#34;true&#34;]&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;&#60;code&#62;[bfthumbs showposts=&#34;6&#34; numcols=&#34;3&#34; offset=&#34;2&#34;  marginright=&#34;15&#34;  width=&#34;152&#34; numwords=&#34;10&#34; class=&#34;thumbframe1&#34; ajaxnav=&#34;false&#34;]&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;The onlyfirstpage parameter is only implemented in bfthumbs, but here is how to do it with other shortcodes and content:&#60;/p&#62;
&#60;p&#62;1. Add this css to style.css:&#60;br /&#62;
body.paged .fponly { display:none; }&#60;/p&#62;
&#60;p&#62;2. add this class to the shortcode, like this:&#60;br /&#62;
&#60;code&#62;[bfslider class=&#34;fponly&#34;]&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;or to a wrapping div, like this:&#60;br /&#62;
&#60;code&#62;&#38;lt;div class=&#34;fponly&#34;&#38;gt;[bfslider] everything inside this div will only show on the first page.&#38;lt;/div&#38;gt;&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Tips and Tricks"</title>
			<link>http://www.vfxdude.com/forum/topic/tips-and-tricks#post-5351</link>
			<pubDate>Sun, 23 Jan 2011 14:46:52 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">5351@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;&#60;strong&#62;featured thumbnails with bfthumbs&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;&#60;img src=&#34;http://www.vfxdude.com/external-images/featuredthumbs.jpg&#34;&#62;&#60;/p&#62;
&#60;p&#62;Here's how to create a feature thumbs area (like on Engadget) with bfthumbs.&#60;/p&#62;
&#60;p&#62;1. Add this code to a page (it can be a frontpage with no sidebar, or a page added to a widget area with the BF Page widget):&#60;br /&#62;
&#60;code&#62;[bfthumbs category=&#34;feature&#34; numposts=&#34;1&#34;  width=&#34;500&#34; height=&#34;170&#34; marginright=&#34;2&#34; marginbottom=&#34;2&#34; caption=&#34;overlay&#34; text=&#34;false&#34; title=&#34;false&#34; class=&#34;alignleft featuredthumbs&#34;]&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;&#60;code&#62;[bfthumbs category=&#34;feature&#34; numposts=&#34;1&#34; numcols=&#34;1&#34; offset=&#34;2&#34; width=&#34;345&#34; height=&#34;170&#34; marginbottom=&#34;2&#34; caption=&#34;overlay&#34; text=&#34;false&#34; title=&#34;false&#34; class=&#34;featuredthumbs&#34;]&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;&#60;code&#62;[bfthumbs category=&#34;feature&#34; numposts=&#34;3&#34; numcols=&#34;3&#34; offset=&#34;3&#34; width=&#34;281&#34; height=&#34;120&#34; marginright=&#34;2&#34; caption=&#34;overlay&#34; text=&#34;false&#34; title=&#34;false&#34; class=&#34;featuredthumbs&#34;]&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;2. Add this css to bottom style.css to remove some margins (preferably in a &#60;a href=&#34;http://www.vfxdude.com/bigfeature/2009/10/faq/#childtheme&#34;&#62;child theme&#60;/a&#62;)&#60;br /&#62;
&#60;code&#62;.featuredthumbs .post.thumb .thumbcontent { margin:0; }&#60;br /&#62;
.featuredthumbs .post.thumb { margin-top:0; }&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Custom captions (independent of the post title) can be added with a custom field called thumbcaption.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Tips and Tricks"</title>
			<link>http://www.vfxdude.com/forum/topic/tips-and-tricks#post-5349</link>
			<pubDate>Sun, 23 Jan 2011 12:29:12 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">5349@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;&#60;strong&#62;sidebar tabs for widgets&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;&#60;img src=&#34;http://www.vfxdude.com/external-images/sidebartabs-look.png&#34;&#62;&#60;/p&#62;
&#60;p&#62;There are several plugins that makes it possible to add widgets to tabs in the sidebar. After testing some of them I found one that I like, the &#60;a href=&#34;http://wordpress.org/extend/plugins/sidebartabs/&#34;&#62;sidebarTabs&#60;/a&#62; plugin. It supports multiple instances, and got lots of options. Here's how I set it up:&#60;/p&#62;
&#60;p&#62;1. See the screenshots &#60;a href=&#34;http://www.blogviche.com.br/plugin-sidebartabs/&#34;&#62;here&#60;/a&#62; how to add widgets to it.&#60;/p&#62;
&#60;p&#62;2. Change the looks of the tabs by editing the SidebarTabs options. &#60;a href=&#34;http://www.vfxdude.com/external-images/sidebartabs-options.png&#34;&#62;Here's a screenshot&#60;/a&#62; of the one I choose for the look in the image above.&#60;/p&#62;
&#60;p&#62;3. To get the same look as in the picture add the css below to style.css (preferably in a &#60;a href=&#34;http://www.vfxdude.com/bigfeature/2009/10/faq/#childtheme&#34;&#62;child theme&#60;/a&#62;):&#60;br /&#62;
#sidebar .sidebarTabs_panes ul li { display: block; float: none; width: 100%; }&#60;br /&#62;
#sidebar .sidebarTabs_panes .tb, #sidebar .sb_accordion div.pane { padding: 8px 0 8px 1px; }&#60;br /&#62;
#sidebar .sidebarTabs a { margin-right: 6px !important; }
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Tips and Tricks"</title>
			<link>http://www.vfxdude.com/forum/topic/tips-and-tricks#post-5322</link>
			<pubDate>Thu, 20 Jan 2011 12:23:25 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">5322@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;&#60;strong&#62;make the post image smaller&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;&#60;blockquote&#62;&#60;img src=&#34;http://vfxdude.com/external-images/post-thumb.png&#34;&#62;&#60;/blockquote&#62;&#60;/p&#62;
&#60;p&#62;The best way to make add smaller preview images for the blog posts is to insert the image into the post, with the size selected and left align it, and then add the &#38;lt;!--more--&#38;gt; tag after the image and the preview text. Then a readmore link will be added at that tags location. Here are some screenshots illustrating what I'm talking about: &#60;a href=&#34;http://www.vfxdude.com/external-images/insert-image-into-editor.png&#34;&#62;1&#60;/a&#62;, &#60;a href=&#34;http://www.vfxdude.com/external-images/insert-image-into-editor-html.png&#34;&#62;2&#60;/a&#62;, &#60;a href=&#34;http://www.vfxdude.com/external-images/insert-image-into-editor-visual.png&#34;&#62;3&#60;/a&#62;, &#60;a href=&#34;http://www.vfxdude.com/external-images/insert-image-into-editor-blog-frontpage.png&#34;&#62;4&#60;/a&#62;. You can still have bfthumbs (and slider) images by adding the image url to the &#34;Thumbnail image URL&#34; input field below the editor.&#60;/p&#62;
&#60;p&#62;If you rather want to make the default image smaller (the one set as featured), you can do it with css, like this:&#60;/p&#62;
&#60;p&#62;1. Enable the &#34;Move the default post image below the title&#34; theme setting.&#60;/p&#62;
&#60;p&#62;2. Enable the &#34;Disable the feature image on the frontpage&#34; theme setting if you don't want the first image on the blog frontpage to be feature size (container width).&#60;/p&#62;
&#60;p&#62;3. Add this css to the bottom style.css (preferably in a &#60;a href=&#34;http://www.vfxdude.com/bigfeature/2009/10/faq/#childtheme&#34;&#62;child theme&#60;/a&#62;)&#60;br /&#62;
&#60;code&#62;.post .postimage.normal { float:left; margin: 0 20px 10px 0; }&#60;br /&#62;
.post .postimage.normal img { width: 200px; height: auto; }&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;The image must still be the content width to be shown, but css will resize it to the pixel width set in the css above. Increase the &#34;Limit frontpage text&#34; theme setting to show more preview text or use a &#38;lt;!--more--&#38;gt; tag in the post to set exactly what to show as preview text (adding text to the excerpt field also works). If you only want this on the frontpage of the blog change the &#60;code&#62;.post&#60;/code&#62; selector to &#60;code&#62;.post.frontpage&#60;/code&#62;.&#60;/p&#62;
&#60;p&#62;Another way to make the blog frontpage images smaller is to enable the &#34;Show older posts on the blog frontpage as thumbnail posts&#34; settings, then posts and images will be shown in thumbnail size.&#60;/p&#62;
&#60;p&#62;You can also design a page with the bfthumbs shortcode to be the blog frontpage like shown &#60;a href=&#34;http://www.vfxdude.com/forum/topic/tips-and-tricks#post-5359&#34;&#62;here&#60;/a&#62;.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Tips and Tricks"</title>
			<link>http://www.vfxdude.com/forum/topic/tips-and-tricks#post-5127</link>
			<pubDate>Fri, 17 Dec 2010 12:35:20 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">5127@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;&#60;strong&#62;add a divider between the bfthumbs posts&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;1. add a class parameter to the bfthumbs shortcode, like this:&#60;br /&#62;
&#60;code&#62;class=&#34;mythumbs&#34;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;2. reduce the width of the thumb posts (in the bfthumbs shortcode) to make place for the separator (and padding) by adding a width parameter:&#60;br /&#62;
&#60;code&#62;width=&#34;241&#34;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;3. add the separator with css (add it to style.css (preferably in a child theme)):&#60;br /&#62;
&#60;code&#62;.mythumbs .post.thumb { border-right: 1px solid #ddd; padding-right: 20px; }&#60;br /&#62;
.mythumbs .post.thumb.last-thumb { border-right: none; padding-right: 0; }&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Tips and Tricks"</title>
			<link>http://www.vfxdude.com/forum/topic/tips-and-tricks#post-4824</link>
			<pubDate>Mon, 22 Nov 2010 12:05:04 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">4824@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;&#60;strong&#62;add a vertical navigation to the sidebar&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;1. Create a new navigation, call it sidebarnav.&#60;/p&#62;
&#60;p&#62;2. Create a page and add this shortcode:&#60;br /&#62;
&#60;code&#62;[bfnav name=&#34;sidebarnav&#34; style=&#34;verticalnav&#34;]&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;3. Add this css to the bottom of style.css (preferably in a &#60;a href=&#34;http://www.vfxdude.com/bigfeature/2009/10/faq/#childtheme&#34;&#62;child theme&#60;/a&#62;):&#60;br /&#62;
&#60;code&#62;ul.navigation.verticalnav { width: 100%; }&#60;br /&#62;
ul.navigation.verticalnav li { float: none; padding: 0; }&#60;br /&#62;
ul.navigation.verticalnav li a { color:#333 !important; padding: 5px 0; }&#60;br /&#62;
#sidebar { overflow: visible;  }&#60;br /&#62;
#sidebar ul.navigation li li { border-right: 1px solid #ddd; border-top: none; margin: 0; }&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;4. Add the page to the sidebar with the BF Page widget.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Tips and Tricks"</title>
			<link>http://www.vfxdude.com/forum/topic/tips-and-tricks#post-4638</link>
			<pubDate>Thu, 04 Nov 2010 18:49:40 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">4638@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;&#60;strong&#62;modifying the bfthumbs output&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;The bfthumbs output can be changed with the bfthumbs_content filter. Here is an example how the post meta information (meta=&#34;true&#34; must be set for it to show) can be changed (add it to functions.php of a child theme):&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function bfthumbs_meta($thumbpost) {
  global $post;
  foreach(get_the_category($post-&#38;gt;ID) as $category)
    $categories[] = &#38;#39;&#38;lt;a href=&#38;quot;&#38;#39;.get_category_link( $category-&#38;gt;cat_ID ).&#38;#39;&#38;quot;&#38;gt;&#38;#39;.$category-&#38;gt;name.&#38;#39;&#38;lt;/a&#38;gt;&#38;#39;;
  $thumbpost[&#38;#39;meta&#38;#39;] = &#38;#39;&#38;lt;div class=&#38;quot;meta&#38;quot;&#38;gt;&#38;#39;.implode(&#38;#39;, &#38;#39;, $categories).&#38;#39;&#38;lt;/div&#38;gt;&#38;#39;;
  return $thumbpost;
}
add_filter(&#38;#39;bfthumbs_content&#38;#39;, &#38;#39;bfthumbs_meta&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Add the code to functions.php of a &#60;a href=&#34;http://www.vfxdude.com/downloads/&#34;&#62;child theme&#60;/a&#62;. All elements of the thumbnail post can be changed this way, the thumblink, the length of the text or even the image shown. Do a vardump on the $thumbpost array passed to the filter to see what can be changed, like this: var_dump($thumbpost);&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Here's an example how to remove the comment link from the meta:&#60;/strong&#62;&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function bfthumbs_meta($thumbpost) {
  global $post, $bf_date_format;
  $thumbpost[&#38;#39;meta&#38;#39;] = &#38;#39;&#38;lt;div class=&#38;quot;meta&#38;quot;&#38;gt;&#38;#39;. get_the_time($bf_date_format) . &#38;#39;&#38;lt;/div&#38;gt;&#38;#39;;
  return $thumbpost;
}
add_filter(&#38;#39;bfthumbs_content&#38;#39;, &#38;#39;bfthumbs_meta&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;strong&#62;Here's an example how to add a comments link at the bottom (only on the home page):&#60;/strong&#62;&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function bfthumbs_custom($thumbpost) {
  global $post;
  if (is_home()) {
	  $comments = &#38;#39;&#38;lt;div class=&#38;quot;meta&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;#39;. get_comments_link($post-&#38;gt;ID)
	  	     .&#38;#39;&#38;quot;&#38;gt;Comments (&#38;#39;.get_comments_number($post-&#38;gt;ID) .&#38;#39;)&#38;lt;/a&#38;gt;&#38;lt;/div&#38;gt;&#38;#39;;
	  $thumbpost[&#38;#39;text&#38;#39;] = $thumbpost[&#38;#39;text&#38;#39;] . $comments;
  }
  return $thumbpost;
}
add_filter(&#38;#39;bfthumbs_content&#38;#39;, &#38;#39;bfthumbs_custom&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;strong&#62;You can also pass custom parameters. Example:&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;&#60;code&#62;[bfthumbs numposts=&#34;2&#34; numcols=&#34;1&#34; text=&#34;false&#34; hideimage=&#34;true&#34; topdate=&#34;true&#34;]&#60;/code&#62;&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function bfthumbs_custom($thumbpost, $atts) {
  global $post, $bf_short_date_format;
  if ($atts[&#38;#39;topdate&#38;#39;] == &#38;#39;true&#38;#39;) {
	  $date = &#38;#39;&#38;lt;div class=&#38;quot;thumbdate&#38;quot;&#38;gt;&#38;#39;. get_the_time($bf_short_date_format, $post-&#38;gt;ID) . &#38;#39;&#38;lt;/div&#38;gt;&#38;#39;;
	  $thumbpost[&#38;#39;title&#38;#39;] = $date . $thumbpost[&#38;#39;title&#38;#39;];
  }
  return $thumbpost;
}
add_filter(&#38;#39;bfthumbs_content&#38;#39;, &#38;#39;bfthumbs_custom&#38;#39;, 10, 2);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The topdate is a custom parameter that is passed to the filter function. This way you can create all kind of designs based on custom parameters.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Tips and Tricks"</title>
			<link>http://www.vfxdude.com/forum/topic/tips-and-tricks#post-4470</link>
			<pubDate>Tue, 19 Oct 2010 09:31:03 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">4470@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;&#60;strong&#62;custom header&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;I have gotten several questions about how to customize the header. This can be done in the theme setting by adding/removing features and adding stuff to the header widget areas. For example you can add a header image to the top of the header by creating a page (with an image/ad or something) and adding it to the &#34;Adspace - top of the page&#34; or the &#34;Adspace - Header&#34; widget area with the BF Page widget (it's also possible to add a header image with the logo uploader). &#60;/p&#62;
&#60;p&#62;However, if you want to do bigger changes creating a function in a child theme is the best approach. &#60;a href=&#34;http://www.vfxdude.com/wp-content/uploads/2009/08/bfCustomHeader.zip&#34;&#62;Here's a child theme&#60;/a&#62; I created as an example how to create a custom header function to replace the built in one. It left aligns all navigation styles (normally the 3 last navigation styles are right aligned) and also includes the search box for all styles.&#60;/p&#62;
&#60;p&#62;The advantage with this function is that you can add stuff like images or plugin calls, or even an &#60;a href=&#34;http://www.vfxdude.com/bigfeature/2009/10/faq/#xtranavs&#34;&#62;extra navigation&#60;/a&#62;.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Tips and Tricks"</title>
			<link>http://www.vfxdude.com/forum/topic/tips-and-tricks#post-4337</link>
			<pubDate>Wed, 06 Oct 2010 11:18:09 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">4337@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;&#60;strong&#62;create a custom navigation style&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;I recommend to check the bfnav child theme, 3 navigations are used there, 2 of them got custom styles (check the functions.php how to call the navigation and set the style).&#60;/p&#62;
&#60;p&#62;a short tutorial:&#60;br /&#62;
1. use a child theme (&#60;a href=&#34;http://www.vfxdude.com/bigfeature/2009/10/faq/#childtheme&#34;&#62;topArt&#60;/a&#62; maybe, since it's a blank canvas).&#60;br /&#62;
2. remove the normal navigation hook (in functions.php) like this:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_action( &#38;#39;wp_head&#38;#39;, &#38;#39;remove_actions&#38;#39; );
function remove_actions() {
  remove_action( &#38;#39;bf_header&#38;#39;, &#38;#39;bf_navigation&#38;#39; );
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;3. create a new navigation function like this:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_action( &#38;#39;bf_header&#38;#39;, &#38;#39;my_navigation&#38;#39; );
function my_navigation() {
  bf_navigation(&#38;quot;&#38;quot;,&#38;quot;mynavigation&#38;quot;);
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;4. style the navigation like this (use firebug to find what to change):&#60;br /&#62;
&#60;code&#62;ul.navigation.mynavigation { margin-top: 0; }&#60;br /&#62;
ul.navigation.mynavigation li.current_page_item a { background-color: #333; }&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Firebug is you best friend doing such work. &#60;a href=&#34;http://www.vfxdude.com/bigfeature/2009/10/faq/#xtranavs&#34;&#62;here's&#60;/a&#62; info how to create more navigations.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ronenbekerman on "SEO Plugin or SEO options of Bigfeature"</title>
			<link>http://www.vfxdude.com/forum/topic/seo-plugin-or-seo-options-of-bigfeature#post-3550</link>
			<pubDate>Sat, 21 Aug 2010 17:03:39 +0000</pubDate>
			<dc:creator>ronenbekerman</dc:creator>
			<guid isPermaLink="false">3550@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Would be better to set the sidebar titles to lower heading level. the current H2 is too much for them.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "SEO Plugin or SEO options of Bigfeature"</title>
			<link>http://www.vfxdude.com/forum/topic/seo-plugin-or-seo-options-of-bigfeature#post-3519</link>
			<pubDate>Thu, 19 Aug 2010 13:32:22 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">3519@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;can you please make another thread for this? you can use the BF Page widget to add pages instead of using the text widget.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kurtp on "SEO Plugin or SEO options of Bigfeature"</title>
			<link>http://www.vfxdude.com/forum/topic/seo-plugin-or-seo-options-of-bigfeature#post-3497</link>
			<pubDate>Tue, 17 Aug 2010 17:30:11 +0000</pubDate>
			<dc:creator>kurtp</dc:creator>
			<guid isPermaLink="false">3497@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Thanks.&#60;/p&#62;
&#60;p&#62;I am now trying to set up tables in a page and it seems that te text widgets are limited in the html they will display.  Actually, they seem to display different table properties than the pages.  Since I want to display tables identically across the pages and widgets like here:  &#60;a href=&#34;http://www.bestvaluewebhostingcompanies.com&#34; rel=&#34;nofollow&#34;&#62;http://www.bestvaluewebhostingcompanies.com&#60;/a&#62; I am not sure what to do.  I am looking at several themes to do this but there are limitations.  The afformentioned site uses a nicely displayed theme, but it really screws up SEO so I need to move to another one.&#60;/p&#62;
&#60;p&#62;Thanks for your time.&#60;/p&#62;
&#60;p&#62;Kurt
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "SEO Plugin or SEO options of Bigfeature"</title>
			<link>http://www.vfxdude.com/forum/topic/seo-plugin-or-seo-options-of-bigfeature#post-3493</link>
			<pubDate>Tue, 17 Aug 2010 09:00:55 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">3493@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;&#60;a href=&#34;http://www.vfxdude.com/bigfeature/2009/10/faq/#sliderblog&#34;&#62;here's &#60;/a&#62;how to add the slider to the top of the blog.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kurtp on "SEO Plugin or SEO options of Bigfeature"</title>
			<link>http://www.vfxdude.com/forum/topic/seo-plugin-or-seo-options-of-bigfeature#post-3489</link>
			<pubDate>Mon, 16 Aug 2010 23:09:39 +0000</pubDate>
			<dc:creator>kurtp</dc:creator>
			<guid isPermaLink="false">3489@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;How do I add the slider?  It isn't apparent to me.  It doesn't appear to be in any of these settings.  I tried using the blog as the homepage and then using static pages, but neither works.&#60;/p&#62;
&#60;p&#62;Thanks&#60;/p&#62;
&#60;p&#62;Kurt
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "SEO Plugin or SEO options of Bigfeature"</title>
			<link>http://www.vfxdude.com/forum/topic/seo-plugin-or-seo-options-of-bigfeature#post-3447</link>
			<pubDate>Mon, 16 Aug 2010 10:32:04 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">3447@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;with the page slider you have to add the alt attribute yourself. The slider show the code just like it's added. The images in the category slider (posts) do include the alt tag automatically.&#60;/p&#62;
&#60;p&#62;You can have 3 columns by adding widgets to both of the 2 sidebars, main sidebar and 2. sidebar. The widths can be adjusted in the theme settings. Resave the theme settings after adding the widgets if you are caching the settings css to recalculate the widths.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kurtp on "SEO Plugin or SEO options of Bigfeature"</title>
			<link>http://www.vfxdude.com/forum/topic/seo-plugin-or-seo-options-of-bigfeature#post-3439</link>
			<pubDate>Sun, 15 Aug 2010 04:36:42 +0000</pubDate>
			<dc:creator>kurtp</dc:creator>
			<guid isPermaLink="false">3439@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;I have been spending time with many different themes.  The backend of each are so different.  I really like a few and BigFeature is among these.  For one reason or another I have had to move away from the last couple I have really liked.  I don't want to do this with yours, as it seem versitile enough to create several very different looks.  The idea that each client has a similar look is a little unsettling, but with the variations yours allows I can possibly get incredibly comfortable with one backend the majority of the time.  It seems there I lose half of a day or more learning nuances of each theme.  However, what is really important to me is that these themes run very clean from an SEO perspective, and I have experienced that your slider doesn't use alt for the image even though it is one of the media settings.&#60;/p&#62;
&#60;p&#62;Could you please help me understand your backoffice as much as possible?  I am working through Themeforest with several themes, but want the consistency of dealing with one backoffice the majority of the time.  I saw several versions of BigFeature that had a slider with several sliding Header images with three columns below.  I love this look, but am not sure how to create three columns with your settings.  Where these donw with your settings or through html code?&#60;/p&#62;
&#60;p&#62;Thanks.&#60;/p&#62;
&#60;p&#62;Kurt
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Fragrance on "SEO Plugin or SEO options of Bigfeature"</title>
			<link>http://www.vfxdude.com/forum/topic/seo-plugin-or-seo-options-of-bigfeature#post-2667</link>
			<pubDate>Mon, 24 May 2010 09:37:21 +0000</pubDate>
			<dc:creator>Fragrance</dc:creator>
			<guid isPermaLink="false">2667@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;admin thanks a lot!! I'm looking forward to new theme..1.4 i think i can wait without SEO ALL in 1 plug-in..
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "SEO Plugin or SEO options of Bigfeature"</title>
			<link>http://www.vfxdude.com/forum/topic/seo-plugin-or-seo-options-of-bigfeature#post-2649</link>
			<pubDate>Fri, 21 May 2010 10:46:51 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">2649@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;I'm not saying to not use SEO plugins...use as many as you want. I will consider adding a &#34;canonical url&#34; functionality for version 1.4 though.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Fragrance on "SEO Plugin or SEO options of Bigfeature"</title>
			<link>http://www.vfxdude.com/forum/topic/seo-plugin-or-seo-options-of-bigfeature#post-2645</link>
			<pubDate>Fri, 21 May 2010 08:31:14 +0000</pubDate>
			<dc:creator>Fragrance</dc:creator>
			<guid isPermaLink="false">2645@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Folks what about CANONICAL URL'S ?&#60;/p&#62;
&#60;p&#62;its not good i have:&#60;/p&#62;
&#60;p&#62;tag/news&#60;br /&#62;
/news&#60;/p&#62;
&#60;p&#62;2 same news in 2 different links.. &#60;/p&#62;
&#60;p&#62;What to do with this issue?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Nextgen bfslider"</title>
			<link>http://www.vfxdude.com/forum/topic/nextgen-bfslider#post-2640</link>
			<pubDate>Wed, 19 May 2010 17:38:27 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">2640@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;version 1.3.5.2 with sorting support is now available.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Nextgen bfslider"</title>
			<link>http://www.vfxdude.com/forum/topic/nextgen-bfslider#post-2619</link>
			<pubDate>Mon, 17 May 2010 11:10:37 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">2619@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;it's sorted by the ID, but I will add support for the sorting functionality.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>timlawrence25 on "Nextgen bfslider"</title>
			<link>http://www.vfxdude.com/forum/topic/nextgen-bfslider#post-2612</link>
			<pubDate>Fri, 14 May 2010 18:03:40 +0000</pubDate>
			<dc:creator>timlawrence25</dc:creator>
			<guid isPermaLink="false">2612@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;I'm really like all the additions in 1.3.5  As always, you've been working hard.&#60;/p&#62;
&#60;p&#62;At this time, is there any way to sort the photos when using nextgen for the bfslider?&#60;/p&#62;
&#60;p&#62;I sort the pictures but it always stays the same.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>vfxdude on "Nextgen bfslider"</title>
			<link>http://www.vfxdude.com/forum/topic/nextgen-bfslider#post-2610</link>
			<pubDate>Fri, 14 May 2010 15:56:19 +0000</pubDate>
			<dc:creator>vfxdude</dc:creator>
			<guid isPermaLink="false">2610@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;imageheight and imagewidth can be used with the content slider to resize the image (it was added in 1.3.5).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>timlawrence25 on "Nextgen bfslider"</title>
			<link>http://www.vfxdude.com/forum/topic/nextgen-bfslider#post-2609</link>
			<pubDate>Fri, 14 May 2010 15:36:17 +0000</pubDate>
			<dc:creator>timlawrence25</dc:creator>
			<guid isPermaLink="false">2609@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Yeah putting both imageheight=&#34;450&#34; and height=&#34;450&#34; for the shortcode worked.&#60;/p&#62;
&#60;p&#62;Didn't even know imageheight was a shortcode.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>timlawrence25 on "Nextgen bfslider"</title>
			<link>http://www.vfxdude.com/forum/topic/nextgen-bfslider#post-2608</link>
			<pubDate>Fri, 14 May 2010 15:30:15 +0000</pubDate>
			<dc:creator>timlawrence25</dc:creator>
			<guid isPermaLink="false">2608@http://www.vfxdude.com/forum/</guid>
			<description>&#60;p&#62;Which image height?  I've tried height=&#34;450&#34; and the that doesn't work.&#60;/p&#62;
&#60;p&#62;Do I put imageheight=&#34;450&#34; and height=&#34;450&#34; for the shortcode?&#60;/p&#62;
&#60;p&#62;Thanks Vfxdude for the help.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>

