<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://ithemes.com/codex/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://ithemes.com/codex/api.php?action=feedcontributions&amp;user=Sridhar&amp;feedformat=atom</id>
		<title>IThemes Codex - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://ithemes.com/codex/api.php?action=feedcontributions&amp;user=Sridhar&amp;feedformat=atom"/>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/Special:Contributions/Sridhar"/>
		<updated>2013-06-19T09:19:46Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.18.1</generator>

	<entry>
		<id>http://ithemes.com/codex/page/Builder_Tips_and_Tricks</id>
		<title>Builder Tips and Tricks</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/Builder_Tips_and_Tricks"/>
				<updated>2013-05-30T07:45:34Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: /* How to add support for Sidebars in Navigation Module */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Create custom blog page template for Builder ==&lt;br /&gt;
* '''Why''': Although builder generates a blog index page using the content module, in some cases you might want to create your own listing of blog posts. Perhaps to select posts only from a specific category, or for whatever other reasons you can think of.&lt;br /&gt;
* '''How''': [http://codex.wordpress.org/Function_Reference/query_posts query_posts] is a WordPress function that allows you to write your own WordPress loop. In Builder, the easiest way to create such a blog page is to&lt;br /&gt;
**[http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates create a page template], &lt;br /&gt;
**upload to your WordPress site, &lt;br /&gt;
**write a new page (no need to add content),&lt;br /&gt;
**select the newly created page template,&lt;br /&gt;
**and publish the page.&lt;br /&gt;
Your page template should look something like this:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php; highlight: [22]&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
/*&lt;br /&gt;
Template Name: Custom Blog Index Page&lt;br /&gt;
*/&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
&lt;br /&gt;
function render_content() {&lt;br /&gt;
	&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php $paged = ( get_query_var('paged') ) ? get_query_var( 'paged' ) : 1; ?&amp;gt;&lt;br /&gt;
&amp;lt;?php query_posts( 'paged='. $paged . '&amp;amp;posts_per_page=' . get_option( 'posts_per_page' ) ); ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php if ( have_posts() ) : ?&amp;gt;&lt;br /&gt;
    &amp;lt;?php while ( have_posts() ) : the_post(); ?&amp;gt;&lt;br /&gt;
        &amp;lt;?php if ( current_theme_supports( 'post-thumbnails' ) ) : ?&amp;gt;&lt;br /&gt;
            &amp;lt;?php the_post_thumbnail( array( 125, 125 ), array( 'class' =&amp;gt; 'thumb' ) ); ?&amp;gt;&lt;br /&gt;
        &amp;lt;?php endif; ?&amp;gt;&lt;br /&gt;
        &amp;lt;h3&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php the_permalink(); ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php the_title(); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/h3&amp;gt;&lt;br /&gt;
        &amp;lt;?php the_time( __( 'l, F j, Y', 'it-l10n-Builder' ) ); ?&amp;gt;&lt;br /&gt;
        &amp;lt;?php the_content_limit( 250, &amp;quot;more »&amp;quot; ); ?&amp;gt;&lt;br /&gt;
    &amp;lt;?php endwhile; ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;div class=&amp;quot;alignleft&amp;quot;&amp;gt;&amp;lt;?php previous_posts_link('« Previous Page') ?&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;alignright&amp;quot;&amp;gt;&amp;lt;?php next_posts_link('Next Page »') ?&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;?php endif; ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_action( 'builder_layout_engine_render_content', 'render_content' );&lt;br /&gt;
&lt;br /&gt;
do_action( 'builder_layout_engine_render', basename( __FILE__ ) );&lt;br /&gt;
&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
'''Important Note 1''': the actual content part (post header, date and content) is simplified, refer to the Child Themes index.php to see how it is actually coded for that specific Child Theme.&lt;br /&gt;
'''Important Note 2''': the content is displayed using &amp;lt;tt&amp;gt;the_content_limit(250, &amp;quot;more »&amp;quot;)&amp;lt;/tt&amp;gt; (see highlighted line), a function described in [[#Limit_the_content_of_a_post_that_is_displayed_on_a_blog_index_page|another tip on this page]]. You can use &amp;lt;tt&amp;gt;[http://codex.wordpress.org/Function_Reference/the_content the_content()]&amp;lt;/tt&amp;gt; or &amp;lt;tt&amp;gt;[http://codex.wordpress.org/Function_Reference/the_excerpt the_excerpt()]&amp;lt;/tt&amp;gt;, depending on your requirements.&lt;br /&gt;
&lt;br /&gt;
== Limit the content of a post that is displayed on a blog index page ==&lt;br /&gt;
* '''Why''': In some cases, &amp;lt;code&amp;gt;the_content()&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;the_excerpt()&amp;lt;/code&amp;gt; just don't fit your requirements.&lt;br /&gt;
* '''How''': Using a new function allows you to specify the number of characters you want to display on the blog index page, and what to use as the &amp;quot;more&amp;quot; text. Add the following [[function]] to your [[Child Theme|child theme's]] [[functions.php]].&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php&amp;quot;&amp;gt;&lt;br /&gt;
function the_content_limit($max_char, $more_link_text = '(more...)', $stripteaser = 0, $more_file = '') {&lt;br /&gt;
    $content = get_the_content($more_link_text, $stripteaser, $more_file);&lt;br /&gt;
    $content = apply_filters('the_content', $content);&lt;br /&gt;
&lt;br /&gt;
   if (strlen($_GET['p']) &amp;gt; 0) {&lt;br /&gt;
      echo $content;&lt;br /&gt;
   }&lt;br /&gt;
   else if ((strlen($content)&amp;gt;$max_char) &amp;amp;&amp;amp; ($space = strpos($content, &amp;quot; &amp;quot;, $max_char ))) {&lt;br /&gt;
        $content = substr($content, 0, $space);&lt;br /&gt;
        echo $content = $content . &amp;quot;&amp;amp;nbsp;&amp;lt;a href='&amp;quot;; the_permalink(); echo &amp;quot;'&amp;gt;&amp;quot;.$more_link_text.&amp;quot;&amp;lt;/a&amp;gt;&amp;quot;;&lt;br /&gt;
   }&lt;br /&gt;
   else {&lt;br /&gt;
      echo $content;&lt;br /&gt;
   }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
''(Note: 95% of the code is based on [http://labitacora.net/software-libre/plugin-for-limit-the-size-of-the-post-in-the-main-page-in-wordpress/ this plugin by Alfonso Sanchez-Paus Diaz and Julian Simon de Castro]).''&lt;br /&gt;
* '''Implementation''': Add the code to your blog index template file as described in the [[#Create_your_own_blog_index_page_in_Builder|Create your own blog index page in Builder]] tip.&lt;br /&gt;
&lt;br /&gt;
== Add a full width Header and/or Footer to your Builder theme ==&lt;br /&gt;
* '''Why''': Because you want to&lt;br /&gt;
* '''How''': Detailed instructions in [http://vanweerd.com/how-to-add-full-width-header-and-footer-to-the-builder-theme/ this article].&lt;br /&gt;
&lt;br /&gt;
Note: See http://ithemes.com/forum/topic/31075-getting-fatal-error/page__view__findpost__p__144435 for updated code.&lt;br /&gt;
&lt;br /&gt;
== How to have full width (100% wide background) modules ==&lt;br /&gt;
&lt;br /&gt;
=== When using responsive-ready child themes ===&lt;br /&gt;
&lt;br /&gt;
These child themes have version number of at least 4.0. The current list of responsive-ready Builder child themes can be seen [http://ithemes.com/codex/page/Builder_Features#List_of_responsive-ready_Builder_child_themes here].&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_theme_support( 'builder-full-width-modules' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Note''':&lt;br /&gt;
&lt;br /&gt;
# For simplicity sake, we say &amp;quot;full width modules&amp;quot;. Technically speaking, it is not the modules that become full width, but their background wrappers.&lt;br /&gt;
# Few child themes like Expansion and all its color variants have the above line in their &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; out of the box. In such cases, do not add it again.&lt;br /&gt;
# All custom CSS code should be placed at end of child theme's style.css.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ '''Before &amp;amp; After screenshots showing the effect of adding above line of code in Default child theme'''&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Before&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | After&lt;br /&gt;
|-&lt;br /&gt;
| [[File:My Test Site 2013-01-01 10-49-01.png|475px|thumb|none]]&lt;br /&gt;
  || [[File:My Test Site 2013-01-01 10-49-27.png|475px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Structural change as a result of adding above line of code ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Before&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-container-outer-wrapper {&lt;br /&gt;
    max-width: 960px;&lt;br /&gt;
    width: 100%;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(where 960 is the layout width)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;After&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-container-outer-wrapper {&lt;br /&gt;
    width: 100%;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: In [http://ithemes.com/forum/topic/35775-full-width-modules-with-responsive-turned-off-builder-4011/#entry165354 few cases], we have observed that &amp;lt;code&amp;gt;.builder-container-outer-wrapper&amp;lt;/code&amp;gt; isn't automatically becoming 100%. This can be observed using Firebug. In such cases, the following CSS should be used:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-container-outer-wrapper {&lt;br /&gt;
	width: 100% !important;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== How to set background of full width modules ====&lt;br /&gt;
&lt;br /&gt;
===== All modules =====&lt;br /&gt;
&lt;br /&gt;
If you would like to set the same background to every module of all layouts, i.e., throughout the site in a single shot, use the following sample CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-background-wrapper {&lt;br /&gt;
    background: gray;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:My Test Site 2013-01-01 11-42-10.png|475px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
===== A specific module based on its ID =====&lt;br /&gt;
&lt;br /&gt;
If you would like to set a background to a specific full width module, use the following sample CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-50842a8824755-background-wrapper {&lt;br /&gt;
    background: yellow;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where 50842a8824755 is the ID of module in question.&lt;br /&gt;
&lt;br /&gt;
[[File:My Test Site 2013-01-01 11-19-53.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
The easiest way to obtain the CSS ID is by using Firebug. Below screenshot shows where &amp;lt;code&amp;gt;builder-module-50842a8824755-background-wrapper&amp;lt;/code&amp;gt; can be found.&lt;br /&gt;
&lt;br /&gt;
[[File:2013-01-01 11-15-31.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
===== A specific module based on its position =====&lt;br /&gt;
&lt;br /&gt;
It is also possible to set background of a full width module based on its position in the layout from top. For example, the following sample CSS sets yellow background to top most modules of all layouts i.e, throughout the site.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1-background-wrapper {&lt;br /&gt;
    background: yellow;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:2013-01-01 11-35-10.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
===== All modules of a certain type =====&lt;br /&gt;
&lt;br /&gt;
It is also possible to set background of full width modules based on '''module type'''. For example, the following sample CSS sets yellow background to all widget bar modules in all layouts i.e, throughout the site.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-widget-bar-background-wrapper {&lt;br /&gt;
    background: yellow;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:My Test Site 2013-01-01 11-38-02.png|432px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== When using non responsive-ready child themes ===&lt;br /&gt;
&lt;br /&gt;
The following applies to all themes other than Acute (and its color variants), Americana (and its color variants), City Church, Blueprint, Scooter, Kepler, Lucky 7, Thinner, Traverse. All the module wrappers in these said child themes are full width by default.&lt;br /&gt;
&lt;br /&gt;
Note:&lt;br /&gt;
&lt;br /&gt;
'''1.''' PHP code given in the sections below should be put in your child theme's functions.php. If this file does not exist, create a new blank file, paste the code in between ''&amp;lt;?php'' and ''?&amp;gt;'', save it as functions.php and upload it to the child theme directory.&lt;br /&gt;
&lt;br /&gt;
'''2.''' To set width of specific module(s) full width, the module(s) should be targeted by its/their GUID. The easiest method to obtain GUID of a module is by inspecting the module via Firebug.&lt;br /&gt;
&lt;br /&gt;
[[Image:GUID.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
In the example shown in the above screenshot, GUID of the module is: 4d14470049da5&lt;br /&gt;
&lt;br /&gt;
'''3.''' To observe a module becoming full width, set a background color or image or both.&lt;br /&gt;
&lt;br /&gt;
==== To make a specific single module full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Specific-module-full-width-before.png&lt;br /&gt;
File:Specific-module-full-width-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* The following has been added to child theme's style.css to see the effect of module going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;#builder-module-4d14470049da5 {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
* In the code below, 4d14470049da5 must be replaced with GUID of the specific module which is to be made full width&lt;br /&gt;
&lt;br /&gt;
Code in functions.php:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    $full_width_modules = array( '4d14470049da5' );&lt;br /&gt;
    &lt;br /&gt;
    if ( ! in_array( $fields['guid'], $full_width_modules ) ) &lt;br /&gt;
        return $fields;&lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make specific multiple modules full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
===== By Module Types =====&lt;br /&gt;
&lt;br /&gt;
By adding the following sample code before the closing PHP tag in child theme's functions.php, all Widget Bar modules, all Navigation modules and the Footer module will become full-width.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    $full_width_modules = array( 'widget-bar','navigation','footer' );&lt;br /&gt;
    &lt;br /&gt;
    if ( ! in_array( $fields['module'], $full_width_modules ) ) &lt;br /&gt;
        return $fields;&lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The other available module types in Builder are: image, content, html&lt;br /&gt;
&lt;br /&gt;
===== By Module IDs =====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Specific-modules-full-width-before.png&lt;br /&gt;
File:Specific-modules-full-width-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* The following has been added to child theme's style.css to see the effect of module going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;#builder-module-4d14470049da5, #builder-module-4d14470049da7 {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
* In the code below, 4d14470049da5 and 4d14470049da7 must be replaced with GUID of specific modules which are to be made full width&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    $full_width_modules = array( '4d14470049da5','4d14470049da7' );&lt;br /&gt;
    &lt;br /&gt;
    if ( ! in_array( $fields['guid'], $full_width_modules ) ) &lt;br /&gt;
        return $fields;&lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make all Image modules full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Image-modules-fullwidth-before.png&lt;br /&gt;
File:Image-modules-fullwidth-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following has been added to child theme's style.css to see the effect of all image modules (only 1 is being used in the screenshot above)) going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;.builder-module-image {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    if ( 'image' !== $fields['module'] )&lt;br /&gt;
        return $fields;&lt;br /&gt;
    &lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make all Navigation modules full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Image-modules-fullwidth-before.png&lt;br /&gt;
File:Navigation-modules-fullwidth-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    if ( 'navigation' !== $fields['module'] )&lt;br /&gt;
        return $fields;&lt;br /&gt;
    &lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make Content module full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Image-modules-fullwidth-before.png&lt;br /&gt;
File:Content-module-fullwidth-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following has been added to child theme's style.css to see the effect of content module going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;.builder-module-content {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    if ( 'content' !== $fields['module'] )&lt;br /&gt;
        return $fields;&lt;br /&gt;
    &lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make all HTML modules full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Html-modules-fullwidth-before.png&lt;br /&gt;
File:Html-modules-fullwidth-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following has been added to child theme's style.css to see the effect of all HTML modules (only 1 is being used in the screenshot above) going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;.builder-module-html {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    if ( 'html' !== $fields['module'] )&lt;br /&gt;
        return $fields;&lt;br /&gt;
    &lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make all Widget Bar modules full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Widget-bar-modules-fullwidth-before.png&lt;br /&gt;
File:Widget-bar-modules-fullwidth-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following has been added to child theme's style.css to see the effect of widget bar modules going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;.builder-module-widget-bar {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    if ( 'widget-bar' !== $fields['module'] )&lt;br /&gt;
        return $fields;&lt;br /&gt;
    &lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make Footer module full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Specific-module-full-width-before.png&lt;br /&gt;
File:Footer-module-fullwidth-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following has been added to child theme's style.css to see the effect of Footer module going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;.builder-module-footer {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    if ( 'footer' !== $fields['module'] )&lt;br /&gt;
        return $fields;&lt;br /&gt;
    &lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make all modules full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
In this method we are going to add code to functions.php that will make outer wrappers of all modules full width.&lt;br /&gt;
&lt;br /&gt;
[http://d.pr/iH9x Before] -&amp;gt; [http://d.pr/bdwr After]&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function it_set_full_width_container( $width ) {&lt;br /&gt;
	remove_filter( 'builder_get_container_width', 'it_set_full_width_container' );&lt;br /&gt;
	&lt;br /&gt;
	return '';&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_get_container_width', 'it_set_full_width_container' );&lt;br /&gt;
&lt;br /&gt;
function it_set_full_width_module( $fields ) {&lt;br /&gt;
&lt;br /&gt;
	global $it_original_module_width;&lt;br /&gt;
	&lt;br /&gt;
	$it_original_module_width = '';&lt;br /&gt;
	&lt;br /&gt;
	foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $value ) {&lt;br /&gt;
		if ( preg_match( '/^(width:.+)/i', $value, $matches ) ) {&lt;br /&gt;
			$it_original_module_width = $matches[1];&lt;br /&gt;
			unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
		}&lt;br /&gt;
		if ( preg_match( '/^overflow:/', $value ) ) {&lt;br /&gt;
			unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
			$fields['attributes']['style'][] = 'overflow:visible;';&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
	add_filter( 'builder_module_filter_inner_wrapper_attributes', 'it_constrain_full_width_module_inner_wrapper' );&lt;br /&gt;
	&lt;br /&gt;
	return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'it_set_full_width_module' );&lt;br /&gt;
&lt;br /&gt;
function it_constrain_full_width_module_inner_wrapper( $fields ) {&lt;br /&gt;
	global $it_original_module_width;&lt;br /&gt;
	&lt;br /&gt;
	remove_filter( 'builder_module_filter_inner_wrapper_attributes', 'it_constrain_full_width_module_inner_wrapper' );&lt;br /&gt;
	&lt;br /&gt;
	$fields['attributes']['style'][] = $it_original_module_width;&lt;br /&gt;
	$fields['attributes']['style'][] = 'margin:0 auto;';&lt;br /&gt;
	&lt;br /&gt;
	$it_original_module_width = ''; &lt;br /&gt;
	&lt;br /&gt;
	return $fields;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following has been added to child theme's style.css to see the effect of all modules going full width:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-image-outer-wrapper {&lt;br /&gt;
	background-color: #247da7;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation-outer-wrapper {&lt;br /&gt;
	background: #e0e2e3;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-html-outer-wrapper {&lt;br /&gt;
	background: #9ba1ac;&lt;br /&gt;
	border-bottom: 0.1em dotted #CCCCCC;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-content-outer-wrapper {&lt;br /&gt;
	background: #1d313f;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-widget-bar-outer-wrapper {&lt;br /&gt;
	background: #262626;&lt;br /&gt;
	border-bottom: 0.1em dotted #CCCCCC;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-footer-outer-wrapper {&lt;br /&gt;
	background-color: #bbbbbb;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you would like to apply different styles to different modules of the same type when using this method, use [http://ithemes.com/codex/page/Builder_Features#Custom_Module_Styles Custom Module Styles]. &lt;br /&gt;
&lt;br /&gt;
Ex.: Let's say there are two widget bar modules in the layout and using the above method, both would become full width. Now if you would like to set red background to one of these widget bar module and green to another, then you have to create two custom module styles for these and use them.&lt;br /&gt;
&lt;br /&gt;
To see how these are implemented, observe functions.php and style.css of Blueprint or Americana child theme.&lt;br /&gt;
&lt;br /&gt;
The overall idea is this:&lt;br /&gt;
&lt;br /&gt;
# Register the new module style using builder_register_module_style() function&lt;br /&gt;
# Add a new style rule in child theme's style.css. For the selector name use a class with the name of module style and append &amp;quot;-outer-wrapper&amp;quot; at end. &lt;br /&gt;
&lt;br /&gt;
For details, please see [http://ithemes.com/forum/index.php?/topic/9420-americana-theme-how-do-i-get-away-from-fixed-width-layout/#p44290 Example 1], [http://ithemes.com/forum/index.php?/topic/10030-modification-to-americana-theme/#p47025 Example 2] and [http://ithemes.com/codex/page/BuilderChild-Blueprint#How_to_make_nav_bars_go_full_width Example 3].&lt;br /&gt;
&lt;br /&gt;
==To change widget titles from the default h4 to any other heading tag==&lt;br /&gt;
&lt;br /&gt;
Go to http://ithemes.com/forum/index.php?/topic/10724-widget-tags-how-to-change/#p50888&lt;br /&gt;
&lt;br /&gt;
== How to extend sidebar and/or content background so they reach till the bottom ==&lt;br /&gt;
&lt;br /&gt;
Create a 1px tall image and set it to vertically repeat as background for .builder-module-content. This image can either be created from scratch or by taking a screenshot of the site and editing in Photoshop.&lt;br /&gt;
&lt;br /&gt;
The 10 min video below shows how this can be done. It shows how to create an image in Photoshop which can be set using CSS as background for Builder's content module so the sidebar(s) and element (the actual content) appear to extend all the way to the bottom.&lt;br /&gt;
&lt;br /&gt;
Tip: To watch the video in full screen, go to http://vimeo.com/19781283 and click the small 4-arrow button.&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|19781283|800}}&lt;br /&gt;
&lt;br /&gt;
Relevant forum topics:&lt;br /&gt;
&lt;br /&gt;
http://ithemes.com/forum/index.php?/topic/8265-foundation-child-theme-color-bleed-in-main-area/#p38894&lt;br /&gt;
&lt;br /&gt;
http://ithemes.com/forum/index.php?/topic/11301-need-sidebars-to-extend-to-bottom-of-page/&lt;br /&gt;
&lt;br /&gt;
http://ithemes.com/forum/index.php?/topic/9013-here-we-are-again-sidebar-bg-color/&lt;br /&gt;
&lt;br /&gt;
http://ithemes.com/forum/index.php?/topic/8363-sidebar-styling-to-continue-vertically-for-entire-module-height/&lt;br /&gt;
&lt;br /&gt;
http://ithemes.com/forum/index.php?/topic/876-the-endless-quest-for-equal-column-heights/&lt;br /&gt;
&lt;br /&gt;
== How to add code just after &amp;lt;body&amp;gt; and just before &amp;lt;/body&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Add the following in your child theme's functions.php. If the child theme does not contain this file, a new one can be created and the below code pasted.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
add_action('builder_layout_engine_render_header', 'add_after_opening_body', 20 );&lt;br /&gt;
function add_after_opening_body() { ?&amp;gt; &lt;br /&gt;
	HTML code that you want just after the opening body tag should be placed here &lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&lt;br /&gt;
add_action('builder_finish', 'add_before_closing_body', 0 );&lt;br /&gt;
function add_before_closing_body() { ?&amp;gt; &lt;br /&gt;
	HTML code that you want just before the closing body tag should be placed here &lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Sources: [http://vanweerd.com/how-to-add-full-width-header-and-footer-to-the-builder-theme/ 1], [http://ithemes.com/codex/page/Builder_Hooks 2].&lt;br /&gt;
&lt;br /&gt;
== How to add code before and after each widget ==&lt;br /&gt;
&lt;br /&gt;
Here's an example that shows how we can add &amp;lt;pre&amp;gt;&amp;lt;div class=&amp;quot;custom_top&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/pre&amp;gt; before every widget and &amp;lt;pre&amp;gt;&amp;lt;div class=&amp;quot;custom_bottom&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/pre&amp;gt; after every widget.&lt;br /&gt;
&lt;br /&gt;
Add the following to the child theme's functions.php:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_filter_register_sidebar_options( $options ) { &lt;br /&gt;
    $options['before_widget'] = $options['before_widget'] .'&amp;lt;div class=&amp;quot;custom_top&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;';&lt;br /&gt;
    $options['after_widget'] = '&amp;lt;div class=&amp;quot;custom_bottom&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;' . $options['after_widget'];&lt;br /&gt;
    &lt;br /&gt;
    return $options;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_register_sidebar_options', 'custom_filter_register_sidebar_options' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/index.php?/topic/11752-adding-top-and-bottom-images-to-widget-area/#p55547&lt;br /&gt;
&lt;br /&gt;
== How to replace H4 tags around widget titles with divs ==&lt;br /&gt;
&lt;br /&gt;
The following code can be added before the closing PHP tag in your child theme's functions.php file to remove the H4 tags from around the widget titles:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_modify_widget_wrappers( $options ) { &lt;br /&gt;
    $options['before_title'] = '&amp;lt;div class=&amp;quot;widget-title&amp;quot;&amp;gt;';&lt;br /&gt;
    $options['after_title'] = '&amp;lt;/div&amp;gt;';&lt;br /&gt;
    &lt;br /&gt;
    return $options;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_register_sidebar_options', 'custom_modify_widget_wrappers' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/12052-builder-seo-issues-widget-heading-elements-semantic-markup/#p57074 Source].&lt;br /&gt;
&lt;br /&gt;
Another example:&lt;br /&gt;
&lt;br /&gt;
To replace h4 tags around widget titles with say h2, the following code can be used:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_modify_widget_wrappers( $options ) { &lt;br /&gt;
    $options['before_title'] = '&amp;lt;h2 class=&amp;quot;widget-title&amp;quot;&amp;gt;';&lt;br /&gt;
    $options['after_title'] = '&amp;lt;/h2&amp;gt;';&lt;br /&gt;
    &lt;br /&gt;
    return $options;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_register_sidebar_options', 'custom_modify_widget_wrappers' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to add a search form at the right side in a nav bar ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=400px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Search-in-nav-method2-before.png&lt;br /&gt;
File:Search-in-nav-method2-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''1.''' At Appearance -&amp;gt; Menus, build a custom menu having the items you would like to be shown on the nav bar.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Edit your layout and add a navigation module. Set it to show your custom menu.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add the following before closing PHP tag in child theme's functions.php:&lt;br /&gt;
    	&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_filter('wp_nav_menu_top-1_items','add_search_box', 10, 2);&lt;br /&gt;
function add_search_box($items, $args) {&lt;br /&gt;
        ob_start();&lt;br /&gt;
        get_search_form();&lt;br /&gt;
        $searchform = ob_get_contents();&lt;br /&gt;
        ob_end_clean();&lt;br /&gt;
 &lt;br /&gt;
        $items .= '&amp;lt;li class=&amp;quot;my-search-form&amp;quot;&amp;gt;' . $searchform . '&amp;lt;/li&amp;gt;';&lt;br /&gt;
    return $items;	&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace &amp;quot;top-1&amp;quot; with the slug of your custom menu.&lt;br /&gt;
&lt;br /&gt;
'''4.''' Add the following at the end of your theme's style.css:&lt;br /&gt;
    	&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation li.my-search-form {&lt;br /&gt;
    float: right;&lt;br /&gt;
    margin-right: 0.5em;&lt;br /&gt;
    border-right: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#builder-module-4d8f8f64596b7 ul {&lt;br /&gt;
    float: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace builder-module-4d8f8f64596b7 with the ID of this module.&lt;br /&gt;
&lt;br /&gt;
If you are using BuilderChild-City-Church, see [http://ithemes.com/forum/index.php?/topic/19945-search-box-in-navigation/#p94449 this] forum topic for sample CSS.&lt;br /&gt;
&lt;br /&gt;
That's it!&lt;br /&gt;
&lt;br /&gt;
Source: http://vanweerd.com/enhancing-your-wordpress-3-menus/&lt;br /&gt;
&lt;br /&gt;
This method is also explained [http://ithemesbuilder.com/how-to-add-a-items-to-builders-navigation-menus/ here].&lt;br /&gt;
&lt;br /&gt;
==Links to specific customization requests==&lt;br /&gt;
&lt;br /&gt;
===Designing a widgetized footer===&lt;br /&gt;
&lt;br /&gt;
[[Image:IWfo.16-04-2011 14-01-22.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/13449-designing-a-widgetised-footer/#p62860 Forum post]&lt;br /&gt;
&lt;br /&gt;
===Positioning images at a fixed location in all widgets===&lt;br /&gt;
&lt;br /&gt;
[[Image:3wa5.16-04-2011 14-22-06.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/13430-ionic-widget-height/#p62862 Forum post]&lt;br /&gt;
&lt;br /&gt;
===Setting up Go To Top named anchor===&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/14119-main-custom-navigation-menu-problems-in-safari-browser/#p65897 Forum post]&lt;br /&gt;
&lt;br /&gt;
== builder_comments_popup_link action explained ==&lt;br /&gt;
&lt;br /&gt;
The builder_comments_popup_link action triggers the builder_comments_popup_link() function by default. This function calls the comments_popup_link() function of WordPress but it also ensures that the link should be shown. For instance, the link should not be shown if the comments have been disabled for that content type per Builder's settings, if both comments and pings are disabled, or if a password is required in order to view the content and it has not been entered yet.&lt;br /&gt;
&lt;br /&gt;
So keeping that call in place is very important. It can still be customized in the same way a comments_popup_link() function call is customized. Let's break out the arguments to see how that is done:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
    do_action(&lt;br /&gt;
        'builder_comments_popup_link',&lt;br /&gt;
        '&amp;lt;div class=&amp;quot;alignright_comments&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;comments&amp;quot;&amp;gt;',&lt;br /&gt;
        '&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;',&lt;br /&gt;
        __( 'Add Your Comment %s', 'it-l10n-Builder' ),&lt;br /&gt;
        __( '(0)', 'it-l10n-Builder' ),&lt;br /&gt;
        __( '(1)', 'it-l10n-Builder' ),&lt;br /&gt;
        __( '(%)', 'it-l10n-Builder' )&lt;br /&gt;
    );&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now let's see that listing again while replacing the arguments with their meaning:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
    do_action(&lt;br /&gt;
        action name,&lt;br /&gt;
        content to add before link,&lt;br /&gt;
        content to add after link,&lt;br /&gt;
        template which has %s replaced with the output from comments_popup_link,&lt;br /&gt;
        comments_popup_link argument zero comments,&lt;br /&gt;
        comments_popup_link argument one comment,&lt;br /&gt;
        comments_popup_link argument more than one comment,&lt;br /&gt;
    );&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
So if you know how to modify comments_popup_link, you should now see how you can modify this action call.&lt;br /&gt;
&lt;br /&gt;
Note that all the __( 'text', 'it-l10n-Builder' ) stuff is just for translation purposes. So __( '(%)', 'it-l10n-Builder' ) just means '(%)'.&lt;br /&gt;
&lt;br /&gt;
'''Usage Example'''&lt;br /&gt;
&lt;br /&gt;
To have an image and the words &amp;quot;Add your Comment&amp;quot; with the image and text being a link:&lt;br /&gt;
&lt;br /&gt;
Since the comments_popup_link() arguments are the ones added to the link, to add an image to the link, we need to modify those arguments. Here's a quick example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
    $image_url = get_bloginfo( 'template_directory' ) . '/images/folder.png';&lt;br /&gt;
    $image = &amp;quot;&amp;lt;img src='$image_url' alt='comments' /&amp;gt;&amp;quot;;&lt;br /&gt;
    &lt;br /&gt;
    do_action(&lt;br /&gt;
        'builder_comments_popup_link',&lt;br /&gt;
        '&amp;lt;div class=&amp;quot;alignright_comments&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;comments&amp;quot;&amp;gt;',&lt;br /&gt;
        '&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;',&lt;br /&gt;
        'Add Your Comment %s',&lt;br /&gt;
        &amp;quot;$image (0)&amp;quot;,&lt;br /&gt;
        &amp;quot;$image (1)&amp;quot;,&lt;br /&gt;
        &amp;quot;$image (%)&amp;quot;&lt;br /&gt;
    );&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Of course, this adds the folder icon and not a comment icon, but hopefully you can see what we are doing here and use it to add your own image. Note that get_bloginfo( 'template_directory' ) returns the base URL to the Builder directory. To get your child theme's directory URL, you can use get_bloginfo( 'stylesheet_directory' ).&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/index.php?/topic/14453-changing-comments-format/#p67520&lt;br /&gt;
&lt;br /&gt;
== How to show &amp;quot;My Theme&amp;quot; menu only to specific users ==&lt;br /&gt;
&lt;br /&gt;
If the following section of code is added to your child theme's functions.php file, &amp;quot;My Theme&amp;quot; menu will only be shown to the user with a username of &amp;quot;admin&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function child_theme_restrict_my_theme_menu() {&lt;br /&gt;
    $user = wp_get_current_user();&lt;br /&gt;
    &lt;br /&gt;
    if ( 'admin' !== $user-&amp;gt;user_login )&lt;br /&gt;
        remove_theme_support( 'builder-my-theme-menu' );&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_customize_theme_features', 'child_theme_restrict_my_theme_menu' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you want to use a different username, replace &amp;quot;admin&amp;quot; text on the fourth line with the username you want to use. For example, to make it only show for username &amp;quot;james&amp;quot;, it would look like:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function child_theme_restrict_my_theme_menu() {&lt;br /&gt;
    $user = wp_get_current_user();&lt;br /&gt;
    &lt;br /&gt;
    if ( 'james' !== $user-&amp;gt;user_login )&lt;br /&gt;
        remove_theme_support( 'builder-my-theme-menu' );&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_customize_theme_features', 'child_theme_restrict_my_theme_menu' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The sample code below shows how to hide &amp;quot;My Theme&amp;quot; menu from everyone except Super Admins. This is a feature specific to multisite WordPress installations.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function child_theme_restrict_my_theme_menu() {&lt;br /&gt;
    if ( ! is_super_admin() )&lt;br /&gt;
        remove_theme_support( 'builder-my-theme-menu' );&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_customize_theme_features', 'child_theme_restrict_my_theme_menu' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to redirect attachment links to corresponding posts ==&lt;br /&gt;
&lt;br /&gt;
Search engine results might show links from your site leading to attachment pages which are not really that useful to the visitors. If you would like to have these links redirect to their corresponding post pages, follow this:&lt;br /&gt;
&lt;br /&gt;
Duplicate ''image.php'' from Builder Parent theme into your child theme directory, then replace the entire content of image.php (the one in your child theme directory) with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php wp_redirect(get_permalink($post-&amp;gt;post_parent)); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Forum topic: http://ithemes.com/forum/index.php?/topic/17644-how-can-i-find-and-delete-a-attachment-id-page/&lt;br /&gt;
&lt;br /&gt;
More: http://wordpress.org/support/topic/disable-attachment-posts-without-remove-the-medias and http://wordpress.org/support/topic/redirect-attachment-page-to-post-page-how-to&lt;br /&gt;
&lt;br /&gt;
== How to view debug info in page source ==&lt;br /&gt;
&lt;br /&gt;
Add &amp;lt;code&amp;gt;?builder_debug=1&amp;lt;/code&amp;gt; at the end of webpage URL.&lt;br /&gt;
&lt;br /&gt;
Ex.: If the page URL is http://ithemesbuilder.com/how-to-add-easy-social-icons-in-the-wordpress-navigation-menu/, visit http://ithemesbuilder.com/how-to-add-easy-social-icons-in-the-wordpress-navigation-menu/?builder_debug=1 and view the page source. It should show Builder specific info like this:&lt;br /&gt;
&lt;br /&gt;
[[File:2012-04-03 20-25-50.png|697px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
== How to remove Header widget ==&lt;br /&gt;
&lt;br /&gt;
Adding the following code in child theme's functions.php at the end (before closing PHP tag, if present) will remove Builder's Header widget from Appearance -&amp;gt; Widgets.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function unregister_some_widgets() {&lt;br /&gt;
	unregister_widget('BuilderHeaderWidget');&lt;br /&gt;
}&lt;br /&gt;
add_action('widgets_init', 'unregister_some_widgets', 1);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to set up print stylesheet such that only the content gets printed ==&lt;br /&gt;
&lt;br /&gt;
'''1.''' Copy &amp;lt;code&amp;gt;header.php&amp;lt;/code&amp;gt; from parent Builder directory into the child theme directory and edit it.&lt;br /&gt;
&lt;br /&gt;
Add&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot; media=&amp;quot;print&amp;quot; href=&amp;quot;&amp;lt;?php bloginfo( 'stylesheet_directory' ); ?&amp;gt;/print.css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
below&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php builder_add_stylesheets(); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''2.''' Create a file named &amp;lt;code&amp;gt;print.css&amp;lt;/code&amp;gt; in child theme directory having this code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module {&lt;br /&gt;
	display: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-content .builder-module-sidebar-outer-wrapper {&lt;br /&gt;
	display: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-content {&lt;br /&gt;
	display: block;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/topic/8611-printing-problems-with-builder-help-going-live-in-7-days/#entry44752&lt;br /&gt;
&lt;br /&gt;
== How to force CSS changes to &amp;quot;go live&amp;quot; immediately ==&lt;br /&gt;
&lt;br /&gt;
Intro: http://markjaquith.wordpress.com/2009/05/04/force-css-changes-to-go-live-immediately/&lt;br /&gt;
&lt;br /&gt;
This can be done in Builder by first making sure that the default stylesheet does not load, and then load the version with file modification date appended.&lt;br /&gt;
&lt;br /&gt;
Add the following code at the end of your child themes &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; (but before the closing &amp;lt;code&amp;gt;?&amp;gt;&amp;lt;/code&amp;gt;, if any):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// disable loading the default stylesheet&lt;br /&gt;
function custom_filter_disable_theme_stylesheets( $disable ) {&lt;br /&gt;
        return true;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_disable_theme_stylesheets', 'custom_filter_disable_theme_stylesheets', 20 );&lt;br /&gt;
&lt;br /&gt;
// add the versioned stylesheet&lt;br /&gt;
function custom_add_new_stylesheet() { ?&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php bloginfo('stylesheet_url'); echo '?' . filemtime( get_stylesheet_directory() . '/style.css'); ?&amp;gt;&amp;quot; type=&amp;quot;text/css&amp;quot; media=&amp;quot;screen, projection&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_add_stylesheets', 'custom_add_new_stylesheet' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/topic/31621-reloading-stylecss-after-every-change/#entry146840&lt;br /&gt;
&lt;br /&gt;
== How to left/right align a YouTube video ==&lt;br /&gt;
&lt;br /&gt;
When a responsive-ready child theme is active, wrapping YouTube Embed code with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: right;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: right;&amp;quot;&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/DSwQ4Mim28I?list=UUXSQU9bJhGWGvKGtfL-tuag&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
will not display the video at all on the Page/Post.&lt;br /&gt;
&lt;br /&gt;
The solution if floating is desired is to ensure that the floated element has a width associated with it. In order to prevent breaking the fluidity of the video, width should be set with a max-width and a width of 100% as shown below.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: right; max-width: 560px; width: 100%;&amp;quot;&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/DSwQ4Mim28I?list=UUXSQU9bJhGWGvKGtfL-tuag&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Forum topic: http://ithemes.com/forum/topic/34643-div-float-right-youtube-video-disappearing/&lt;br /&gt;
&lt;br /&gt;
== How to set a default placeholder text in Search box ==&lt;br /&gt;
&lt;br /&gt;
[[File:2013-02-12 20-47-26.png|216px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[[File:2013-02-12 20-47-38.png|204px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
If you would like to set a default text in search box that goes away when the search field gets focus AND your active child theme does not already have a &amp;lt;code&amp;gt;searchform.php&amp;lt;/code&amp;gt;, do this:&lt;br /&gt;
&lt;br /&gt;
Create a file named &amp;lt;code&amp;gt;searchform.php&amp;lt;/code&amp;gt; in child theme's directory having the following code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php $search_box_default = __( 'Search site', 'it-l10n-BuilderChild-Default' ); ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php $search_box_value = esc_attr( apply_filters( 'the_search_query', get_search_query() ) ); ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php $search_box_value = ( empty( $search_box_value ) ) ? $search_box_default : $search_box_value; ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;form method=&amp;quot;get&amp;quot; class=&amp;quot;search-form&amp;quot; action=&amp;quot;&amp;lt;?php echo get_option( 'home' ); ?&amp;gt;&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;input type=&amp;quot;text&amp;quot; value=&amp;quot;&amp;lt;?php echo $search_box_value; ?&amp;gt;&amp;quot; name=&amp;quot;s&amp;quot; class=&amp;quot;search-text-box&amp;quot; onfocus=&amp;quot;if(this.value == '&amp;lt;?php echo $search_box_default; ?&amp;gt;') this.value = '';&amp;quot; onblur=&amp;quot;if(this.value == '') this.value = '&amp;lt;?php echo $search_box_default; ?&amp;gt;';&amp;quot; /&amp;gt;&lt;br /&gt;
    &amp;lt;input type=&amp;quot;submit&amp;quot; value=&amp;quot;&amp;lt;?php echo esc_attr__( 'Search', 'it-l10n-BuilderChild-Default' ); ?&amp;gt;&amp;quot; class=&amp;quot;search-submit-button&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The default text can be changed in the first line. Just replace &amp;lt;code&amp;gt;Search site&amp;lt;/code&amp;gt; with your desired default placeholder text.&lt;br /&gt;
&lt;br /&gt;
Optional: Replace &amp;lt;code&amp;gt;Default&amp;lt;/code&amp;gt; in &amp;lt;code&amp;gt;it-l10n-BuilderChild-Default&amp;lt;/code&amp;gt; above with the name of your active child theme.&lt;br /&gt;
&lt;br /&gt;
== How to add support for Sidebars in Navigation Module ==&lt;br /&gt;
&lt;br /&gt;
It is possible to add sidebar(s) in a Navigation Module by adding the following in child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
add_theme_support( 'builder-navigation-module-sidebars' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 Note: This is presently an experimental feature.&lt;br /&gt;
&lt;br /&gt;
As such the graphic representing the Navigation Module in layout manager will not change to reflect the presence and arrangement of sidebar(s).&lt;br /&gt;
&lt;br /&gt;
Below is an example of using this to add social media icons floating to the right in the nav bar with BuilderChild-Default as the active theme.&lt;br /&gt;
&lt;br /&gt;
But first the result:&lt;br /&gt;
&lt;br /&gt;
[[File:WordPress Dev Site 2013-05-30 13-08-04.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
In the backend:&lt;br /&gt;
&lt;br /&gt;
[[File:2013-05-30 12-55-18.png|625px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[[File:2013-05-30 12-57-43.png|661px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[[File:WordPress Dev Site 2013-05-30 13-13-19.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
With [http://wordpress.org/plugins/social-media-widget/ Social Media Widget plugin] installed and activated, its widget has been placed in the Navigation Module's sidebar.&lt;br /&gt;
&lt;br /&gt;
[[File:2013-05-30 13-02-45.png|202px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
and this CSS added at end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation .builder-module-sidebar {&lt;br /&gt;
	background: transparent;&lt;br /&gt;
	padding-top: 0;&lt;br /&gt;
	padding-bottom: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation .widget {&lt;br /&gt;
	padding: 0;&lt;br /&gt;
	padding-right: 0.5em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation .widget a {&lt;br /&gt;
	display: inline;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.socialmedia-buttons img {&lt;br /&gt;
	padding-top: 0.5em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/Builder_Tips_and_Tricks</id>
		<title>Builder Tips and Tricks</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/Builder_Tips_and_Tricks"/>
				<updated>2013-05-30T07:45:01Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: /* How to add support for Sidebars in Navigation Module */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Create custom blog page template for Builder ==&lt;br /&gt;
* '''Why''': Although builder generates a blog index page using the content module, in some cases you might want to create your own listing of blog posts. Perhaps to select posts only from a specific category, or for whatever other reasons you can think of.&lt;br /&gt;
* '''How''': [http://codex.wordpress.org/Function_Reference/query_posts query_posts] is a WordPress function that allows you to write your own WordPress loop. In Builder, the easiest way to create such a blog page is to&lt;br /&gt;
**[http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates create a page template], &lt;br /&gt;
**upload to your WordPress site, &lt;br /&gt;
**write a new page (no need to add content),&lt;br /&gt;
**select the newly created page template,&lt;br /&gt;
**and publish the page.&lt;br /&gt;
Your page template should look something like this:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php; highlight: [22]&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
/*&lt;br /&gt;
Template Name: Custom Blog Index Page&lt;br /&gt;
*/&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
&lt;br /&gt;
function render_content() {&lt;br /&gt;
	&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php $paged = ( get_query_var('paged') ) ? get_query_var( 'paged' ) : 1; ?&amp;gt;&lt;br /&gt;
&amp;lt;?php query_posts( 'paged='. $paged . '&amp;amp;posts_per_page=' . get_option( 'posts_per_page' ) ); ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php if ( have_posts() ) : ?&amp;gt;&lt;br /&gt;
    &amp;lt;?php while ( have_posts() ) : the_post(); ?&amp;gt;&lt;br /&gt;
        &amp;lt;?php if ( current_theme_supports( 'post-thumbnails' ) ) : ?&amp;gt;&lt;br /&gt;
            &amp;lt;?php the_post_thumbnail( array( 125, 125 ), array( 'class' =&amp;gt; 'thumb' ) ); ?&amp;gt;&lt;br /&gt;
        &amp;lt;?php endif; ?&amp;gt;&lt;br /&gt;
        &amp;lt;h3&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php the_permalink(); ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php the_title(); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/h3&amp;gt;&lt;br /&gt;
        &amp;lt;?php the_time( __( 'l, F j, Y', 'it-l10n-Builder' ) ); ?&amp;gt;&lt;br /&gt;
        &amp;lt;?php the_content_limit( 250, &amp;quot;more »&amp;quot; ); ?&amp;gt;&lt;br /&gt;
    &amp;lt;?php endwhile; ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;div class=&amp;quot;alignleft&amp;quot;&amp;gt;&amp;lt;?php previous_posts_link('« Previous Page') ?&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;alignright&amp;quot;&amp;gt;&amp;lt;?php next_posts_link('Next Page »') ?&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;?php endif; ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_action( 'builder_layout_engine_render_content', 'render_content' );&lt;br /&gt;
&lt;br /&gt;
do_action( 'builder_layout_engine_render', basename( __FILE__ ) );&lt;br /&gt;
&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
'''Important Note 1''': the actual content part (post header, date and content) is simplified, refer to the Child Themes index.php to see how it is actually coded for that specific Child Theme.&lt;br /&gt;
'''Important Note 2''': the content is displayed using &amp;lt;tt&amp;gt;the_content_limit(250, &amp;quot;more »&amp;quot;)&amp;lt;/tt&amp;gt; (see highlighted line), a function described in [[#Limit_the_content_of_a_post_that_is_displayed_on_a_blog_index_page|another tip on this page]]. You can use &amp;lt;tt&amp;gt;[http://codex.wordpress.org/Function_Reference/the_content the_content()]&amp;lt;/tt&amp;gt; or &amp;lt;tt&amp;gt;[http://codex.wordpress.org/Function_Reference/the_excerpt the_excerpt()]&amp;lt;/tt&amp;gt;, depending on your requirements.&lt;br /&gt;
&lt;br /&gt;
== Limit the content of a post that is displayed on a blog index page ==&lt;br /&gt;
* '''Why''': In some cases, &amp;lt;code&amp;gt;the_content()&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;the_excerpt()&amp;lt;/code&amp;gt; just don't fit your requirements.&lt;br /&gt;
* '''How''': Using a new function allows you to specify the number of characters you want to display on the blog index page, and what to use as the &amp;quot;more&amp;quot; text. Add the following [[function]] to your [[Child Theme|child theme's]] [[functions.php]].&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php&amp;quot;&amp;gt;&lt;br /&gt;
function the_content_limit($max_char, $more_link_text = '(more...)', $stripteaser = 0, $more_file = '') {&lt;br /&gt;
    $content = get_the_content($more_link_text, $stripteaser, $more_file);&lt;br /&gt;
    $content = apply_filters('the_content', $content);&lt;br /&gt;
&lt;br /&gt;
   if (strlen($_GET['p']) &amp;gt; 0) {&lt;br /&gt;
      echo $content;&lt;br /&gt;
   }&lt;br /&gt;
   else if ((strlen($content)&amp;gt;$max_char) &amp;amp;&amp;amp; ($space = strpos($content, &amp;quot; &amp;quot;, $max_char ))) {&lt;br /&gt;
        $content = substr($content, 0, $space);&lt;br /&gt;
        echo $content = $content . &amp;quot;&amp;amp;nbsp;&amp;lt;a href='&amp;quot;; the_permalink(); echo &amp;quot;'&amp;gt;&amp;quot;.$more_link_text.&amp;quot;&amp;lt;/a&amp;gt;&amp;quot;;&lt;br /&gt;
   }&lt;br /&gt;
   else {&lt;br /&gt;
      echo $content;&lt;br /&gt;
   }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
''(Note: 95% of the code is based on [http://labitacora.net/software-libre/plugin-for-limit-the-size-of-the-post-in-the-main-page-in-wordpress/ this plugin by Alfonso Sanchez-Paus Diaz and Julian Simon de Castro]).''&lt;br /&gt;
* '''Implementation''': Add the code to your blog index template file as described in the [[#Create_your_own_blog_index_page_in_Builder|Create your own blog index page in Builder]] tip.&lt;br /&gt;
&lt;br /&gt;
== Add a full width Header and/or Footer to your Builder theme ==&lt;br /&gt;
* '''Why''': Because you want to&lt;br /&gt;
* '''How''': Detailed instructions in [http://vanweerd.com/how-to-add-full-width-header-and-footer-to-the-builder-theme/ this article].&lt;br /&gt;
&lt;br /&gt;
Note: See http://ithemes.com/forum/topic/31075-getting-fatal-error/page__view__findpost__p__144435 for updated code.&lt;br /&gt;
&lt;br /&gt;
== How to have full width (100% wide background) modules ==&lt;br /&gt;
&lt;br /&gt;
=== When using responsive-ready child themes ===&lt;br /&gt;
&lt;br /&gt;
These child themes have version number of at least 4.0. The current list of responsive-ready Builder child themes can be seen [http://ithemes.com/codex/page/Builder_Features#List_of_responsive-ready_Builder_child_themes here].&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_theme_support( 'builder-full-width-modules' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Note''':&lt;br /&gt;
&lt;br /&gt;
# For simplicity sake, we say &amp;quot;full width modules&amp;quot;. Technically speaking, it is not the modules that become full width, but their background wrappers.&lt;br /&gt;
# Few child themes like Expansion and all its color variants have the above line in their &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; out of the box. In such cases, do not add it again.&lt;br /&gt;
# All custom CSS code should be placed at end of child theme's style.css.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ '''Before &amp;amp; After screenshots showing the effect of adding above line of code in Default child theme'''&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Before&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | After&lt;br /&gt;
|-&lt;br /&gt;
| [[File:My Test Site 2013-01-01 10-49-01.png|475px|thumb|none]]&lt;br /&gt;
  || [[File:My Test Site 2013-01-01 10-49-27.png|475px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Structural change as a result of adding above line of code ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Before&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-container-outer-wrapper {&lt;br /&gt;
    max-width: 960px;&lt;br /&gt;
    width: 100%;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(where 960 is the layout width)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;After&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-container-outer-wrapper {&lt;br /&gt;
    width: 100%;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: In [http://ithemes.com/forum/topic/35775-full-width-modules-with-responsive-turned-off-builder-4011/#entry165354 few cases], we have observed that &amp;lt;code&amp;gt;.builder-container-outer-wrapper&amp;lt;/code&amp;gt; isn't automatically becoming 100%. This can be observed using Firebug. In such cases, the following CSS should be used:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-container-outer-wrapper {&lt;br /&gt;
	width: 100% !important;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== How to set background of full width modules ====&lt;br /&gt;
&lt;br /&gt;
===== All modules =====&lt;br /&gt;
&lt;br /&gt;
If you would like to set the same background to every module of all layouts, i.e., throughout the site in a single shot, use the following sample CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-background-wrapper {&lt;br /&gt;
    background: gray;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:My Test Site 2013-01-01 11-42-10.png|475px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
===== A specific module based on its ID =====&lt;br /&gt;
&lt;br /&gt;
If you would like to set a background to a specific full width module, use the following sample CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-50842a8824755-background-wrapper {&lt;br /&gt;
    background: yellow;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where 50842a8824755 is the ID of module in question.&lt;br /&gt;
&lt;br /&gt;
[[File:My Test Site 2013-01-01 11-19-53.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
The easiest way to obtain the CSS ID is by using Firebug. Below screenshot shows where &amp;lt;code&amp;gt;builder-module-50842a8824755-background-wrapper&amp;lt;/code&amp;gt; can be found.&lt;br /&gt;
&lt;br /&gt;
[[File:2013-01-01 11-15-31.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
===== A specific module based on its position =====&lt;br /&gt;
&lt;br /&gt;
It is also possible to set background of a full width module based on its position in the layout from top. For example, the following sample CSS sets yellow background to top most modules of all layouts i.e, throughout the site.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1-background-wrapper {&lt;br /&gt;
    background: yellow;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:2013-01-01 11-35-10.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
===== All modules of a certain type =====&lt;br /&gt;
&lt;br /&gt;
It is also possible to set background of full width modules based on '''module type'''. For example, the following sample CSS sets yellow background to all widget bar modules in all layouts i.e, throughout the site.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-widget-bar-background-wrapper {&lt;br /&gt;
    background: yellow;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:My Test Site 2013-01-01 11-38-02.png|432px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== When using non responsive-ready child themes ===&lt;br /&gt;
&lt;br /&gt;
The following applies to all themes other than Acute (and its color variants), Americana (and its color variants), City Church, Blueprint, Scooter, Kepler, Lucky 7, Thinner, Traverse. All the module wrappers in these said child themes are full width by default.&lt;br /&gt;
&lt;br /&gt;
Note:&lt;br /&gt;
&lt;br /&gt;
'''1.''' PHP code given in the sections below should be put in your child theme's functions.php. If this file does not exist, create a new blank file, paste the code in between ''&amp;lt;?php'' and ''?&amp;gt;'', save it as functions.php and upload it to the child theme directory.&lt;br /&gt;
&lt;br /&gt;
'''2.''' To set width of specific module(s) full width, the module(s) should be targeted by its/their GUID. The easiest method to obtain GUID of a module is by inspecting the module via Firebug.&lt;br /&gt;
&lt;br /&gt;
[[Image:GUID.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
In the example shown in the above screenshot, GUID of the module is: 4d14470049da5&lt;br /&gt;
&lt;br /&gt;
'''3.''' To observe a module becoming full width, set a background color or image or both.&lt;br /&gt;
&lt;br /&gt;
==== To make a specific single module full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Specific-module-full-width-before.png&lt;br /&gt;
File:Specific-module-full-width-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* The following has been added to child theme's style.css to see the effect of module going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;#builder-module-4d14470049da5 {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
* In the code below, 4d14470049da5 must be replaced with GUID of the specific module which is to be made full width&lt;br /&gt;
&lt;br /&gt;
Code in functions.php:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    $full_width_modules = array( '4d14470049da5' );&lt;br /&gt;
    &lt;br /&gt;
    if ( ! in_array( $fields['guid'], $full_width_modules ) ) &lt;br /&gt;
        return $fields;&lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make specific multiple modules full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
===== By Module Types =====&lt;br /&gt;
&lt;br /&gt;
By adding the following sample code before the closing PHP tag in child theme's functions.php, all Widget Bar modules, all Navigation modules and the Footer module will become full-width.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    $full_width_modules = array( 'widget-bar','navigation','footer' );&lt;br /&gt;
    &lt;br /&gt;
    if ( ! in_array( $fields['module'], $full_width_modules ) ) &lt;br /&gt;
        return $fields;&lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The other available module types in Builder are: image, content, html&lt;br /&gt;
&lt;br /&gt;
===== By Module IDs =====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Specific-modules-full-width-before.png&lt;br /&gt;
File:Specific-modules-full-width-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* The following has been added to child theme's style.css to see the effect of module going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;#builder-module-4d14470049da5, #builder-module-4d14470049da7 {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
* In the code below, 4d14470049da5 and 4d14470049da7 must be replaced with GUID of specific modules which are to be made full width&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    $full_width_modules = array( '4d14470049da5','4d14470049da7' );&lt;br /&gt;
    &lt;br /&gt;
    if ( ! in_array( $fields['guid'], $full_width_modules ) ) &lt;br /&gt;
        return $fields;&lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make all Image modules full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Image-modules-fullwidth-before.png&lt;br /&gt;
File:Image-modules-fullwidth-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following has been added to child theme's style.css to see the effect of all image modules (only 1 is being used in the screenshot above)) going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;.builder-module-image {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    if ( 'image' !== $fields['module'] )&lt;br /&gt;
        return $fields;&lt;br /&gt;
    &lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make all Navigation modules full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Image-modules-fullwidth-before.png&lt;br /&gt;
File:Navigation-modules-fullwidth-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    if ( 'navigation' !== $fields['module'] )&lt;br /&gt;
        return $fields;&lt;br /&gt;
    &lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make Content module full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Image-modules-fullwidth-before.png&lt;br /&gt;
File:Content-module-fullwidth-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following has been added to child theme's style.css to see the effect of content module going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;.builder-module-content {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    if ( 'content' !== $fields['module'] )&lt;br /&gt;
        return $fields;&lt;br /&gt;
    &lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make all HTML modules full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Html-modules-fullwidth-before.png&lt;br /&gt;
File:Html-modules-fullwidth-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following has been added to child theme's style.css to see the effect of all HTML modules (only 1 is being used in the screenshot above) going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;.builder-module-html {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    if ( 'html' !== $fields['module'] )&lt;br /&gt;
        return $fields;&lt;br /&gt;
    &lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make all Widget Bar modules full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Widget-bar-modules-fullwidth-before.png&lt;br /&gt;
File:Widget-bar-modules-fullwidth-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following has been added to child theme's style.css to see the effect of widget bar modules going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;.builder-module-widget-bar {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    if ( 'widget-bar' !== $fields['module'] )&lt;br /&gt;
        return $fields;&lt;br /&gt;
    &lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make Footer module full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Specific-module-full-width-before.png&lt;br /&gt;
File:Footer-module-fullwidth-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following has been added to child theme's style.css to see the effect of Footer module going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;.builder-module-footer {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    if ( 'footer' !== $fields['module'] )&lt;br /&gt;
        return $fields;&lt;br /&gt;
    &lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make all modules full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
In this method we are going to add code to functions.php that will make outer wrappers of all modules full width.&lt;br /&gt;
&lt;br /&gt;
[http://d.pr/iH9x Before] -&amp;gt; [http://d.pr/bdwr After]&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function it_set_full_width_container( $width ) {&lt;br /&gt;
	remove_filter( 'builder_get_container_width', 'it_set_full_width_container' );&lt;br /&gt;
	&lt;br /&gt;
	return '';&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_get_container_width', 'it_set_full_width_container' );&lt;br /&gt;
&lt;br /&gt;
function it_set_full_width_module( $fields ) {&lt;br /&gt;
&lt;br /&gt;
	global $it_original_module_width;&lt;br /&gt;
	&lt;br /&gt;
	$it_original_module_width = '';&lt;br /&gt;
	&lt;br /&gt;
	foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $value ) {&lt;br /&gt;
		if ( preg_match( '/^(width:.+)/i', $value, $matches ) ) {&lt;br /&gt;
			$it_original_module_width = $matches[1];&lt;br /&gt;
			unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
		}&lt;br /&gt;
		if ( preg_match( '/^overflow:/', $value ) ) {&lt;br /&gt;
			unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
			$fields['attributes']['style'][] = 'overflow:visible;';&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
	add_filter( 'builder_module_filter_inner_wrapper_attributes', 'it_constrain_full_width_module_inner_wrapper' );&lt;br /&gt;
	&lt;br /&gt;
	return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'it_set_full_width_module' );&lt;br /&gt;
&lt;br /&gt;
function it_constrain_full_width_module_inner_wrapper( $fields ) {&lt;br /&gt;
	global $it_original_module_width;&lt;br /&gt;
	&lt;br /&gt;
	remove_filter( 'builder_module_filter_inner_wrapper_attributes', 'it_constrain_full_width_module_inner_wrapper' );&lt;br /&gt;
	&lt;br /&gt;
	$fields['attributes']['style'][] = $it_original_module_width;&lt;br /&gt;
	$fields['attributes']['style'][] = 'margin:0 auto;';&lt;br /&gt;
	&lt;br /&gt;
	$it_original_module_width = ''; &lt;br /&gt;
	&lt;br /&gt;
	return $fields;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following has been added to child theme's style.css to see the effect of all modules going full width:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-image-outer-wrapper {&lt;br /&gt;
	background-color: #247da7;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation-outer-wrapper {&lt;br /&gt;
	background: #e0e2e3;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-html-outer-wrapper {&lt;br /&gt;
	background: #9ba1ac;&lt;br /&gt;
	border-bottom: 0.1em dotted #CCCCCC;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-content-outer-wrapper {&lt;br /&gt;
	background: #1d313f;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-widget-bar-outer-wrapper {&lt;br /&gt;
	background: #262626;&lt;br /&gt;
	border-bottom: 0.1em dotted #CCCCCC;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-footer-outer-wrapper {&lt;br /&gt;
	background-color: #bbbbbb;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you would like to apply different styles to different modules of the same type when using this method, use [http://ithemes.com/codex/page/Builder_Features#Custom_Module_Styles Custom Module Styles]. &lt;br /&gt;
&lt;br /&gt;
Ex.: Let's say there are two widget bar modules in the layout and using the above method, both would become full width. Now if you would like to set red background to one of these widget bar module and green to another, then you have to create two custom module styles for these and use them.&lt;br /&gt;
&lt;br /&gt;
To see how these are implemented, observe functions.php and style.css of Blueprint or Americana child theme.&lt;br /&gt;
&lt;br /&gt;
The overall idea is this:&lt;br /&gt;
&lt;br /&gt;
# Register the new module style using builder_register_module_style() function&lt;br /&gt;
# Add a new style rule in child theme's style.css. For the selector name use a class with the name of module style and append &amp;quot;-outer-wrapper&amp;quot; at end. &lt;br /&gt;
&lt;br /&gt;
For details, please see [http://ithemes.com/forum/index.php?/topic/9420-americana-theme-how-do-i-get-away-from-fixed-width-layout/#p44290 Example 1], [http://ithemes.com/forum/index.php?/topic/10030-modification-to-americana-theme/#p47025 Example 2] and [http://ithemes.com/codex/page/BuilderChild-Blueprint#How_to_make_nav_bars_go_full_width Example 3].&lt;br /&gt;
&lt;br /&gt;
==To change widget titles from the default h4 to any other heading tag==&lt;br /&gt;
&lt;br /&gt;
Go to http://ithemes.com/forum/index.php?/topic/10724-widget-tags-how-to-change/#p50888&lt;br /&gt;
&lt;br /&gt;
== How to extend sidebar and/or content background so they reach till the bottom ==&lt;br /&gt;
&lt;br /&gt;
Create a 1px tall image and set it to vertically repeat as background for .builder-module-content. This image can either be created from scratch or by taking a screenshot of the site and editing in Photoshop.&lt;br /&gt;
&lt;br /&gt;
The 10 min video below shows how this can be done. It shows how to create an image in Photoshop which can be set using CSS as background for Builder's content module so the sidebar(s) and element (the actual content) appear to extend all the way to the bottom.&lt;br /&gt;
&lt;br /&gt;
Tip: To watch the video in full screen, go to http://vimeo.com/19781283 and click the small 4-arrow button.&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|19781283|800}}&lt;br /&gt;
&lt;br /&gt;
Relevant forum topics:&lt;br /&gt;
&lt;br /&gt;
http://ithemes.com/forum/index.php?/topic/8265-foundation-child-theme-color-bleed-in-main-area/#p38894&lt;br /&gt;
&lt;br /&gt;
http://ithemes.com/forum/index.php?/topic/11301-need-sidebars-to-extend-to-bottom-of-page/&lt;br /&gt;
&lt;br /&gt;
http://ithemes.com/forum/index.php?/topic/9013-here-we-are-again-sidebar-bg-color/&lt;br /&gt;
&lt;br /&gt;
http://ithemes.com/forum/index.php?/topic/8363-sidebar-styling-to-continue-vertically-for-entire-module-height/&lt;br /&gt;
&lt;br /&gt;
http://ithemes.com/forum/index.php?/topic/876-the-endless-quest-for-equal-column-heights/&lt;br /&gt;
&lt;br /&gt;
== How to add code just after &amp;lt;body&amp;gt; and just before &amp;lt;/body&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Add the following in your child theme's functions.php. If the child theme does not contain this file, a new one can be created and the below code pasted.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
add_action('builder_layout_engine_render_header', 'add_after_opening_body', 20 );&lt;br /&gt;
function add_after_opening_body() { ?&amp;gt; &lt;br /&gt;
	HTML code that you want just after the opening body tag should be placed here &lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&lt;br /&gt;
add_action('builder_finish', 'add_before_closing_body', 0 );&lt;br /&gt;
function add_before_closing_body() { ?&amp;gt; &lt;br /&gt;
	HTML code that you want just before the closing body tag should be placed here &lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Sources: [http://vanweerd.com/how-to-add-full-width-header-and-footer-to-the-builder-theme/ 1], [http://ithemes.com/codex/page/Builder_Hooks 2].&lt;br /&gt;
&lt;br /&gt;
== How to add code before and after each widget ==&lt;br /&gt;
&lt;br /&gt;
Here's an example that shows how we can add &amp;lt;pre&amp;gt;&amp;lt;div class=&amp;quot;custom_top&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/pre&amp;gt; before every widget and &amp;lt;pre&amp;gt;&amp;lt;div class=&amp;quot;custom_bottom&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/pre&amp;gt; after every widget.&lt;br /&gt;
&lt;br /&gt;
Add the following to the child theme's functions.php:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_filter_register_sidebar_options( $options ) { &lt;br /&gt;
    $options['before_widget'] = $options['before_widget'] .'&amp;lt;div class=&amp;quot;custom_top&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;';&lt;br /&gt;
    $options['after_widget'] = '&amp;lt;div class=&amp;quot;custom_bottom&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;' . $options['after_widget'];&lt;br /&gt;
    &lt;br /&gt;
    return $options;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_register_sidebar_options', 'custom_filter_register_sidebar_options' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/index.php?/topic/11752-adding-top-and-bottom-images-to-widget-area/#p55547&lt;br /&gt;
&lt;br /&gt;
== How to replace H4 tags around widget titles with divs ==&lt;br /&gt;
&lt;br /&gt;
The following code can be added before the closing PHP tag in your child theme's functions.php file to remove the H4 tags from around the widget titles:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_modify_widget_wrappers( $options ) { &lt;br /&gt;
    $options['before_title'] = '&amp;lt;div class=&amp;quot;widget-title&amp;quot;&amp;gt;';&lt;br /&gt;
    $options['after_title'] = '&amp;lt;/div&amp;gt;';&lt;br /&gt;
    &lt;br /&gt;
    return $options;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_register_sidebar_options', 'custom_modify_widget_wrappers' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/12052-builder-seo-issues-widget-heading-elements-semantic-markup/#p57074 Source].&lt;br /&gt;
&lt;br /&gt;
Another example:&lt;br /&gt;
&lt;br /&gt;
To replace h4 tags around widget titles with say h2, the following code can be used:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_modify_widget_wrappers( $options ) { &lt;br /&gt;
    $options['before_title'] = '&amp;lt;h2 class=&amp;quot;widget-title&amp;quot;&amp;gt;';&lt;br /&gt;
    $options['after_title'] = '&amp;lt;/h2&amp;gt;';&lt;br /&gt;
    &lt;br /&gt;
    return $options;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_register_sidebar_options', 'custom_modify_widget_wrappers' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to add a search form at the right side in a nav bar ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=400px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Search-in-nav-method2-before.png&lt;br /&gt;
File:Search-in-nav-method2-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''1.''' At Appearance -&amp;gt; Menus, build a custom menu having the items you would like to be shown on the nav bar.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Edit your layout and add a navigation module. Set it to show your custom menu.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add the following before closing PHP tag in child theme's functions.php:&lt;br /&gt;
    	&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_filter('wp_nav_menu_top-1_items','add_search_box', 10, 2);&lt;br /&gt;
function add_search_box($items, $args) {&lt;br /&gt;
        ob_start();&lt;br /&gt;
        get_search_form();&lt;br /&gt;
        $searchform = ob_get_contents();&lt;br /&gt;
        ob_end_clean();&lt;br /&gt;
 &lt;br /&gt;
        $items .= '&amp;lt;li class=&amp;quot;my-search-form&amp;quot;&amp;gt;' . $searchform . '&amp;lt;/li&amp;gt;';&lt;br /&gt;
    return $items;	&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace &amp;quot;top-1&amp;quot; with the slug of your custom menu.&lt;br /&gt;
&lt;br /&gt;
'''4.''' Add the following at the end of your theme's style.css:&lt;br /&gt;
    	&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation li.my-search-form {&lt;br /&gt;
    float: right;&lt;br /&gt;
    margin-right: 0.5em;&lt;br /&gt;
    border-right: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#builder-module-4d8f8f64596b7 ul {&lt;br /&gt;
    float: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace builder-module-4d8f8f64596b7 with the ID of this module.&lt;br /&gt;
&lt;br /&gt;
If you are using BuilderChild-City-Church, see [http://ithemes.com/forum/index.php?/topic/19945-search-box-in-navigation/#p94449 this] forum topic for sample CSS.&lt;br /&gt;
&lt;br /&gt;
That's it!&lt;br /&gt;
&lt;br /&gt;
Source: http://vanweerd.com/enhancing-your-wordpress-3-menus/&lt;br /&gt;
&lt;br /&gt;
This method is also explained [http://ithemesbuilder.com/how-to-add-a-items-to-builders-navigation-menus/ here].&lt;br /&gt;
&lt;br /&gt;
==Links to specific customization requests==&lt;br /&gt;
&lt;br /&gt;
===Designing a widgetized footer===&lt;br /&gt;
&lt;br /&gt;
[[Image:IWfo.16-04-2011 14-01-22.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/13449-designing-a-widgetised-footer/#p62860 Forum post]&lt;br /&gt;
&lt;br /&gt;
===Positioning images at a fixed location in all widgets===&lt;br /&gt;
&lt;br /&gt;
[[Image:3wa5.16-04-2011 14-22-06.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/13430-ionic-widget-height/#p62862 Forum post]&lt;br /&gt;
&lt;br /&gt;
===Setting up Go To Top named anchor===&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/14119-main-custom-navigation-menu-problems-in-safari-browser/#p65897 Forum post]&lt;br /&gt;
&lt;br /&gt;
== builder_comments_popup_link action explained ==&lt;br /&gt;
&lt;br /&gt;
The builder_comments_popup_link action triggers the builder_comments_popup_link() function by default. This function calls the comments_popup_link() function of WordPress but it also ensures that the link should be shown. For instance, the link should not be shown if the comments have been disabled for that content type per Builder's settings, if both comments and pings are disabled, or if a password is required in order to view the content and it has not been entered yet.&lt;br /&gt;
&lt;br /&gt;
So keeping that call in place is very important. It can still be customized in the same way a comments_popup_link() function call is customized. Let's break out the arguments to see how that is done:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
    do_action(&lt;br /&gt;
        'builder_comments_popup_link',&lt;br /&gt;
        '&amp;lt;div class=&amp;quot;alignright_comments&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;comments&amp;quot;&amp;gt;',&lt;br /&gt;
        '&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;',&lt;br /&gt;
        __( 'Add Your Comment %s', 'it-l10n-Builder' ),&lt;br /&gt;
        __( '(0)', 'it-l10n-Builder' ),&lt;br /&gt;
        __( '(1)', 'it-l10n-Builder' ),&lt;br /&gt;
        __( '(%)', 'it-l10n-Builder' )&lt;br /&gt;
    );&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now let's see that listing again while replacing the arguments with their meaning:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
    do_action(&lt;br /&gt;
        action name,&lt;br /&gt;
        content to add before link,&lt;br /&gt;
        content to add after link,&lt;br /&gt;
        template which has %s replaced with the output from comments_popup_link,&lt;br /&gt;
        comments_popup_link argument zero comments,&lt;br /&gt;
        comments_popup_link argument one comment,&lt;br /&gt;
        comments_popup_link argument more than one comment,&lt;br /&gt;
    );&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
So if you know how to modify comments_popup_link, you should now see how you can modify this action call.&lt;br /&gt;
&lt;br /&gt;
Note that all the __( 'text', 'it-l10n-Builder' ) stuff is just for translation purposes. So __( '(%)', 'it-l10n-Builder' ) just means '(%)'.&lt;br /&gt;
&lt;br /&gt;
'''Usage Example'''&lt;br /&gt;
&lt;br /&gt;
To have an image and the words &amp;quot;Add your Comment&amp;quot; with the image and text being a link:&lt;br /&gt;
&lt;br /&gt;
Since the comments_popup_link() arguments are the ones added to the link, to add an image to the link, we need to modify those arguments. Here's a quick example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
    $image_url = get_bloginfo( 'template_directory' ) . '/images/folder.png';&lt;br /&gt;
    $image = &amp;quot;&amp;lt;img src='$image_url' alt='comments' /&amp;gt;&amp;quot;;&lt;br /&gt;
    &lt;br /&gt;
    do_action(&lt;br /&gt;
        'builder_comments_popup_link',&lt;br /&gt;
        '&amp;lt;div class=&amp;quot;alignright_comments&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;comments&amp;quot;&amp;gt;',&lt;br /&gt;
        '&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;',&lt;br /&gt;
        'Add Your Comment %s',&lt;br /&gt;
        &amp;quot;$image (0)&amp;quot;,&lt;br /&gt;
        &amp;quot;$image (1)&amp;quot;,&lt;br /&gt;
        &amp;quot;$image (%)&amp;quot;&lt;br /&gt;
    );&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Of course, this adds the folder icon and not a comment icon, but hopefully you can see what we are doing here and use it to add your own image. Note that get_bloginfo( 'template_directory' ) returns the base URL to the Builder directory. To get your child theme's directory URL, you can use get_bloginfo( 'stylesheet_directory' ).&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/index.php?/topic/14453-changing-comments-format/#p67520&lt;br /&gt;
&lt;br /&gt;
== How to show &amp;quot;My Theme&amp;quot; menu only to specific users ==&lt;br /&gt;
&lt;br /&gt;
If the following section of code is added to your child theme's functions.php file, &amp;quot;My Theme&amp;quot; menu will only be shown to the user with a username of &amp;quot;admin&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function child_theme_restrict_my_theme_menu() {&lt;br /&gt;
    $user = wp_get_current_user();&lt;br /&gt;
    &lt;br /&gt;
    if ( 'admin' !== $user-&amp;gt;user_login )&lt;br /&gt;
        remove_theme_support( 'builder-my-theme-menu' );&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_customize_theme_features', 'child_theme_restrict_my_theme_menu' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you want to use a different username, replace &amp;quot;admin&amp;quot; text on the fourth line with the username you want to use. For example, to make it only show for username &amp;quot;james&amp;quot;, it would look like:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function child_theme_restrict_my_theme_menu() {&lt;br /&gt;
    $user = wp_get_current_user();&lt;br /&gt;
    &lt;br /&gt;
    if ( 'james' !== $user-&amp;gt;user_login )&lt;br /&gt;
        remove_theme_support( 'builder-my-theme-menu' );&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_customize_theme_features', 'child_theme_restrict_my_theme_menu' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The sample code below shows how to hide &amp;quot;My Theme&amp;quot; menu from everyone except Super Admins. This is a feature specific to multisite WordPress installations.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function child_theme_restrict_my_theme_menu() {&lt;br /&gt;
    if ( ! is_super_admin() )&lt;br /&gt;
        remove_theme_support( 'builder-my-theme-menu' );&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_customize_theme_features', 'child_theme_restrict_my_theme_menu' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to redirect attachment links to corresponding posts ==&lt;br /&gt;
&lt;br /&gt;
Search engine results might show links from your site leading to attachment pages which are not really that useful to the visitors. If you would like to have these links redirect to their corresponding post pages, follow this:&lt;br /&gt;
&lt;br /&gt;
Duplicate ''image.php'' from Builder Parent theme into your child theme directory, then replace the entire content of image.php (the one in your child theme directory) with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php wp_redirect(get_permalink($post-&amp;gt;post_parent)); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Forum topic: http://ithemes.com/forum/index.php?/topic/17644-how-can-i-find-and-delete-a-attachment-id-page/&lt;br /&gt;
&lt;br /&gt;
More: http://wordpress.org/support/topic/disable-attachment-posts-without-remove-the-medias and http://wordpress.org/support/topic/redirect-attachment-page-to-post-page-how-to&lt;br /&gt;
&lt;br /&gt;
== How to view debug info in page source ==&lt;br /&gt;
&lt;br /&gt;
Add &amp;lt;code&amp;gt;?builder_debug=1&amp;lt;/code&amp;gt; at the end of webpage URL.&lt;br /&gt;
&lt;br /&gt;
Ex.: If the page URL is http://ithemesbuilder.com/how-to-add-easy-social-icons-in-the-wordpress-navigation-menu/, visit http://ithemesbuilder.com/how-to-add-easy-social-icons-in-the-wordpress-navigation-menu/?builder_debug=1 and view the page source. It should show Builder specific info like this:&lt;br /&gt;
&lt;br /&gt;
[[File:2012-04-03 20-25-50.png|697px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
== How to remove Header widget ==&lt;br /&gt;
&lt;br /&gt;
Adding the following code in child theme's functions.php at the end (before closing PHP tag, if present) will remove Builder's Header widget from Appearance -&amp;gt; Widgets.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function unregister_some_widgets() {&lt;br /&gt;
	unregister_widget('BuilderHeaderWidget');&lt;br /&gt;
}&lt;br /&gt;
add_action('widgets_init', 'unregister_some_widgets', 1);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to set up print stylesheet such that only the content gets printed ==&lt;br /&gt;
&lt;br /&gt;
'''1.''' Copy &amp;lt;code&amp;gt;header.php&amp;lt;/code&amp;gt; from parent Builder directory into the child theme directory and edit it.&lt;br /&gt;
&lt;br /&gt;
Add&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot; media=&amp;quot;print&amp;quot; href=&amp;quot;&amp;lt;?php bloginfo( 'stylesheet_directory' ); ?&amp;gt;/print.css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
below&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php builder_add_stylesheets(); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''2.''' Create a file named &amp;lt;code&amp;gt;print.css&amp;lt;/code&amp;gt; in child theme directory having this code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module {&lt;br /&gt;
	display: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-content .builder-module-sidebar-outer-wrapper {&lt;br /&gt;
	display: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-content {&lt;br /&gt;
	display: block;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/topic/8611-printing-problems-with-builder-help-going-live-in-7-days/#entry44752&lt;br /&gt;
&lt;br /&gt;
== How to force CSS changes to &amp;quot;go live&amp;quot; immediately ==&lt;br /&gt;
&lt;br /&gt;
Intro: http://markjaquith.wordpress.com/2009/05/04/force-css-changes-to-go-live-immediately/&lt;br /&gt;
&lt;br /&gt;
This can be done in Builder by first making sure that the default stylesheet does not load, and then load the version with file modification date appended.&lt;br /&gt;
&lt;br /&gt;
Add the following code at the end of your child themes &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; (but before the closing &amp;lt;code&amp;gt;?&amp;gt;&amp;lt;/code&amp;gt;, if any):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// disable loading the default stylesheet&lt;br /&gt;
function custom_filter_disable_theme_stylesheets( $disable ) {&lt;br /&gt;
        return true;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_disable_theme_stylesheets', 'custom_filter_disable_theme_stylesheets', 20 );&lt;br /&gt;
&lt;br /&gt;
// add the versioned stylesheet&lt;br /&gt;
function custom_add_new_stylesheet() { ?&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php bloginfo('stylesheet_url'); echo '?' . filemtime( get_stylesheet_directory() . '/style.css'); ?&amp;gt;&amp;quot; type=&amp;quot;text/css&amp;quot; media=&amp;quot;screen, projection&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_add_stylesheets', 'custom_add_new_stylesheet' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/topic/31621-reloading-stylecss-after-every-change/#entry146840&lt;br /&gt;
&lt;br /&gt;
== How to left/right align a YouTube video ==&lt;br /&gt;
&lt;br /&gt;
When a responsive-ready child theme is active, wrapping YouTube Embed code with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: right;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: right;&amp;quot;&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/DSwQ4Mim28I?list=UUXSQU9bJhGWGvKGtfL-tuag&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
will not display the video at all on the Page/Post.&lt;br /&gt;
&lt;br /&gt;
The solution if floating is desired is to ensure that the floated element has a width associated with it. In order to prevent breaking the fluidity of the video, width should be set with a max-width and a width of 100% as shown below.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: right; max-width: 560px; width: 100%;&amp;quot;&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/DSwQ4Mim28I?list=UUXSQU9bJhGWGvKGtfL-tuag&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Forum topic: http://ithemes.com/forum/topic/34643-div-float-right-youtube-video-disappearing/&lt;br /&gt;
&lt;br /&gt;
== How to set a default placeholder text in Search box ==&lt;br /&gt;
&lt;br /&gt;
[[File:2013-02-12 20-47-26.png|216px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[[File:2013-02-12 20-47-38.png|204px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
If you would like to set a default text in search box that goes away when the search field gets focus AND your active child theme does not already have a &amp;lt;code&amp;gt;searchform.php&amp;lt;/code&amp;gt;, do this:&lt;br /&gt;
&lt;br /&gt;
Create a file named &amp;lt;code&amp;gt;searchform.php&amp;lt;/code&amp;gt; in child theme's directory having the following code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php $search_box_default = __( 'Search site', 'it-l10n-BuilderChild-Default' ); ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php $search_box_value = esc_attr( apply_filters( 'the_search_query', get_search_query() ) ); ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php $search_box_value = ( empty( $search_box_value ) ) ? $search_box_default : $search_box_value; ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;form method=&amp;quot;get&amp;quot; class=&amp;quot;search-form&amp;quot; action=&amp;quot;&amp;lt;?php echo get_option( 'home' ); ?&amp;gt;&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;input type=&amp;quot;text&amp;quot; value=&amp;quot;&amp;lt;?php echo $search_box_value; ?&amp;gt;&amp;quot; name=&amp;quot;s&amp;quot; class=&amp;quot;search-text-box&amp;quot; onfocus=&amp;quot;if(this.value == '&amp;lt;?php echo $search_box_default; ?&amp;gt;') this.value = '';&amp;quot; onblur=&amp;quot;if(this.value == '') this.value = '&amp;lt;?php echo $search_box_default; ?&amp;gt;';&amp;quot; /&amp;gt;&lt;br /&gt;
    &amp;lt;input type=&amp;quot;submit&amp;quot; value=&amp;quot;&amp;lt;?php echo esc_attr__( 'Search', 'it-l10n-BuilderChild-Default' ); ?&amp;gt;&amp;quot; class=&amp;quot;search-submit-button&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The default text can be changed in the first line. Just replace &amp;lt;code&amp;gt;Search site&amp;lt;/code&amp;gt; with your desired default placeholder text.&lt;br /&gt;
&lt;br /&gt;
Optional: Replace &amp;lt;code&amp;gt;Default&amp;lt;/code&amp;gt; in &amp;lt;code&amp;gt;it-l10n-BuilderChild-Default&amp;lt;/code&amp;gt; above with the name of your active child theme.&lt;br /&gt;
&lt;br /&gt;
== How to add support for Sidebars in Navigation Module ==&lt;br /&gt;
&lt;br /&gt;
It is possible to add sidebar(s) in a Navigation Module by adding the following in child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
add_theme_support( 'builder-navigation-module-sidebars' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 Note: This is presently an experimental feature.&lt;br /&gt;
&lt;br /&gt;
As such the graphic representing the Navigation Module in layout manager will not change to reflect the presence and arrangement of sidebar(s).&lt;br /&gt;
&lt;br /&gt;
Below is an example of using this to add social media icons floating to the right in the nav bar with BuilderChild-Default as the active theme.&lt;br /&gt;
&lt;br /&gt;
But first the result:&lt;br /&gt;
&lt;br /&gt;
[[File:WordPress Dev Site 2013-05-30 13-08-04.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
In the backend:&lt;br /&gt;
&lt;br /&gt;
[[File:2013-05-30 12-55-18.png|625px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[[File:2013-05-30 12-57-43.png|661px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[[File:WordPress Dev Site 2013-05-30 13-13-19.pn|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
With [http://wordpress.org/plugins/social-media-widget/ Social Media Widget plugin] installed and activated, its widget has been placed in the Navigation Module's sidebar.&lt;br /&gt;
&lt;br /&gt;
[[File:2013-05-30 13-02-45.png|202px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
and this CSS added at end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation .builder-module-sidebar {&lt;br /&gt;
	background: transparent;&lt;br /&gt;
	padding-top: 0;&lt;br /&gt;
	padding-bottom: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation .widget {&lt;br /&gt;
	padding: 0;&lt;br /&gt;
	padding-right: 0.5em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation .widget a {&lt;br /&gt;
	display: inline;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.socialmedia-buttons img {&lt;br /&gt;
	padding-top: 0.5em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:WordPress_Dev_Site_2013-05-30_13-13-19.png</id>
		<title>File:WordPress Dev Site 2013-05-30 13-13-19.png</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:WordPress_Dev_Site_2013-05-30_13-13-19.png"/>
				<updated>2013-05-30T07:44:01Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/Builder_Tips_and_Tricks</id>
		<title>Builder Tips and Tricks</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/Builder_Tips_and_Tricks"/>
				<updated>2013-05-30T07:41:14Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: Added == How to add support for Sidebars in Navigation Module ==&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Create custom blog page template for Builder ==&lt;br /&gt;
* '''Why''': Although builder generates a blog index page using the content module, in some cases you might want to create your own listing of blog posts. Perhaps to select posts only from a specific category, or for whatever other reasons you can think of.&lt;br /&gt;
* '''How''': [http://codex.wordpress.org/Function_Reference/query_posts query_posts] is a WordPress function that allows you to write your own WordPress loop. In Builder, the easiest way to create such a blog page is to&lt;br /&gt;
**[http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates create a page template], &lt;br /&gt;
**upload to your WordPress site, &lt;br /&gt;
**write a new page (no need to add content),&lt;br /&gt;
**select the newly created page template,&lt;br /&gt;
**and publish the page.&lt;br /&gt;
Your page template should look something like this:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php; highlight: [22]&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
/*&lt;br /&gt;
Template Name: Custom Blog Index Page&lt;br /&gt;
*/&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
&lt;br /&gt;
function render_content() {&lt;br /&gt;
	&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php $paged = ( get_query_var('paged') ) ? get_query_var( 'paged' ) : 1; ?&amp;gt;&lt;br /&gt;
&amp;lt;?php query_posts( 'paged='. $paged . '&amp;amp;posts_per_page=' . get_option( 'posts_per_page' ) ); ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php if ( have_posts() ) : ?&amp;gt;&lt;br /&gt;
    &amp;lt;?php while ( have_posts() ) : the_post(); ?&amp;gt;&lt;br /&gt;
        &amp;lt;?php if ( current_theme_supports( 'post-thumbnails' ) ) : ?&amp;gt;&lt;br /&gt;
            &amp;lt;?php the_post_thumbnail( array( 125, 125 ), array( 'class' =&amp;gt; 'thumb' ) ); ?&amp;gt;&lt;br /&gt;
        &amp;lt;?php endif; ?&amp;gt;&lt;br /&gt;
        &amp;lt;h3&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php the_permalink(); ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php the_title(); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/h3&amp;gt;&lt;br /&gt;
        &amp;lt;?php the_time( __( 'l, F j, Y', 'it-l10n-Builder' ) ); ?&amp;gt;&lt;br /&gt;
        &amp;lt;?php the_content_limit( 250, &amp;quot;more »&amp;quot; ); ?&amp;gt;&lt;br /&gt;
    &amp;lt;?php endwhile; ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;div class=&amp;quot;alignleft&amp;quot;&amp;gt;&amp;lt;?php previous_posts_link('« Previous Page') ?&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
    &amp;lt;div class=&amp;quot;alignright&amp;quot;&amp;gt;&amp;lt;?php next_posts_link('Next Page »') ?&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;?php endif; ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_action( 'builder_layout_engine_render_content', 'render_content' );&lt;br /&gt;
&lt;br /&gt;
do_action( 'builder_layout_engine_render', basename( __FILE__ ) );&lt;br /&gt;
&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
'''Important Note 1''': the actual content part (post header, date and content) is simplified, refer to the Child Themes index.php to see how it is actually coded for that specific Child Theme.&lt;br /&gt;
'''Important Note 2''': the content is displayed using &amp;lt;tt&amp;gt;the_content_limit(250, &amp;quot;more »&amp;quot;)&amp;lt;/tt&amp;gt; (see highlighted line), a function described in [[#Limit_the_content_of_a_post_that_is_displayed_on_a_blog_index_page|another tip on this page]]. You can use &amp;lt;tt&amp;gt;[http://codex.wordpress.org/Function_Reference/the_content the_content()]&amp;lt;/tt&amp;gt; or &amp;lt;tt&amp;gt;[http://codex.wordpress.org/Function_Reference/the_excerpt the_excerpt()]&amp;lt;/tt&amp;gt;, depending on your requirements.&lt;br /&gt;
&lt;br /&gt;
== Limit the content of a post that is displayed on a blog index page ==&lt;br /&gt;
* '''Why''': In some cases, &amp;lt;code&amp;gt;the_content()&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;the_excerpt()&amp;lt;/code&amp;gt; just don't fit your requirements.&lt;br /&gt;
* '''How''': Using a new function allows you to specify the number of characters you want to display on the blog index page, and what to use as the &amp;quot;more&amp;quot; text. Add the following [[function]] to your [[Child Theme|child theme's]] [[functions.php]].&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php&amp;quot;&amp;gt;&lt;br /&gt;
function the_content_limit($max_char, $more_link_text = '(more...)', $stripteaser = 0, $more_file = '') {&lt;br /&gt;
    $content = get_the_content($more_link_text, $stripteaser, $more_file);&lt;br /&gt;
    $content = apply_filters('the_content', $content);&lt;br /&gt;
&lt;br /&gt;
   if (strlen($_GET['p']) &amp;gt; 0) {&lt;br /&gt;
      echo $content;&lt;br /&gt;
   }&lt;br /&gt;
   else if ((strlen($content)&amp;gt;$max_char) &amp;amp;&amp;amp; ($space = strpos($content, &amp;quot; &amp;quot;, $max_char ))) {&lt;br /&gt;
        $content = substr($content, 0, $space);&lt;br /&gt;
        echo $content = $content . &amp;quot;&amp;amp;nbsp;&amp;lt;a href='&amp;quot;; the_permalink(); echo &amp;quot;'&amp;gt;&amp;quot;.$more_link_text.&amp;quot;&amp;lt;/a&amp;gt;&amp;quot;;&lt;br /&gt;
   }&lt;br /&gt;
   else {&lt;br /&gt;
      echo $content;&lt;br /&gt;
   }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
''(Note: 95% of the code is based on [http://labitacora.net/software-libre/plugin-for-limit-the-size-of-the-post-in-the-main-page-in-wordpress/ this plugin by Alfonso Sanchez-Paus Diaz and Julian Simon de Castro]).''&lt;br /&gt;
* '''Implementation''': Add the code to your blog index template file as described in the [[#Create_your_own_blog_index_page_in_Builder|Create your own blog index page in Builder]] tip.&lt;br /&gt;
&lt;br /&gt;
== Add a full width Header and/or Footer to your Builder theme ==&lt;br /&gt;
* '''Why''': Because you want to&lt;br /&gt;
* '''How''': Detailed instructions in [http://vanweerd.com/how-to-add-full-width-header-and-footer-to-the-builder-theme/ this article].&lt;br /&gt;
&lt;br /&gt;
Note: See http://ithemes.com/forum/topic/31075-getting-fatal-error/page__view__findpost__p__144435 for updated code.&lt;br /&gt;
&lt;br /&gt;
== How to have full width (100% wide background) modules ==&lt;br /&gt;
&lt;br /&gt;
=== When using responsive-ready child themes ===&lt;br /&gt;
&lt;br /&gt;
These child themes have version number of at least 4.0. The current list of responsive-ready Builder child themes can be seen [http://ithemes.com/codex/page/Builder_Features#List_of_responsive-ready_Builder_child_themes here].&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_theme_support( 'builder-full-width-modules' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Note''':&lt;br /&gt;
&lt;br /&gt;
# For simplicity sake, we say &amp;quot;full width modules&amp;quot;. Technically speaking, it is not the modules that become full width, but their background wrappers.&lt;br /&gt;
# Few child themes like Expansion and all its color variants have the above line in their &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; out of the box. In such cases, do not add it again.&lt;br /&gt;
# All custom CSS code should be placed at end of child theme's style.css.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+ '''Before &amp;amp; After screenshots showing the effect of adding above line of code in Default child theme'''&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Before&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | After&lt;br /&gt;
|-&lt;br /&gt;
| [[File:My Test Site 2013-01-01 10-49-01.png|475px|thumb|none]]&lt;br /&gt;
  || [[File:My Test Site 2013-01-01 10-49-27.png|475px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Structural change as a result of adding above line of code ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Before&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-container-outer-wrapper {&lt;br /&gt;
    max-width: 960px;&lt;br /&gt;
    width: 100%;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(where 960 is the layout width)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;After&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-container-outer-wrapper {&lt;br /&gt;
    width: 100%;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: In [http://ithemes.com/forum/topic/35775-full-width-modules-with-responsive-turned-off-builder-4011/#entry165354 few cases], we have observed that &amp;lt;code&amp;gt;.builder-container-outer-wrapper&amp;lt;/code&amp;gt; isn't automatically becoming 100%. This can be observed using Firebug. In such cases, the following CSS should be used:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-container-outer-wrapper {&lt;br /&gt;
	width: 100% !important;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== How to set background of full width modules ====&lt;br /&gt;
&lt;br /&gt;
===== All modules =====&lt;br /&gt;
&lt;br /&gt;
If you would like to set the same background to every module of all layouts, i.e., throughout the site in a single shot, use the following sample CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-background-wrapper {&lt;br /&gt;
    background: gray;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:My Test Site 2013-01-01 11-42-10.png|475px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
===== A specific module based on its ID =====&lt;br /&gt;
&lt;br /&gt;
If you would like to set a background to a specific full width module, use the following sample CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-50842a8824755-background-wrapper {&lt;br /&gt;
    background: yellow;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where 50842a8824755 is the ID of module in question.&lt;br /&gt;
&lt;br /&gt;
[[File:My Test Site 2013-01-01 11-19-53.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
The easiest way to obtain the CSS ID is by using Firebug. Below screenshot shows where &amp;lt;code&amp;gt;builder-module-50842a8824755-background-wrapper&amp;lt;/code&amp;gt; can be found.&lt;br /&gt;
&lt;br /&gt;
[[File:2013-01-01 11-15-31.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
===== A specific module based on its position =====&lt;br /&gt;
&lt;br /&gt;
It is also possible to set background of a full width module based on its position in the layout from top. For example, the following sample CSS sets yellow background to top most modules of all layouts i.e, throughout the site.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1-background-wrapper {&lt;br /&gt;
    background: yellow;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:2013-01-01 11-35-10.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
===== All modules of a certain type =====&lt;br /&gt;
&lt;br /&gt;
It is also possible to set background of full width modules based on '''module type'''. For example, the following sample CSS sets yellow background to all widget bar modules in all layouts i.e, throughout the site.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-widget-bar-background-wrapper {&lt;br /&gt;
    background: yellow;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:My Test Site 2013-01-01 11-38-02.png|432px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== When using non responsive-ready child themes ===&lt;br /&gt;
&lt;br /&gt;
The following applies to all themes other than Acute (and its color variants), Americana (and its color variants), City Church, Blueprint, Scooter, Kepler, Lucky 7, Thinner, Traverse. All the module wrappers in these said child themes are full width by default.&lt;br /&gt;
&lt;br /&gt;
Note:&lt;br /&gt;
&lt;br /&gt;
'''1.''' PHP code given in the sections below should be put in your child theme's functions.php. If this file does not exist, create a new blank file, paste the code in between ''&amp;lt;?php'' and ''?&amp;gt;'', save it as functions.php and upload it to the child theme directory.&lt;br /&gt;
&lt;br /&gt;
'''2.''' To set width of specific module(s) full width, the module(s) should be targeted by its/their GUID. The easiest method to obtain GUID of a module is by inspecting the module via Firebug.&lt;br /&gt;
&lt;br /&gt;
[[Image:GUID.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
In the example shown in the above screenshot, GUID of the module is: 4d14470049da5&lt;br /&gt;
&lt;br /&gt;
'''3.''' To observe a module becoming full width, set a background color or image or both.&lt;br /&gt;
&lt;br /&gt;
==== To make a specific single module full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Specific-module-full-width-before.png&lt;br /&gt;
File:Specific-module-full-width-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* The following has been added to child theme's style.css to see the effect of module going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;#builder-module-4d14470049da5 {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
* In the code below, 4d14470049da5 must be replaced with GUID of the specific module which is to be made full width&lt;br /&gt;
&lt;br /&gt;
Code in functions.php:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    $full_width_modules = array( '4d14470049da5' );&lt;br /&gt;
    &lt;br /&gt;
    if ( ! in_array( $fields['guid'], $full_width_modules ) ) &lt;br /&gt;
        return $fields;&lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make specific multiple modules full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
===== By Module Types =====&lt;br /&gt;
&lt;br /&gt;
By adding the following sample code before the closing PHP tag in child theme's functions.php, all Widget Bar modules, all Navigation modules and the Footer module will become full-width.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    $full_width_modules = array( 'widget-bar','navigation','footer' );&lt;br /&gt;
    &lt;br /&gt;
    if ( ! in_array( $fields['module'], $full_width_modules ) ) &lt;br /&gt;
        return $fields;&lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The other available module types in Builder are: image, content, html&lt;br /&gt;
&lt;br /&gt;
===== By Module IDs =====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Specific-modules-full-width-before.png&lt;br /&gt;
File:Specific-modules-full-width-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* The following has been added to child theme's style.css to see the effect of module going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;#builder-module-4d14470049da5, #builder-module-4d14470049da7 {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
* In the code below, 4d14470049da5 and 4d14470049da7 must be replaced with GUID of specific modules which are to be made full width&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    $full_width_modules = array( '4d14470049da5','4d14470049da7' );&lt;br /&gt;
    &lt;br /&gt;
    if ( ! in_array( $fields['guid'], $full_width_modules ) ) &lt;br /&gt;
        return $fields;&lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make all Image modules full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Image-modules-fullwidth-before.png&lt;br /&gt;
File:Image-modules-fullwidth-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following has been added to child theme's style.css to see the effect of all image modules (only 1 is being used in the screenshot above)) going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;.builder-module-image {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    if ( 'image' !== $fields['module'] )&lt;br /&gt;
        return $fields;&lt;br /&gt;
    &lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make all Navigation modules full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Image-modules-fullwidth-before.png&lt;br /&gt;
File:Navigation-modules-fullwidth-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    if ( 'navigation' !== $fields['module'] )&lt;br /&gt;
        return $fields;&lt;br /&gt;
    &lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make Content module full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Image-modules-fullwidth-before.png&lt;br /&gt;
File:Content-module-fullwidth-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following has been added to child theme's style.css to see the effect of content module going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;.builder-module-content {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    if ( 'content' !== $fields['module'] )&lt;br /&gt;
        return $fields;&lt;br /&gt;
    &lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make all HTML modules full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Html-modules-fullwidth-before.png&lt;br /&gt;
File:Html-modules-fullwidth-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following has been added to child theme's style.css to see the effect of all HTML modules (only 1 is being used in the screenshot above) going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;.builder-module-html {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    if ( 'html' !== $fields['module'] )&lt;br /&gt;
        return $fields;&lt;br /&gt;
    &lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make all Widget Bar modules full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Widget-bar-modules-fullwidth-before.png&lt;br /&gt;
File:Widget-bar-modules-fullwidth-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following has been added to child theme's style.css to see the effect of widget bar modules going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;.builder-module-widget-bar {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    if ( 'widget-bar' !== $fields['module'] )&lt;br /&gt;
        return $fields;&lt;br /&gt;
    &lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make Footer module full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Specific-module-full-width-before.png&lt;br /&gt;
File:Footer-module-fullwidth-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following has been added to child theme's style.css to see the effect of Footer module going full width:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;.builder-module-footer {&lt;br /&gt;
	background-color: yellow;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_remove_container_width( $fields ) { &lt;br /&gt;
    foreach ( (array) $fields['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^(max-)?width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_container_outer_wrapper_attributes', 'custom_remove_container_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_remove_module_width( $fields ) { &lt;br /&gt;
    if ( 'footer' !== $fields['module'] )&lt;br /&gt;
        return $fields;&lt;br /&gt;
    &lt;br /&gt;
    foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $rule ) { &lt;br /&gt;
        if ( preg_match( '/^width:/', $rule ) ) &lt;br /&gt;
            unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
    }&lt;br /&gt;
    &lt;br /&gt;
    return $fields;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'custom_remove_module_width', 20 );&lt;br /&gt;
&lt;br /&gt;
function custom_add_open_module_wrapper( $fields ) { &lt;br /&gt;
    $width = apply_filters( 'builder_get_container_width', 0 );&lt;br /&gt;
    &lt;br /&gt;
    echo &amp;quot;&amp;lt;div class='builder-module-limit-width-wrapper clearfix' style='width:{$width}px;margin:0 auto;'&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
function custom_add_close_module_wrapper( $fields ) { &lt;br /&gt;
    echo &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_open_module_wrapper', 0 );&lt;br /&gt;
add_action( 'builder_module_render_contents', 'custom_add_close_module_wrapper', 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== To make all modules full width ====&lt;br /&gt;
&lt;br /&gt;
Please read the [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Intro Intro].&lt;br /&gt;
&lt;br /&gt;
In this method we are going to add code to functions.php that will make outer wrappers of all modules full width.&lt;br /&gt;
&lt;br /&gt;
[http://d.pr/iH9x Before] -&amp;gt; [http://d.pr/bdwr After]&lt;br /&gt;
&lt;br /&gt;
'''Code in functions.php''':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function it_set_full_width_container( $width ) {&lt;br /&gt;
	remove_filter( 'builder_get_container_width', 'it_set_full_width_container' );&lt;br /&gt;
	&lt;br /&gt;
	return '';&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_get_container_width', 'it_set_full_width_container' );&lt;br /&gt;
&lt;br /&gt;
function it_set_full_width_module( $fields ) {&lt;br /&gt;
&lt;br /&gt;
	global $it_original_module_width;&lt;br /&gt;
	&lt;br /&gt;
	$it_original_module_width = '';&lt;br /&gt;
	&lt;br /&gt;
	foreach ( (array) $fields['attributes']['style'] as $index =&amp;gt; $value ) {&lt;br /&gt;
		if ( preg_match( '/^(width:.+)/i', $value, $matches ) ) {&lt;br /&gt;
			$it_original_module_width = $matches[1];&lt;br /&gt;
			unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
		}&lt;br /&gt;
		if ( preg_match( '/^overflow:/', $value ) ) {&lt;br /&gt;
			unset( $fields['attributes']['style'][$index] );&lt;br /&gt;
			$fields['attributes']['style'][] = 'overflow:visible;';&lt;br /&gt;
		}&lt;br /&gt;
	}&lt;br /&gt;
	add_filter( 'builder_module_filter_inner_wrapper_attributes', 'it_constrain_full_width_module_inner_wrapper' );&lt;br /&gt;
	&lt;br /&gt;
	return $fields;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_module_filter_outer_wrapper_attributes', 'it_set_full_width_module' );&lt;br /&gt;
&lt;br /&gt;
function it_constrain_full_width_module_inner_wrapper( $fields ) {&lt;br /&gt;
	global $it_original_module_width;&lt;br /&gt;
	&lt;br /&gt;
	remove_filter( 'builder_module_filter_inner_wrapper_attributes', 'it_constrain_full_width_module_inner_wrapper' );&lt;br /&gt;
	&lt;br /&gt;
	$fields['attributes']['style'][] = $it_original_module_width;&lt;br /&gt;
	$fields['attributes']['style'][] = 'margin:0 auto;';&lt;br /&gt;
	&lt;br /&gt;
	$it_original_module_width = ''; &lt;br /&gt;
	&lt;br /&gt;
	return $fields;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following has been added to child theme's style.css to see the effect of all modules going full width:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-image-outer-wrapper {&lt;br /&gt;
	background-color: #247da7;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation-outer-wrapper {&lt;br /&gt;
	background: #e0e2e3;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-html-outer-wrapper {&lt;br /&gt;
	background: #9ba1ac;&lt;br /&gt;
	border-bottom: 0.1em dotted #CCCCCC;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-content-outer-wrapper {&lt;br /&gt;
	background: #1d313f;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-widget-bar-outer-wrapper {&lt;br /&gt;
	background: #262626;&lt;br /&gt;
	border-bottom: 0.1em dotted #CCCCCC;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-footer-outer-wrapper {&lt;br /&gt;
	background-color: #bbbbbb;&lt;br /&gt;
}&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you would like to apply different styles to different modules of the same type when using this method, use [http://ithemes.com/codex/page/Builder_Features#Custom_Module_Styles Custom Module Styles]. &lt;br /&gt;
&lt;br /&gt;
Ex.: Let's say there are two widget bar modules in the layout and using the above method, both would become full width. Now if you would like to set red background to one of these widget bar module and green to another, then you have to create two custom module styles for these and use them.&lt;br /&gt;
&lt;br /&gt;
To see how these are implemented, observe functions.php and style.css of Blueprint or Americana child theme.&lt;br /&gt;
&lt;br /&gt;
The overall idea is this:&lt;br /&gt;
&lt;br /&gt;
# Register the new module style using builder_register_module_style() function&lt;br /&gt;
# Add a new style rule in child theme's style.css. For the selector name use a class with the name of module style and append &amp;quot;-outer-wrapper&amp;quot; at end. &lt;br /&gt;
&lt;br /&gt;
For details, please see [http://ithemes.com/forum/index.php?/topic/9420-americana-theme-how-do-i-get-away-from-fixed-width-layout/#p44290 Example 1], [http://ithemes.com/forum/index.php?/topic/10030-modification-to-americana-theme/#p47025 Example 2] and [http://ithemes.com/codex/page/BuilderChild-Blueprint#How_to_make_nav_bars_go_full_width Example 3].&lt;br /&gt;
&lt;br /&gt;
==To change widget titles from the default h4 to any other heading tag==&lt;br /&gt;
&lt;br /&gt;
Go to http://ithemes.com/forum/index.php?/topic/10724-widget-tags-how-to-change/#p50888&lt;br /&gt;
&lt;br /&gt;
== How to extend sidebar and/or content background so they reach till the bottom ==&lt;br /&gt;
&lt;br /&gt;
Create a 1px tall image and set it to vertically repeat as background for .builder-module-content. This image can either be created from scratch or by taking a screenshot of the site and editing in Photoshop.&lt;br /&gt;
&lt;br /&gt;
The 10 min video below shows how this can be done. It shows how to create an image in Photoshop which can be set using CSS as background for Builder's content module so the sidebar(s) and element (the actual content) appear to extend all the way to the bottom.&lt;br /&gt;
&lt;br /&gt;
Tip: To watch the video in full screen, go to http://vimeo.com/19781283 and click the small 4-arrow button.&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|19781283|800}}&lt;br /&gt;
&lt;br /&gt;
Relevant forum topics:&lt;br /&gt;
&lt;br /&gt;
http://ithemes.com/forum/index.php?/topic/8265-foundation-child-theme-color-bleed-in-main-area/#p38894&lt;br /&gt;
&lt;br /&gt;
http://ithemes.com/forum/index.php?/topic/11301-need-sidebars-to-extend-to-bottom-of-page/&lt;br /&gt;
&lt;br /&gt;
http://ithemes.com/forum/index.php?/topic/9013-here-we-are-again-sidebar-bg-color/&lt;br /&gt;
&lt;br /&gt;
http://ithemes.com/forum/index.php?/topic/8363-sidebar-styling-to-continue-vertically-for-entire-module-height/&lt;br /&gt;
&lt;br /&gt;
http://ithemes.com/forum/index.php?/topic/876-the-endless-quest-for-equal-column-heights/&lt;br /&gt;
&lt;br /&gt;
== How to add code just after &amp;lt;body&amp;gt; and just before &amp;lt;/body&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Add the following in your child theme's functions.php. If the child theme does not contain this file, a new one can be created and the below code pasted.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
add_action('builder_layout_engine_render_header', 'add_after_opening_body', 20 );&lt;br /&gt;
function add_after_opening_body() { ?&amp;gt; &lt;br /&gt;
	HTML code that you want just after the opening body tag should be placed here &lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&lt;br /&gt;
add_action('builder_finish', 'add_before_closing_body', 0 );&lt;br /&gt;
function add_before_closing_body() { ?&amp;gt; &lt;br /&gt;
	HTML code that you want just before the closing body tag should be placed here &lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Sources: [http://vanweerd.com/how-to-add-full-width-header-and-footer-to-the-builder-theme/ 1], [http://ithemes.com/codex/page/Builder_Hooks 2].&lt;br /&gt;
&lt;br /&gt;
== How to add code before and after each widget ==&lt;br /&gt;
&lt;br /&gt;
Here's an example that shows how we can add &amp;lt;pre&amp;gt;&amp;lt;div class=&amp;quot;custom_top&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/pre&amp;gt; before every widget and &amp;lt;pre&amp;gt;&amp;lt;div class=&amp;quot;custom_bottom&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/pre&amp;gt; after every widget.&lt;br /&gt;
&lt;br /&gt;
Add the following to the child theme's functions.php:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_filter_register_sidebar_options( $options ) { &lt;br /&gt;
    $options['before_widget'] = $options['before_widget'] .'&amp;lt;div class=&amp;quot;custom_top&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;';&lt;br /&gt;
    $options['after_widget'] = '&amp;lt;div class=&amp;quot;custom_bottom&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;' . $options['after_widget'];&lt;br /&gt;
    &lt;br /&gt;
    return $options;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_register_sidebar_options', 'custom_filter_register_sidebar_options' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/index.php?/topic/11752-adding-top-and-bottom-images-to-widget-area/#p55547&lt;br /&gt;
&lt;br /&gt;
== How to replace H4 tags around widget titles with divs ==&lt;br /&gt;
&lt;br /&gt;
The following code can be added before the closing PHP tag in your child theme's functions.php file to remove the H4 tags from around the widget titles:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_modify_widget_wrappers( $options ) { &lt;br /&gt;
    $options['before_title'] = '&amp;lt;div class=&amp;quot;widget-title&amp;quot;&amp;gt;';&lt;br /&gt;
    $options['after_title'] = '&amp;lt;/div&amp;gt;';&lt;br /&gt;
    &lt;br /&gt;
    return $options;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_register_sidebar_options', 'custom_modify_widget_wrappers' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/12052-builder-seo-issues-widget-heading-elements-semantic-markup/#p57074 Source].&lt;br /&gt;
&lt;br /&gt;
Another example:&lt;br /&gt;
&lt;br /&gt;
To replace h4 tags around widget titles with say h2, the following code can be used:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_modify_widget_wrappers( $options ) { &lt;br /&gt;
    $options['before_title'] = '&amp;lt;h2 class=&amp;quot;widget-title&amp;quot;&amp;gt;';&lt;br /&gt;
    $options['after_title'] = '&amp;lt;/h2&amp;gt;';&lt;br /&gt;
    &lt;br /&gt;
    return $options;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_register_sidebar_options', 'custom_modify_widget_wrappers' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to add a search form at the right side in a nav bar ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=400px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Search-in-nav-method2-before.png&lt;br /&gt;
File:Search-in-nav-method2-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''1.''' At Appearance -&amp;gt; Menus, build a custom menu having the items you would like to be shown on the nav bar.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Edit your layout and add a navigation module. Set it to show your custom menu.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add the following before closing PHP tag in child theme's functions.php:&lt;br /&gt;
    	&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_filter('wp_nav_menu_top-1_items','add_search_box', 10, 2);&lt;br /&gt;
function add_search_box($items, $args) {&lt;br /&gt;
        ob_start();&lt;br /&gt;
        get_search_form();&lt;br /&gt;
        $searchform = ob_get_contents();&lt;br /&gt;
        ob_end_clean();&lt;br /&gt;
 &lt;br /&gt;
        $items .= '&amp;lt;li class=&amp;quot;my-search-form&amp;quot;&amp;gt;' . $searchform . '&amp;lt;/li&amp;gt;';&lt;br /&gt;
    return $items;	&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace &amp;quot;top-1&amp;quot; with the slug of your custom menu.&lt;br /&gt;
&lt;br /&gt;
'''4.''' Add the following at the end of your theme's style.css:&lt;br /&gt;
    	&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation li.my-search-form {&lt;br /&gt;
    float: right;&lt;br /&gt;
    margin-right: 0.5em;&lt;br /&gt;
    border-right: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#builder-module-4d8f8f64596b7 ul {&lt;br /&gt;
    float: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace builder-module-4d8f8f64596b7 with the ID of this module.&lt;br /&gt;
&lt;br /&gt;
If you are using BuilderChild-City-Church, see [http://ithemes.com/forum/index.php?/topic/19945-search-box-in-navigation/#p94449 this] forum topic for sample CSS.&lt;br /&gt;
&lt;br /&gt;
That's it!&lt;br /&gt;
&lt;br /&gt;
Source: http://vanweerd.com/enhancing-your-wordpress-3-menus/&lt;br /&gt;
&lt;br /&gt;
This method is also explained [http://ithemesbuilder.com/how-to-add-a-items-to-builders-navigation-menus/ here].&lt;br /&gt;
&lt;br /&gt;
==Links to specific customization requests==&lt;br /&gt;
&lt;br /&gt;
===Designing a widgetized footer===&lt;br /&gt;
&lt;br /&gt;
[[Image:IWfo.16-04-2011 14-01-22.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/13449-designing-a-widgetised-footer/#p62860 Forum post]&lt;br /&gt;
&lt;br /&gt;
===Positioning images at a fixed location in all widgets===&lt;br /&gt;
&lt;br /&gt;
[[Image:3wa5.16-04-2011 14-22-06.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/13430-ionic-widget-height/#p62862 Forum post]&lt;br /&gt;
&lt;br /&gt;
===Setting up Go To Top named anchor===&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/14119-main-custom-navigation-menu-problems-in-safari-browser/#p65897 Forum post]&lt;br /&gt;
&lt;br /&gt;
== builder_comments_popup_link action explained ==&lt;br /&gt;
&lt;br /&gt;
The builder_comments_popup_link action triggers the builder_comments_popup_link() function by default. This function calls the comments_popup_link() function of WordPress but it also ensures that the link should be shown. For instance, the link should not be shown if the comments have been disabled for that content type per Builder's settings, if both comments and pings are disabled, or if a password is required in order to view the content and it has not been entered yet.&lt;br /&gt;
&lt;br /&gt;
So keeping that call in place is very important. It can still be customized in the same way a comments_popup_link() function call is customized. Let's break out the arguments to see how that is done:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
    do_action(&lt;br /&gt;
        'builder_comments_popup_link',&lt;br /&gt;
        '&amp;lt;div class=&amp;quot;alignright_comments&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;comments&amp;quot;&amp;gt;',&lt;br /&gt;
        '&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;',&lt;br /&gt;
        __( 'Add Your Comment %s', 'it-l10n-Builder' ),&lt;br /&gt;
        __( '(0)', 'it-l10n-Builder' ),&lt;br /&gt;
        __( '(1)', 'it-l10n-Builder' ),&lt;br /&gt;
        __( '(%)', 'it-l10n-Builder' )&lt;br /&gt;
    );&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now let's see that listing again while replacing the arguments with their meaning:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
    do_action(&lt;br /&gt;
        action name,&lt;br /&gt;
        content to add before link,&lt;br /&gt;
        content to add after link,&lt;br /&gt;
        template which has %s replaced with the output from comments_popup_link,&lt;br /&gt;
        comments_popup_link argument zero comments,&lt;br /&gt;
        comments_popup_link argument one comment,&lt;br /&gt;
        comments_popup_link argument more than one comment,&lt;br /&gt;
    );&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
So if you know how to modify comments_popup_link, you should now see how you can modify this action call.&lt;br /&gt;
&lt;br /&gt;
Note that all the __( 'text', 'it-l10n-Builder' ) stuff is just for translation purposes. So __( '(%)', 'it-l10n-Builder' ) just means '(%)'.&lt;br /&gt;
&lt;br /&gt;
'''Usage Example'''&lt;br /&gt;
&lt;br /&gt;
To have an image and the words &amp;quot;Add your Comment&amp;quot; with the image and text being a link:&lt;br /&gt;
&lt;br /&gt;
Since the comments_popup_link() arguments are the ones added to the link, to add an image to the link, we need to modify those arguments. Here's a quick example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
    $image_url = get_bloginfo( 'template_directory' ) . '/images/folder.png';&lt;br /&gt;
    $image = &amp;quot;&amp;lt;img src='$image_url' alt='comments' /&amp;gt;&amp;quot;;&lt;br /&gt;
    &lt;br /&gt;
    do_action(&lt;br /&gt;
        'builder_comments_popup_link',&lt;br /&gt;
        '&amp;lt;div class=&amp;quot;alignright_comments&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;comments&amp;quot;&amp;gt;',&lt;br /&gt;
        '&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;',&lt;br /&gt;
        'Add Your Comment %s',&lt;br /&gt;
        &amp;quot;$image (0)&amp;quot;,&lt;br /&gt;
        &amp;quot;$image (1)&amp;quot;,&lt;br /&gt;
        &amp;quot;$image (%)&amp;quot;&lt;br /&gt;
    );&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Of course, this adds the folder icon and not a comment icon, but hopefully you can see what we are doing here and use it to add your own image. Note that get_bloginfo( 'template_directory' ) returns the base URL to the Builder directory. To get your child theme's directory URL, you can use get_bloginfo( 'stylesheet_directory' ).&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/index.php?/topic/14453-changing-comments-format/#p67520&lt;br /&gt;
&lt;br /&gt;
== How to show &amp;quot;My Theme&amp;quot; menu only to specific users ==&lt;br /&gt;
&lt;br /&gt;
If the following section of code is added to your child theme's functions.php file, &amp;quot;My Theme&amp;quot; menu will only be shown to the user with a username of &amp;quot;admin&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function child_theme_restrict_my_theme_menu() {&lt;br /&gt;
    $user = wp_get_current_user();&lt;br /&gt;
    &lt;br /&gt;
    if ( 'admin' !== $user-&amp;gt;user_login )&lt;br /&gt;
        remove_theme_support( 'builder-my-theme-menu' );&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_customize_theme_features', 'child_theme_restrict_my_theme_menu' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you want to use a different username, replace &amp;quot;admin&amp;quot; text on the fourth line with the username you want to use. For example, to make it only show for username &amp;quot;james&amp;quot;, it would look like:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function child_theme_restrict_my_theme_menu() {&lt;br /&gt;
    $user = wp_get_current_user();&lt;br /&gt;
    &lt;br /&gt;
    if ( 'james' !== $user-&amp;gt;user_login )&lt;br /&gt;
        remove_theme_support( 'builder-my-theme-menu' );&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_customize_theme_features', 'child_theme_restrict_my_theme_menu' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The sample code below shows how to hide &amp;quot;My Theme&amp;quot; menu from everyone except Super Admins. This is a feature specific to multisite WordPress installations.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function child_theme_restrict_my_theme_menu() {&lt;br /&gt;
    if ( ! is_super_admin() )&lt;br /&gt;
        remove_theme_support( 'builder-my-theme-menu' );&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_customize_theme_features', 'child_theme_restrict_my_theme_menu' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to redirect attachment links to corresponding posts ==&lt;br /&gt;
&lt;br /&gt;
Search engine results might show links from your site leading to attachment pages which are not really that useful to the visitors. If you would like to have these links redirect to their corresponding post pages, follow this:&lt;br /&gt;
&lt;br /&gt;
Duplicate ''image.php'' from Builder Parent theme into your child theme directory, then replace the entire content of image.php (the one in your child theme directory) with:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php wp_redirect(get_permalink($post-&amp;gt;post_parent)); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Forum topic: http://ithemes.com/forum/index.php?/topic/17644-how-can-i-find-and-delete-a-attachment-id-page/&lt;br /&gt;
&lt;br /&gt;
More: http://wordpress.org/support/topic/disable-attachment-posts-without-remove-the-medias and http://wordpress.org/support/topic/redirect-attachment-page-to-post-page-how-to&lt;br /&gt;
&lt;br /&gt;
== How to view debug info in page source ==&lt;br /&gt;
&lt;br /&gt;
Add &amp;lt;code&amp;gt;?builder_debug=1&amp;lt;/code&amp;gt; at the end of webpage URL.&lt;br /&gt;
&lt;br /&gt;
Ex.: If the page URL is http://ithemesbuilder.com/how-to-add-easy-social-icons-in-the-wordpress-navigation-menu/, visit http://ithemesbuilder.com/how-to-add-easy-social-icons-in-the-wordpress-navigation-menu/?builder_debug=1 and view the page source. It should show Builder specific info like this:&lt;br /&gt;
&lt;br /&gt;
[[File:2012-04-03 20-25-50.png|697px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
== How to remove Header widget ==&lt;br /&gt;
&lt;br /&gt;
Adding the following code in child theme's functions.php at the end (before closing PHP tag, if present) will remove Builder's Header widget from Appearance -&amp;gt; Widgets.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function unregister_some_widgets() {&lt;br /&gt;
	unregister_widget('BuilderHeaderWidget');&lt;br /&gt;
}&lt;br /&gt;
add_action('widgets_init', 'unregister_some_widgets', 1);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to set up print stylesheet such that only the content gets printed ==&lt;br /&gt;
&lt;br /&gt;
'''1.''' Copy &amp;lt;code&amp;gt;header.php&amp;lt;/code&amp;gt; from parent Builder directory into the child theme directory and edit it.&lt;br /&gt;
&lt;br /&gt;
Add&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot; media=&amp;quot;print&amp;quot; href=&amp;quot;&amp;lt;?php bloginfo( 'stylesheet_directory' ); ?&amp;gt;/print.css&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
below&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php builder_add_stylesheets(); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''2.''' Create a file named &amp;lt;code&amp;gt;print.css&amp;lt;/code&amp;gt; in child theme directory having this code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module {&lt;br /&gt;
	display: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-content .builder-module-sidebar-outer-wrapper {&lt;br /&gt;
	display: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-content {&lt;br /&gt;
	display: block;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/topic/8611-printing-problems-with-builder-help-going-live-in-7-days/#entry44752&lt;br /&gt;
&lt;br /&gt;
== How to force CSS changes to &amp;quot;go live&amp;quot; immediately ==&lt;br /&gt;
&lt;br /&gt;
Intro: http://markjaquith.wordpress.com/2009/05/04/force-css-changes-to-go-live-immediately/&lt;br /&gt;
&lt;br /&gt;
This can be done in Builder by first making sure that the default stylesheet does not load, and then load the version with file modification date appended.&lt;br /&gt;
&lt;br /&gt;
Add the following code at the end of your child themes &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; (but before the closing &amp;lt;code&amp;gt;?&amp;gt;&amp;lt;/code&amp;gt;, if any):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// disable loading the default stylesheet&lt;br /&gt;
function custom_filter_disable_theme_stylesheets( $disable ) {&lt;br /&gt;
        return true;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_disable_theme_stylesheets', 'custom_filter_disable_theme_stylesheets', 20 );&lt;br /&gt;
&lt;br /&gt;
// add the versioned stylesheet&lt;br /&gt;
function custom_add_new_stylesheet() { ?&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;&amp;lt;?php bloginfo('stylesheet_url'); echo '?' . filemtime( get_stylesheet_directory() . '/style.css'); ?&amp;gt;&amp;quot; type=&amp;quot;text/css&amp;quot; media=&amp;quot;screen, projection&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
}&lt;br /&gt;
add_action( 'builder_add_stylesheets', 'custom_add_new_stylesheet' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/topic/31621-reloading-stylecss-after-every-change/#entry146840&lt;br /&gt;
&lt;br /&gt;
== How to left/right align a YouTube video ==&lt;br /&gt;
&lt;br /&gt;
When a responsive-ready child theme is active, wrapping YouTube Embed code with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: left;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: right;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: right;&amp;quot;&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/DSwQ4Mim28I?list=UUXSQU9bJhGWGvKGtfL-tuag&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
will not display the video at all on the Page/Post.&lt;br /&gt;
&lt;br /&gt;
The solution if floating is desired is to ensure that the floated element has a width associated with it. In order to prevent breaking the fluidity of the video, width should be set with a max-width and a width of 100% as shown below.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: right; max-width: 560px; width: 100%;&amp;quot;&amp;gt;&amp;lt;iframe width=&amp;quot;560&amp;quot; height=&amp;quot;315&amp;quot; src=&amp;quot;http://www.youtube.com/embed/DSwQ4Mim28I?list=UUXSQU9bJhGWGvKGtfL-tuag&amp;quot; frameborder=&amp;quot;0&amp;quot; allowfullscreen&amp;gt;&amp;lt;/iframe&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Forum topic: http://ithemes.com/forum/topic/34643-div-float-right-youtube-video-disappearing/&lt;br /&gt;
&lt;br /&gt;
== How to set a default placeholder text in Search box ==&lt;br /&gt;
&lt;br /&gt;
[[File:2013-02-12 20-47-26.png|216px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[[File:2013-02-12 20-47-38.png|204px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
If you would like to set a default text in search box that goes away when the search field gets focus AND your active child theme does not already have a &amp;lt;code&amp;gt;searchform.php&amp;lt;/code&amp;gt;, do this:&lt;br /&gt;
&lt;br /&gt;
Create a file named &amp;lt;code&amp;gt;searchform.php&amp;lt;/code&amp;gt; in child theme's directory having the following code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php $search_box_default = __( 'Search site', 'it-l10n-BuilderChild-Default' ); ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php $search_box_value = esc_attr( apply_filters( 'the_search_query', get_search_query() ) ); ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php $search_box_value = ( empty( $search_box_value ) ) ? $search_box_default : $search_box_value; ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;form method=&amp;quot;get&amp;quot; class=&amp;quot;search-form&amp;quot; action=&amp;quot;&amp;lt;?php echo get_option( 'home' ); ?&amp;gt;&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;input type=&amp;quot;text&amp;quot; value=&amp;quot;&amp;lt;?php echo $search_box_value; ?&amp;gt;&amp;quot; name=&amp;quot;s&amp;quot; class=&amp;quot;search-text-box&amp;quot; onfocus=&amp;quot;if(this.value == '&amp;lt;?php echo $search_box_default; ?&amp;gt;') this.value = '';&amp;quot; onblur=&amp;quot;if(this.value == '') this.value = '&amp;lt;?php echo $search_box_default; ?&amp;gt;';&amp;quot; /&amp;gt;&lt;br /&gt;
    &amp;lt;input type=&amp;quot;submit&amp;quot; value=&amp;quot;&amp;lt;?php echo esc_attr__( 'Search', 'it-l10n-BuilderChild-Default' ); ?&amp;gt;&amp;quot; class=&amp;quot;search-submit-button&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The default text can be changed in the first line. Just replace &amp;lt;code&amp;gt;Search site&amp;lt;/code&amp;gt; with your desired default placeholder text.&lt;br /&gt;
&lt;br /&gt;
Optional: Replace &amp;lt;code&amp;gt;Default&amp;lt;/code&amp;gt; in &amp;lt;code&amp;gt;it-l10n-BuilderChild-Default&amp;lt;/code&amp;gt; above with the name of your active child theme.&lt;br /&gt;
&lt;br /&gt;
== How to add support for Sidebars in Navigation Module ==&lt;br /&gt;
&lt;br /&gt;
It is possible to add sidebar(s) in a Navigation Module by adding the following in child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
add_theme_support( 'builder-navigation-module-sidebars' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 Note: This is presently an experimental feature.&lt;br /&gt;
&lt;br /&gt;
As such the graphic representing the Navigation Module in layout manager will not change to reflect the presence and arrangement of sidebar(s).&lt;br /&gt;
&lt;br /&gt;
Below is an example of using this to add social media icons floating to the right in the nav bar with BuilderChild-Default as the active theme.&lt;br /&gt;
&lt;br /&gt;
But first the result:&lt;br /&gt;
&lt;br /&gt;
[[File:WordPress Dev Site 2013-05-30 13-08-04.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
In the backend:&lt;br /&gt;
&lt;br /&gt;
[[File:2013-05-30 12-55-18.png|625px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[[File:2013-05-30 12-57-43.png|661px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
With [http://wordpress.org/plugins/social-media-widget/ Social Media Widget plugin] installed and activated, its widget has been placed in the Navigation Module's sidebar.&lt;br /&gt;
&lt;br /&gt;
[[File:2013-05-30 13-02-45.png|202px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
and this CSS added at end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation .builder-module-sidebar {&lt;br /&gt;
	background: transparent;&lt;br /&gt;
	padding-top: 0;&lt;br /&gt;
	padding-bottom: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation .widget {&lt;br /&gt;
	padding: 0;&lt;br /&gt;
	padding-right: 0.5em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation .widget a {&lt;br /&gt;
	display: inline;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.socialmedia-buttons img {&lt;br /&gt;
	padding-top: 0.5em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:WordPress_Dev_Site_2013-05-30_13-08-04.png</id>
		<title>File:WordPress Dev Site 2013-05-30 13-08-04.png</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:WordPress_Dev_Site_2013-05-30_13-08-04.png"/>
				<updated>2013-05-30T07:38:28Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:2013-05-30_13-02-45.png</id>
		<title>File:2013-05-30 13-02-45.png</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:2013-05-30_13-02-45.png"/>
				<updated>2013-05-30T07:33:49Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:2013-05-30_12-57-43.png</id>
		<title>File:2013-05-30 12-57-43.png</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:2013-05-30_12-57-43.png"/>
				<updated>2013-05-30T07:28:26Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:2013-05-30_12-55-18.png</id>
		<title>File:2013-05-30 12-55-18.png</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:2013-05-30_12-55-18.png"/>
				<updated>2013-05-30T07:26:54Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/Builder_CSS_Guide</id>
		<title>Builder CSS Guide</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/Builder_CSS_Guide"/>
				<updated>2013-05-27T02:19:24Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: /* If you are using a WordPress 3 custom menu */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
While Style Manager makes it easy to make changes to your Builder site visually, to go in-depth and make different modules of the same kind look differently and to do advanced customizations theme's style.css should be edited.&lt;br /&gt;
&lt;br /&gt;
A knowledge of CSS and Firebug usage really helps. [http://getfirebug.com/ Firebug], a Firefox add-on is an awesome tool in figuring out element's classes, ID, padding, margin etc. Please install it in your Firefox before reading further.&lt;br /&gt;
&lt;br /&gt;
'''We have a series of videos on advanced CSS in Builder. Please watch them by clicking [http://ithemes.com/forum/index.php?/topic/925-builder-theme-advanced-css-free-training-videos/ here].'''&lt;br /&gt;
&lt;br /&gt;
Here are few recommended resources for CSS:&lt;br /&gt;
&lt;br /&gt;
*[http://www.brainjar.com/css/using/ BrainJar]&lt;br /&gt;
*[http://www.sitepoint.com/videos/videocss1/ The CSS Video Crash Course - SitePoint Videos]&lt;br /&gt;
*[http://www.w3schools.com/css/ w3schools]&lt;br /&gt;
&lt;br /&gt;
BuilderChild-Default has been taken as the active theme for the scope of this guide. However, most of the CSS applies to all Builder child themes.&lt;br /&gt;
&lt;br /&gt;
All CSS changes should be done in style.css of the active theme which should be a child theme of Builder. You can either edit already existing styles or write them at the very end. Generally we advise users to write custom styles at the end of child theme's style.css. [http://ithemes.com/forum/index.php?/topic/13320-padding-problem-with-widget/#p62262 This] forum post explains why.&lt;br /&gt;
&lt;br /&gt;
Because of the vast number of classes that Builder makes available, there are several ways of targeting the same element and hence the following is not the only way of going about it. There is more than one way to ''skin'' a cat.&lt;br /&gt;
&lt;br /&gt;
=== Videos ===&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59590792|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59609073|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59910487|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59590795|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59591441|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59591444|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59609072|640}}&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/tutorial/category/builder-css/&lt;br /&gt;
&lt;br /&gt;
=== CSS to target various elements of a Builder site ===&lt;br /&gt;
&lt;br /&gt;
The following information can also be obtained by viewing the source of the webpage or by using Firebug. The text on the left side is one of the classes (if preceded by a dot) or ID (if preceded by a hash) for body element.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.home&amp;lt;/code&amp;gt; - Homepage only&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.blog&amp;lt;/code&amp;gt; - Posts page only&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.page&amp;lt;/code&amp;gt; - All Pages&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.single-post&amp;lt;/code&amp;gt; - All single post entries&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.archive&amp;lt;/code&amp;gt; - Any category or date or tag archive page&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.category&amp;lt;/code&amp;gt; - All category archive pages&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.category-issues&amp;lt;/code&amp;gt; - Archive page of a specific category whose slug is &amp;quot;issues&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.category-18&amp;lt;/code&amp;gt; - Archive page of a specific category whose ID is 18&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.tag&amp;lt;/code&amp;gt; - Tag archive page&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.page-id-500&amp;lt;/code&amp;gt; - A specific Page whose ID is 500&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.postid-392&amp;lt;/code&amp;gt; - A specific Post whose ID is 391&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;#builder-layout-4e662c1838008&amp;lt;/code&amp;gt; - Any page that uses a layout whose ID is 4e662c1838008&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.search&amp;lt;/code&amp;gt; - Search results listing page&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-outer-wrapper&amp;lt;/code&amp;gt; - Outer wrapper of all modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-1-outer-wrapper&amp;lt;/code&amp;gt; : First module's outer wrapper&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-2-outer-wrapper&amp;lt;/code&amp;gt; : Second module's outer wrapper&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-header&amp;lt;/code&amp;gt; - All Header modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-header-1&amp;lt;/code&amp;gt; : First Header module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-header-2&amp;lt;/code&amp;gt; : Second Header module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-image&amp;lt;/code&amp;gt; - All Image modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-image-1&amp;lt;/code&amp;gt; : First Image module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-image-2&amp;lt;/code&amp;gt; : Second Image module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-navigation&amp;lt;/code&amp;gt; - All Navigation modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-navigation-1&amp;lt;/code&amp;gt; : First Navigation module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-navigation-2&amp;lt;/code&amp;gt; : Second Navigation module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-content&amp;lt;/code&amp;gt; - Content module&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-html&amp;lt;/code&amp;gt; - All HTML modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-html-1&amp;lt;/code&amp;gt; : First HTML module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-html-2&amp;lt;/code&amp;gt; : Second HTML module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-widget-bar&amp;lt;/code&amp;gt; - All Widget Bar modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-widget-bar-1&amp;lt;/code&amp;gt; : First Widget Bar module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-widget-bar-2&amp;lt;/code&amp;gt; : Second Widget Bar module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-footer&amp;lt;/code&amp;gt; - Footer module&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;#builder-module-4fc8af01e738b&amp;lt;/code&amp;gt; - A specific module whose ID is 4fc8af01e738b&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-top&amp;lt;/code&amp;gt; - Top most module in any page through out the site&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-last&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;.builder-module-bottom&amp;lt;/code&amp;gt; - Last/bottom most module in any page through out the site&lt;br /&gt;
&lt;br /&gt;
===To make the container touch the top edge of browser===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-container-outer-wrapper {&lt;br /&gt;
	margin-top: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Top-margin-container-before.png&lt;br /&gt;
File:Top-margin-container-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== To remove gap between each module ===&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-background-wrapper {&lt;br /&gt;
    margin-bottom: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=320px heights=199px&amp;gt;&lt;br /&gt;
File:Holistic Nutrition By Lisa 2013-01-25 09-16-09.png|Before&lt;br /&gt;
File:Holistic Nutrition By Lisa 2013-01-25 09-15-19.png|After&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: This only applies to Default child theme.&lt;br /&gt;
&lt;br /&gt;
===To remove the top and bottom borders for all modules===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: This only applies to Default child theme.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module {&lt;br /&gt;
	border-top: none;&lt;br /&gt;
	border-bottom: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:borders-for-modules-before.png&lt;br /&gt;
File:borders-for-modules-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===To target a specific module===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d396c72bbb6b {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Replace ''builder-module-4d396c72bbb6b'' with the ID of module in question on your site.&lt;br /&gt;
&lt;br /&gt;
[[Image:a-specific-module.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===Targeting modules based on their position in the layout===&lt;br /&gt;
&lt;br /&gt;
.builder-module-1 &amp;lt;-- First module&lt;br /&gt;
&lt;br /&gt;
.builder-module-2 &amp;lt;-- Second module&lt;br /&gt;
&lt;br /&gt;
.builder-module-3 &amp;lt;-- Last module&lt;br /&gt;
&lt;br /&gt;
and so on..&lt;br /&gt;
&lt;br /&gt;
.builder-module-top &amp;lt;-- Top most (first) module&lt;br /&gt;
&lt;br /&gt;
.builder-module-last or .builder-module-bottom &amp;lt;-- Last module&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
&lt;br /&gt;
To set background of first module transparent,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 {&lt;br /&gt;
	background: transparent;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To set all sidebars in first module transparent,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 .builder-module-sidebar {&lt;br /&gt;
	background: transparent;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===To set the height of a specific module===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d396c72bbb6e {&lt;br /&gt;
    height: 200px;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Replace ''builder-module-4d396c72bbb6e'' with the ID of module in question on your site.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:identifying-a-module.png&lt;br /&gt;
File:setting-module-height-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===To remove padding around a specific widget===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#text-3 {&lt;br /&gt;
	padding: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Replace ''text-3'' with the ID of widget in question on your site.&lt;br /&gt;
&lt;br /&gt;
[[Image:widget-padding.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
== Header Module ==&lt;br /&gt;
&lt;br /&gt;
Header module should be used when you would like to show site name and tagline. Site name and tagline will link to site URL. There is no provision to enter a image in this module.&lt;br /&gt;
&lt;br /&gt;
Following sample CSS can be used to set a background image for this module and to adjust the font size and colors of site name and tagline text. BuilderChild-Default is the active theme in the test site.&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
&lt;br /&gt;
[[File:Header-module-before.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
[[File:Header-module-after.jpg|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 {&lt;br /&gt;
    height: 150px;&lt;br /&gt;
    background: url(&amp;quot;images/header.jpg&amp;quot;) no-repeat;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.site-title, .site-title a, .site-tagline, .site-tagline a {&lt;br /&gt;
    color: #FFF;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.site-title a:hover, .site-tagline a:hover {&lt;br /&gt;
    color: #DDD;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.site-title {&lt;br /&gt;
    font-size: 3em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.site-tagline {&lt;br /&gt;
    font-size: 1.5em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: Change the name of image in background property line above to what you wish to use. In this example, header.jpg resides in child theme's images directory.&lt;br /&gt;
&lt;br /&gt;
=== How to hide top and bottom sidebars when using two adjacent sidebars ===&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-header .single {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/16676-header-module-2-right-sidebars-not-working/#p77664 Forum topic].&lt;br /&gt;
&lt;br /&gt;
==Navigation Module==&lt;br /&gt;
&lt;br /&gt;
===To target all nav bars===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===To target a specific nav bar===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d396c72bbb6b {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Replace ''builder-module-4d396c72bbb6b'' with the ID of navigation module in question on your site.&lt;br /&gt;
&lt;br /&gt;
[[Image:a-specific-module.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===To center the content of nav bar===&lt;br /&gt;
&lt;br /&gt;
[[File:Nav-menu-centered.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
The following code will allow you to absolutely center a menu (only the top level items will be centered), regardless of the number and width of the navigation items.&lt;br /&gt;
&lt;br /&gt;
(If you wish to align the top level menu items to the right, replace &amp;lt;code&amp;gt;margin: 0 auto;&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;float: right;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==== If you are using a WordPress 3 custom menu ====&lt;br /&gt;
&lt;br /&gt;
If you have created a menu using wp-dashboard &amp;gt; Appearance &amp;gt; Menu, and are using that menu in your navigation module:&lt;br /&gt;
&lt;br /&gt;
If the name is ''MainMenu'' in the navigation module, add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.menu-mainmenu-container {&lt;br /&gt;
    display: table;&lt;br /&gt;
    margin: 0 auto;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: In the above code, ''mainmenu'' must be replaced with the slug of your custom menu. Ex.: If the name of your custom menu is ''Primary Navigation'', then replace &amp;lt;code&amp;gt;.menu-mainmenu-container&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;.menu-primary-navigation-container&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
'''In most cases, this more generic (so independent of the menu name) code will accomplish the same:'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation-menu-wrapper {&lt;br /&gt;
    display: table;&lt;br /&gt;
    margin: 0 auto;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If there are a lot of menu items in the menu resulting in wrapping and multiple lines in the nav bar, then [http://ithemes.com/forum/topic/44976-center-navigation-for-attent/#entry199202 this] method can be used for centering.&lt;br /&gt;
&lt;br /&gt;
==== If you are using the Builder settings menu ====&lt;br /&gt;
&lt;br /&gt;
If you are using a &amp;quot;Legacy Menu Type&amp;quot; (a menu created using wp-dashboard &amp;gt; My Theme &amp;gt; Settings &amp;gt; Menu Builder) in your navigation module, &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation .builder-module-navigation-menu-wrapper {&lt;br /&gt;
    display: table;&lt;br /&gt;
    margin: 0 auto;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== For all other types of navigation module ====&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation .builder-module-element {&lt;br /&gt;
    margin-left: 310px;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
# In the above code, the left margin value has to be changed depending on width of menu.&lt;br /&gt;
# The above code applies to all navigation modules in the layouts. If you would like to apply it to a specific navigation module, replace &amp;lt;code&amp;gt;.builder-module-navigation&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;#builder-module-4e1585dc84fa3&amp;lt;/code&amp;gt; where builder-module-4e1585dc84fa3 is the ID of navigation module div.&lt;br /&gt;
# This method can also be used for a navigation module which displays a custom menu.&lt;br /&gt;
&lt;br /&gt;
[[File:Module-id.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Example of another slightly different code to do the same: http://ithemes.com/forum/index.php?/topic/11617-centering-custom-menu-in-navigation-bar/#p54464&lt;br /&gt;
&lt;br /&gt;
=== To right align the nav menu ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-31 14-31-45.png|798px|thumb|none|Before]]&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-31 14-30-48.png|800px|thumb|none|After]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation .builder-module-element {&lt;br /&gt;
    float: right;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Image Module==&lt;br /&gt;
&lt;br /&gt;
=== How to center image in Image Module ===&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
&lt;br /&gt;
[[File:WordPress Dev Site - before.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
[[File:WordPress Dev Site.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 .builder-module-element img {&lt;br /&gt;
	margin: 0 auto;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Change 1 in &amp;lt;code&amp;gt;.builder-module-1&amp;lt;/code&amp;gt; to the position of your Image module from the top in layout.&lt;br /&gt;
&lt;br /&gt;
==HTML Module==&lt;br /&gt;
&lt;br /&gt;
=== Targeting various sections of a HTML module having 2 adjacent sidebars ===&lt;br /&gt;
&lt;br /&gt;
==== Outer wrappers ====&lt;br /&gt;
&lt;br /&gt;
Top widget outer wrapper: #builder-module-4fe44d1c159e4 .widget-outer-wrapper-top&lt;br /&gt;
&lt;br /&gt;
Middle widget outer wrapper container: #builder-module-4fe44d1c159e4 .widget-section-wrapper (If setting background for this, background will not be visible unless &amp;quot;float: left;&amp;quot; is also applied)&lt;br /&gt;
&lt;br /&gt;
Middle widget outer wrappers: #builder-module-4fe44d1c159e4 .widget-section-wrapper .widget-outer-wrapper&lt;br /&gt;
&lt;br /&gt;
Left widget outer wrapper: #builder-module-4fe44d1c159e4 .widget-outer-wrapper-left&lt;br /&gt;
&lt;br /&gt;
Right widget outer wrapper: #builder-module-4fe44d1c159e4 .widget-outer-wrapper-right&lt;br /&gt;
&lt;br /&gt;
Bottom widget outer wrapper: #builder-module-4fe44d1c159e4 .widget-outer-wrapper-bottom&lt;br /&gt;
&lt;br /&gt;
[[File:2012-06-22 16-25-09.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
==== Wrappers ====&lt;br /&gt;
&lt;br /&gt;
Top widget wrapper: #builder-module-4fe44d1c159e4 .widget-wrapper-top&lt;br /&gt;
&lt;br /&gt;
Bottom widget wrapper: #builder-module-4fe44d1c159e4 .widget-wrapper-bottom&lt;br /&gt;
&lt;br /&gt;
Top and bottom widget wrapper: #builder-module-4fe44d1c159e4 .single&lt;br /&gt;
&lt;br /&gt;
Wrappers of all widgets in the module: #builder-module-4fe44d1c159e4 .widget-wrapper&lt;br /&gt;
&lt;br /&gt;
Left widget wrapper: #builder-module-4fe44d1c159e4 .widget-wrapper-left&lt;br /&gt;
&lt;br /&gt;
Right widget wrapper: #builder-module-4fe44d1c159e4 .widget-wrapper-right&lt;br /&gt;
&lt;br /&gt;
==== Widgets ====&lt;br /&gt;
&lt;br /&gt;
Top widget: #builder-module-4fe44d1c159e4 .widget-wrapper-top .widget&lt;br /&gt;
&lt;br /&gt;
Bottom widget: #builder-module-4fe44d1c159e4 .widget-wrapper-bottom .widget&lt;br /&gt;
&lt;br /&gt;
Top and bottom widgets: #builder-module-4fe44d1c159e4 .single .widget&lt;br /&gt;
&lt;br /&gt;
Left widget: #builder-module-4fe44d1c159e4 .widget-wrapper-left .widget&lt;br /&gt;
&lt;br /&gt;
Right widget: #builder-module-4fe44d1c159e4 .widget-wrapper-right .widget&lt;br /&gt;
&lt;br /&gt;
Left and right widgets: #builder-module-4fe44d1c159e4 .widget-section-wrapper .widget&lt;br /&gt;
&lt;br /&gt;
'''Note: In the above replace &amp;quot;builder-module-4fe44d1c159e4&amp;quot; with the CSS ID of HTML module in question.'''&lt;br /&gt;
&lt;br /&gt;
==Widget Bar Module==&lt;br /&gt;
&lt;br /&gt;
===Targeting the full widget bar===&lt;br /&gt;
&lt;br /&gt;
To target all widget bars:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-widget-bar {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target a specific widget bar:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where ''builder-module-4d3956642cc05'' is the ID of widget bar module in question. The easiest way to obtain a module's ID is by inspecting the element with Firebug.&lt;br /&gt;
&lt;br /&gt;
[[Image:Specific-widget-bar-module.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===Targeting all the individual widgets globally===&lt;br /&gt;
&lt;br /&gt;
To target all individual widgets of all widget bars:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-widget-bar .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target all the individual widgets of a specific widget bar:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where ''builder-module-4d3956642cc05'' is the ID of widget bar module in question. The easiest way to obtain a module's ID is by inspecting the element with Firebug.&lt;br /&gt;
&lt;br /&gt;
===Targeting a specific widget===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#text-3 {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where text-3 is the ID of widget in question. The easiest way to obtain a module's ID is by inspecting the element with Firebug.&lt;br /&gt;
&lt;br /&gt;
[[Image:Specific-widget.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===How to make all widgets of a widget bar module equal height===&lt;br /&gt;
&lt;br /&gt;
Here's a video which explains how you can use Firebug to set height of a single widget and all then all widgets of the module so they have the same height: http://ithemes.com/screencasts/builder/height-of-widgets/&lt;br /&gt;
&lt;br /&gt;
The general idea is to obtain the height of tallest widget in the module from 'Computed' tab in Firebug and write CSS like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4ddb5b00e3efd .widget {&lt;br /&gt;
	height: 100px; /* Set this value to height of tallest widget */&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Change builder-module-4ddb5b00e3efd to ID of module in question.&lt;br /&gt;
&lt;br /&gt;
===2-widget widget bar===&lt;br /&gt;
&lt;br /&gt;
The CSS below applies to a specific widget bar having a ID of ''builder-module-4d3956642cc05''. The easiest way to obtain a module's ID is by inspecting the element with Firebug. If all widget bar modules are to be targeted, ''.builder-module-widget-bar'' should be used instead of ''#builder-module-4d3956642cc05''.&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''left widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .left .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''right widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .right .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===3-widget widget bar===&lt;br /&gt;
&lt;br /&gt;
The CSS below applies to a specific widget bar having a ID of ''builder-module-4d3956642cc05''. The easiest way to obtain a module's ID is by inspecting the element with Firebug. If all widget bar modules are to be targeted, ''.builder-module-widget-bar'' should be used instead of ''#builder-module-4d3956642cc05''.&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''left widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .left .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''middle widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .middle .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''right widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .right .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===4-widget widget bar===&lt;br /&gt;
&lt;br /&gt;
The CSS below applies to a specific widget bar having a ID of ''builder-module-4d3956642cc05''. The easiest way to obtain a module's ID is by inspecting the element with Firebug. If all widget bar modules are to be targeted, ''.builder-module-widget-bar'' should be used instead of ''#builder-module-4d3956642cc05''.&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''left most widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .left .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''second widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-2 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''third widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-3 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''right most widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .right .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===5-widget widget bar===&lt;br /&gt;
&lt;br /&gt;
The CSS below applies to a specific widget bar having a ID of ''builder-module-4d3956642cc05''. The easiest way to obtain a module's ID is by inspecting the element with Firebug. If all widget bar modules are to be targeted, ''.builder-module-widget-bar'' should be used instead of ''#builder-module-4d3956642cc05''.&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''left most widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .left .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''second widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-2 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''third widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-3 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''fourth widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-4 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''right most widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .right .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Content Module==&lt;br /&gt;
&lt;br /&gt;
===Introduction===&lt;br /&gt;
&lt;br /&gt;
.builder-module-content consists of .builder-module-element + 1 or more .builder-module-sidebar.&lt;br /&gt;
&lt;br /&gt;
The actual area where the content gets displayed is .builder-module-element and the wrapper for this is .builder-module-element-outer-wrapper.&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
To change the background of actual content area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Content-element-wrapper-background-before.png&lt;br /&gt;
File:Content-element-wrapper-background-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-content .builder-module-element-outer-wrapper {&lt;br /&gt;
	background: #f2f4fd;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Removing top and bottom horizontal widget sections when content module is set to have 2 adjacent sidebars===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:2-adjacent-sidebars-before.png&lt;br /&gt;
File:2-adjacent-sidebars-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of your theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-content .widget-outer-wrapper-top, .builder-module-content .widget-outer-wrapper-bottom {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Footer Module==&lt;br /&gt;
&lt;br /&gt;
Before: [[Image:Footer-before.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
After: [[Image:Footer-after.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-footer {&lt;br /&gt;
	margin-top: 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-footer .builder-module-element {&lt;br /&gt;
	color: #FFFFFF;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-footer .builder-module-element a {&lt;br /&gt;
	color: #7eabc1;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Defining the scope==&lt;br /&gt;
&lt;br /&gt;
By default, style rules apply to all sections of the site. For a finer and granular control, it is possible to restrict the style rules to:&lt;br /&gt;
&lt;br /&gt;
*Home (i.e, site's front page)&lt;br /&gt;
*Posts page&lt;br /&gt;
*All Pages&lt;br /&gt;
*A layout&lt;br /&gt;
*A specific Page&lt;br /&gt;
*All posts&lt;br /&gt;
*A specific post&lt;br /&gt;
*All archives and category listings&lt;br /&gt;
*A specific category&lt;br /&gt;
&lt;br /&gt;
=== Homepage or Front page ===&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;.home&amp;lt;/code&amp;gt; selector to restrict CSS to the site's front page.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.home h1.entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
gets rid of the title only on homepage.&lt;br /&gt;
&lt;br /&gt;
=== Posts (blog) page ===&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;blog&amp;lt;/code&amp;gt; selector.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.blog .builder-module-content .hentry {&lt;br /&gt;
    margin-top: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== All static Pages ===&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;.page&amp;lt;/code&amp;gt; selector.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page .entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: When front page is set to show a static Page, front page (or homepage) will also have the &amp;quot;home&amp;quot; body class.&lt;br /&gt;
&lt;br /&gt;
===A specific page===&lt;br /&gt;
&lt;br /&gt;
==== How to get rid of title for a specific Page ====&lt;br /&gt;
&lt;br /&gt;
To remove the title of a Page whose ID is say, 47, add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page-id-47 .entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace &amp;lt;code&amp;gt;page-id-47&amp;lt;/code&amp;gt; with the body class of Page in your site. This can be obtained using Firebug.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-08-03 10-44-54.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
===='''To set a background color to a specific page'''====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page-id-2 {&lt;br /&gt;
	background-color: #333333;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The above sets the background color of body element in a page whose ID is 2 to #333333.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:page-background-before.png&lt;br /&gt;
File:page-background-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
IDs of Pages and posts can be obtained in the following ways:&lt;br /&gt;
&lt;br /&gt;
*Examining the body element using Firebug&lt;br /&gt;
[[Image:id-from-firebug.png|200px|none]]&lt;br /&gt;
*Placing cursor on the Page/post title in edit screen and observing the number in the browser status bar&lt;br /&gt;
[[Image:id-in-status-bar.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===='''To set a background color to mutiple pages'''====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page-id-2, .page-id-4 {&lt;br /&gt;
	background-color: #333333;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The above sets the background color of body element in a page whose ID is 2 and to body element in another page whose ID is 4.&lt;br /&gt;
&lt;br /&gt;
====To remove border around images only on certain Pages====&lt;br /&gt;
&lt;br /&gt;
To remove border around images only on Pages having IDs 2 and 6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page-id-2 .hentry img, .page-id-6 .hentry img {&lt;br /&gt;
    border: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== A specific layout ===&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-layout-4fe44cd68bddb .builder-module-content {&lt;br /&gt;
    background: #333;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;quot;builder-layout-4fe44cd68bddb&amp;quot; is the ID of body element of any webpage that uses this layout.&lt;br /&gt;
&lt;br /&gt;
Firebug can be used to obtain this ID.&lt;br /&gt;
&lt;br /&gt;
[[Image:Snapshot 20-09-12 6-31 PM.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
==Miscellaneous==&lt;br /&gt;
&lt;br /&gt;
===How to make second line in list item to be indented to match up with the text===&lt;br /&gt;
&lt;br /&gt;
Before: [[File:Indenting-second-line-list-before.png]]&lt;br /&gt;
&lt;br /&gt;
After: [[File:Indenting-second-line-list-after.png]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.widget ul {&lt;br /&gt;
    list-style-position: inside;&lt;br /&gt;
    margin-left: 0;&lt;br /&gt;
    padding-left: 1em;&lt;br /&gt;
    text-indent: -1em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Tuesday, August 23, 2011 Update'''&lt;br /&gt;
&lt;br /&gt;
Fix for IE: http://ithemes.com/forum/index.php?/topic/14646-i-need-to-adjust-text-alignment-in-side-widgets/#p81837&lt;br /&gt;
&lt;br /&gt;
Thanks to: Ronald.&lt;br /&gt;
&lt;br /&gt;
===How to hide titles on all Pages===&lt;br /&gt;
&lt;br /&gt;
Ensure that [http://www.doitwithwp.com/how-to-change-your-permalink-structure-without-breaking-your-links/ pretty permalinks] are enabled.&lt;br /&gt;
&lt;br /&gt;
When you are using Builder 3.0 and a corresponding LoopBuddy compatible theme like the current (as of Monday, July 11, 2011) Builder child themes, adding the following at end of child theme's style.css will hide Page titles:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.page .entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For pre-Builder 3.0, use this CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.page .title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===How to hide title on homepage only===&lt;br /&gt;
&lt;br /&gt;
When Builder 3.0 and a corresponding LoopBuddy compatible theme like the current (as of Monday, July 11, 2011) Builder child themes are being used, adding the following at end of child theme's style.css will hide Page title on homepage:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.home .entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For pre-Builder 3.0, use this CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.home .title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== How to get rid of top and bottom sidebars in all modules ===&lt;br /&gt;
&lt;br /&gt;
When a module has 2 adjacent sidebars (either left or right), a top wide sidebar and bottom wide sidebar will automatically be added. These will not appear on the site for visitors as long as they are empty (i.e., not populated with widgets).&lt;br /&gt;
&lt;br /&gt;
If you would still like to remove them, add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module .widget-outer-wrapper-top, .builder-module .widget-outer-wrapper-bottom {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== How to add and use a font from a .ttf file ===&lt;br /&gt;
&lt;br /&gt;
In this example we are going to download a free font from http://www.dafont.com/ and use it in a Builder site.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Download your desired font. Extract the zip file to get the .ttf file.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Go to http://www.fontsquirrel.com/fontface/generator. Click &amp;lt;code&amp;gt;Add Fonts&amp;lt;/code&amp;gt;, browse to and select the .ttf file that you downloaded.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Place a tick mark to the left of &amp;quot;Yes, the fonts I'm uploading are legally eligible for web embedding.&amp;quot; and click &amp;lt;code&amp;gt;Download Your Kit&amp;lt;/code&amp;gt; and save the zip file.&lt;br /&gt;
&lt;br /&gt;
'''4.''' Extract the zip file to get a folder having files with different extensions. Upload .ttf, .eot, .svg, .woff files to child theme's directory using a FTP client or cPanel file manager.&lt;br /&gt;
&lt;br /&gt;
'''5.''' Open stylesheet.css, copy all the code similar to the following and paste at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor)&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on September 17, 2012 */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
@font-face {&lt;br /&gt;
    font-family: 'last_king_questregular';&lt;br /&gt;
    src: url('last_king_quest-webfont.eot');&lt;br /&gt;
    src: url('last_king_quest-webfont.eot?#iefix') format('embedded-opentype'),&lt;br /&gt;
         url('last_king_quest-webfont.woff') format('woff'),&lt;br /&gt;
         url('last_king_quest-webfont.ttf') format('truetype'),&lt;br /&gt;
         url('last_king_quest-webfont.svg#last_king_questregular') format('svg');&lt;br /&gt;
    font-weight: normal;&lt;br /&gt;
    font-style: normal;&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''6.''' Open .html file in the extracted folder in a text editor and copy a line similar to&lt;br /&gt;
&lt;br /&gt;
(for example)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;font-family: 'last_king_questregular';&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will be found between &amp;lt;code&amp;gt;&amp;lt;head&amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;lt;/head&amp;gt;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
'''7.''' Paste this line for the CSS selector of your choice.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
h1 {&lt;br /&gt;
    font-family: 'last_king_questregular';&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That's it!&lt;br /&gt;
&lt;br /&gt;
=== How to set up and use &amp;lt;code&amp;gt;custom.css&amp;lt;/code&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
If you would like to place all your custom CSS code in a separate file named, say, &amp;lt;code&amp;gt;custom.css&amp;lt;/code&amp;gt;, do the following.&lt;br /&gt;
&lt;br /&gt;
The advantages of doing this over editing the styles inline in style.css or writing at the end of style.css is that all your CSS customizations will be in one file. This file can easily be backed up and used again as needed when updating the child theme (Note however that 99 times out of 100, one does not update child themes). Also it will help the support personnel help you better as the style changes will all be in one place and not inline.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Create a file named &amp;lt;code&amp;gt;custom.css&amp;lt;/code&amp;gt; and upload it to active theme directory.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Add the following at the end of active theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
function my_custom_styles() {&lt;br /&gt;
  wp_enqueue_style( 'custom-style', get_stylesheet_directory_uri() . '/custom.css', '1.0.0', 'all' );&lt;br /&gt;
}&lt;br /&gt;
add_action('wp_enqueue_scripts', 'my_custom_styles');&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ref.: http://codex.wordpress.org/Function_Reference/wp_enqueue_style&lt;br /&gt;
&lt;br /&gt;
'''3.''' Place your custom CSS code in custom.css. This file will be available for editing at Appearance -&amp;gt; Editor.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 Note: Make sure to take a back-up of your customized custom.css when [http://ithemes.com/codex/page/Builder_Child_Themes#How_to_update_a_child_theme updating your active child theme].&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/topic/36721-why-has-ithemes-not-upgraded-to-wordpress-35/#entry169383&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/Builder_Child_Themes</id>
		<title>Builder Child Themes</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/Builder_Child_Themes"/>
				<updated>2013-05-25T05:58:32Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: Added Attent and Coverage&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Introduction=&lt;br /&gt;
&lt;br /&gt;
In version 2.7, child themes have been introduced in WordPress. Using Child themes, you can modify (override) all aspects of a Parent theme (e.g. the stylesheet, page templates, functions) without risking to lose any modifications when upgrading the parent theme.&lt;br /&gt;
&lt;br /&gt;
See [http://ithemes.com/ithemes-and-child-themes-introduction/ iThemes and Child Themes – introduction] and [http://ithemes.com/ithemes-and-child-themes-a-quick-tutorial-1/ Child Themes, a quick tutorial].&lt;br /&gt;
&lt;br /&gt;
Child Theme Graphics can also be seen [http://ithemes.com/builder-store/ here] and [http://affiliates.ithemes.com/banners-graphics/ithemes/child-theme-graphics/ here].&lt;br /&gt;
&lt;br /&gt;
Listed below are the child themes of Builder that can be downloaded from the [http://ithemes.com/member/member.php member's area] (latest at the top):&lt;br /&gt;
&lt;br /&gt;
= List of child themes =&lt;br /&gt;
&lt;br /&gt;
== Attent ==&lt;br /&gt;
&lt;br /&gt;
Introducing Attent, the latest Builder child theme designed for bloggers. Attent features a sleek, minimalistic design and a simple color scheme. With several alternate module styles like a built-in mobile nav and full window images, Attent is one of our favorite additions to the Builder child theme library.&lt;br /&gt;
&lt;br /&gt;
[[File:Attent-2013-05-25-11-25-48.jpg|307px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/attent/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2013/05/16/attent-a-new-minimalistic-builder-child-theme-for-bloggers/ Blog entry announcing the release of Attent]&lt;br /&gt;
&lt;br /&gt;
== Coverage ==&lt;br /&gt;
&lt;br /&gt;
Introducing Coverage, a news and magazine child theme for iThemes Builder. Featuring a totally-new-to-Builder custom widget for displaying post content, Coverage was built and designed specifically with content-rich news and magazine sites in mind.&lt;br /&gt;
&lt;br /&gt;
[[File:Coverage-2013-05-25-11-19-50.jpg|297px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/coverage/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2013/04/30/just-released-coverage-a-news-magazine-child-theme-for-builder/ Blog entry announcing the release of Coverage]&lt;br /&gt;
&lt;br /&gt;
== Air ==&lt;br /&gt;
&lt;br /&gt;
Builder Child Air is a new foundational or starter child theme for iThemes Builder. Whether you’re using the Builder Style Manager or writing your own CSS, we hope Air will be a great new place to start when creating your custom responsive-ready Builder child themes. &lt;br /&gt;
&lt;br /&gt;
Builder child Air includes several convenient built-in features to help lay the groundwork for custom child theme creation. A few of Air's theme highlights include:&lt;br /&gt;
&lt;br /&gt;
* Built-in Mobile-Ready Menu Style&lt;br /&gt;
* Fully Optimized for Style Manager&lt;br /&gt;
* New Inset Module Styles&lt;br /&gt;
* Full Window Image Style&lt;br /&gt;
&lt;br /&gt;
[[File:Air 2013-04-12 09-33-58.png|291px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/air/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2013/04/04/introducing-air-a-new-foundation-child-theme-for-builder/ Blog entry announcing the release of Air]&lt;br /&gt;
&lt;br /&gt;
== Noise ==&lt;br /&gt;
&lt;br /&gt;
12 March 2013 &lt;br /&gt;
&lt;br /&gt;
Today we’re pumped to release Noise, a responsive-ready Builder child theme with a brand new plugin for iThemes Builder, Builder Audio Block. Designed with musicians and bands in mind, Builder now makes it easy to create a WordPress band website with a “built-in” audio player, a way to display albums or discographies, a list of upcoming shows and support for music downloads/purchases with Easy Digital Downloads.&lt;br /&gt;
&lt;br /&gt;
Builder Child Noise features several new-to-Builder design and functionality elements that you’ve requested, including:&lt;br /&gt;
&lt;br /&gt;
* New Full Window and No Spacing Image Module Styles: Noise features new alternate module styles for images, including Full Window (or full width) and No Spacing. These new module styles for images can be added anywhere in your Builder Layouts. &lt;br /&gt;
&lt;br /&gt;
* Post Formats Styles: Ever wanted to post a quick status update or just a link? Noise includes new post format styles that add a Tumblr-like feel for your blog. From the Add New Post Page, you’ll see a new option to apply a format to the post, including standard, status, video, link or image.&lt;br /&gt;
&lt;br /&gt;
* Events Block Styling: To make it easy to include upcoming shows, Noise includes matching styles for Builder Events Block. &lt;br /&gt;
&lt;br /&gt;
[[File:Noise 2013-04-12 09-41-21.png|409px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/noise/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2013/03/11/just-released-noise-a-new-builder-child-theme-new-builder-audio-block/ Blog entry announcing the release of Noise]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/codex/page/BuilderChild-Noise Noise codex page]&lt;br /&gt;
&lt;br /&gt;
== RedBud ==&lt;br /&gt;
&lt;br /&gt;
With a soft, feminine style, RedBud is perfect for bloggers, event planners, photography sites or vintage boutiques. RedBud features hand-drawn details, several alternate widget styles, a unique Google font pairing and theme-matching styling for Gravity Forms.&lt;br /&gt;
&lt;br /&gt;
[[File:RedBud 2013-02-05 21-57-03.png|404px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/redbud/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2013/02/05/redbud-a-new-builder-child-theme-with-hand-drawn-details/ Blog entry announcing the release of Threads]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/redbud/2013/02/03/free-social-media-icons-download/ Free social media icons to match RedBud Builder child theme]&lt;br /&gt;
&lt;br /&gt;
== Threads ==&lt;br /&gt;
&lt;br /&gt;
Need to build an online t-shirt shop on WordPress? We released a new feature-rich responsive-ready Builder Child Theme, Threads.&lt;br /&gt;
&lt;br /&gt;
Threads is designed to integrate exclusively with Shopp, our favorite ecommerce plugin for WordPress. Threads includes 15+ Shopp-specific styled templates so you'll have one consistent look across the theme and ecommerce portions of the site, plus custom styles for product views, cart-in-navigation settings and much more. &lt;br /&gt;
&lt;br /&gt;
[[File:Threads 2013-01-21 20-04-40.png|429px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/threads/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2013/01/11/threads-a-new-builder-child-theme-for-t-shirt-shops-available-now/ Blog entry announcing the release of Threads]&lt;br /&gt;
&lt;br /&gt;
== Icebox ==&lt;br /&gt;
&lt;br /&gt;
We're celebrating Builder's birthday today (December 17, 2012) with a free Builder child theme download for all Builder users! Icebox is a new responsive-ready child theme.&lt;br /&gt;
&lt;br /&gt;
[http://f.cl.ly/items/0e1E3w0F0n0N0i2b3K1h/Icebox%202012-12-18%2009-22-15.png Screenshot]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/icebox/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/12/18/free-builder-child-theme-download-icebox/ Blog entry announcing the release of Icebox]&lt;br /&gt;
&lt;br /&gt;
== Thrifty ==&lt;br /&gt;
&lt;br /&gt;
Thrifty is a responsive ecommerce child theme for Builder. With a simple, minimalist design, Thrifty perfectly showcases your products by combining the usefulness of three popular ecommerce plugins with Builder's powerful layout engine.&lt;br /&gt;
&lt;br /&gt;
'''Support for Three Ecommerce Plugins'''&lt;br /&gt;
&lt;br /&gt;
Each of the following plugins provides its own set of ecommerce features and we've worked to highlight the functionalities of each in Thrifty:&lt;br /&gt;
&lt;br /&gt;
* Shopp (our recommended solution)&lt;br /&gt;
* Easy Digital Downloads&lt;br /&gt;
* WooCommerce&lt;br /&gt;
&lt;br /&gt;
Just choose your plugin, upload and activate and Thrifty goes to work providing the styling for your online store.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: Thrifty (or any other Builder child theme) does not influence the functionality of the e-commerce plugin, but has styling and tweaked template files that enhance the presentation of the ecommerce plugin's output.&lt;br /&gt;
&lt;br /&gt;
[[File:Thrifty - Shopp 2012-12-21 09-25-35.png|199px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/thrifty/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/11/26/just-released-thrifty-a-new-ecommerce-child-theme-for-builder/ Blog entry announcing the release of Thrifty (has more details)]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/codex/page/BuilderChild-Thrifty Thrifty codex page]&lt;br /&gt;
&lt;br /&gt;
== Avail ==&lt;br /&gt;
&lt;br /&gt;
With a clean, modern design, Avail is great for business or corporate websites. Paired with iThemes Builder 4.0, Avail automatically responds for mobile, tablet and desktop viewing.&lt;br /&gt;
&lt;br /&gt;
[[File:Avail 2013-01-31 23-17-11.png|467px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/avail Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/11/15/avail-a-new-responsive-ready-builder-child-theme/ Blog entry announcing the release of Avail]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.tv/november-20-2012/ Overview Video by Benjamin Bradley on iThemesTV - Nov 20, 2012] - Time frame: 02:48 to 13:53&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/purchase/avail/ Purchase page]&lt;br /&gt;
&lt;br /&gt;
== Essence Silver ==&lt;br /&gt;
&lt;br /&gt;
Essence Silver is ported from one of our most popular classic themes (the very first iThemes theme to be exact) by the same name.&lt;br /&gt;
&lt;br /&gt;
[[File:Demosithemescombuilderessencesilver-full.png|652px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/builder-essence-silver/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/09/27/classic-theme-essence-silver-now-available-as-a-builder-child-theme/ Blog entry announcing the release of Essence Silver]&lt;br /&gt;
&lt;br /&gt;
== Resume ==&lt;br /&gt;
&lt;br /&gt;
Résumé child theme has been designed for building a WordPress résumé website.&lt;br /&gt;
&lt;br /&gt;
Résumé features 3 color versions: Résumé, Résumé Blue and Résumé Dark.&lt;br /&gt;
&lt;br /&gt;
[[File:Résumé 2012-09-12 11-09-03.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/resume/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/09/11/just-released-new-builder-child-theme-resume-in-3-color-variations/ Blog entry announcing the release of Resume]&lt;br /&gt;
&lt;br /&gt;
Résumé Blue:&lt;br /&gt;
&lt;br /&gt;
[[File:Résumé - Blue 2012-09-12 11-13-16.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Résumé Dark:&lt;br /&gt;
&lt;br /&gt;
[[File:Résumé - Dark 2012-09-12 11-14-36.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
== Remark ==&lt;br /&gt;
&lt;br /&gt;
Remark is a fun, simple child theme designed with bloggers in mind and a perfect match for those that may want to set up a small Etsy-type shop.&lt;br /&gt;
&lt;br /&gt;
[[File:Remark 2012-07-20 20-52-12.png|351px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/remark/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/07/20/just-released-new-child-theme-remark/ Blog entry announcing the release of Remark]&lt;br /&gt;
&lt;br /&gt;
== Book Nook ==&lt;br /&gt;
&lt;br /&gt;
Designed with authors in mind, the latest child theme for iThemes Builder will showcase your work perfectly.&lt;br /&gt;
&lt;br /&gt;
[[File:Book-Nook-2012-06-23-12-16-59.jpg|565px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/book-nook/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/06/22/new-child-theme-preview-book-nook/ Blog entry announcing the release of Book Nook]&lt;br /&gt;
&lt;br /&gt;
== Gallery Church ==&lt;br /&gt;
&lt;br /&gt;
You'll have everything you need for building a WordPress church website with our latest Builder child theme release: Gallery Church — featuring integrations with both Builder Church Block and the newly-released Builder Events Block.&lt;br /&gt;
&lt;br /&gt;
With a bold and modern style, this theme is perfect for church sites that are both welcoming with a fresh, direct message and easy to navigate for visitors.&lt;br /&gt;
&lt;br /&gt;
[[File:Gallery-Church-2012-06-23-12-24-04.jpg|501px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/gallery-church/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/05/23/new-child-theme-gallery-church-with-church-and-events-block-integration/ Blog entry announcing the release of Gallery Church]&lt;br /&gt;
&lt;br /&gt;
== Arrival ==&lt;br /&gt;
&lt;br /&gt;
Arrival features simple styling in either blue or pink for creating a baby announcement site to share with family and friends.&lt;br /&gt;
&lt;br /&gt;
[[File:Arrival-2012-06-23-12-43-18.jpg|406px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/arrival/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/04/27/due-next-week-new-child-theme-arrival/ Blog entry announcing the release of Arrival]&lt;br /&gt;
&lt;br /&gt;
'''Arrival Blue''':&lt;br /&gt;
&lt;br /&gt;
[[File:Arrival-2012-06-23-12-48-47.jpg|406px|none]]&lt;br /&gt;
&lt;br /&gt;
== Yukon ==&lt;br /&gt;
&lt;br /&gt;
Yukon is iThemes first Builder child theme for BuddyPress. &lt;br /&gt;
&lt;br /&gt;
Yukon styles BuddyPress features for member profiles, network activity/updates, groups, and forums to create the perfect BuddyPress + Builder social networking site.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-03-15 08-20-50.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/buddypress/yukon/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/03/14/our-first-builder-child-theme-for-buddypress-yukon/ Blog entry announcing the release of Yukon]&lt;br /&gt;
&lt;br /&gt;
== Vow ==&lt;br /&gt;
&lt;br /&gt;
Perfect for wedding websites, Vow features a bright, clean-lined design with a ribbon menu, framing wedding details in classic style. Chronicle wedding plans with Vow’s blog styling, add wedding details like ceremony location or registry information, or add a photo gallery with engagement photos.&lt;br /&gt;
&lt;br /&gt;
[[File:Vow-2012-02-09-10-25-00.jpg|374px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/vow/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/02/08/introducing-vow-a-wedding-child-theme-for-builder/ Blog entry announcing the release of Vow]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/vow-red Vow Red]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/vow-yellow Vow Yellow]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/vow-blue Vow Blue]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/02/23/just-released-three-new-color-variations-of-vow/ Blog entry announcing the release of Vow color variants]&lt;br /&gt;
&lt;br /&gt;
== Market ==&lt;br /&gt;
&lt;br /&gt;
Like Depot, Market features integration with three different WordPress eCommerce plugins: Shopp, Cart66 and WP-Ecommerce.&lt;br /&gt;
&lt;br /&gt;
With simple lines, cool colors, and bold contrast styling for widget areas, Market is the perfect store-front for your WordPress eCommerce site.&lt;br /&gt;
&lt;br /&gt;
[[File:Market 2012-02-05 09-34-05.png|541px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/market/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/02/02/just-released-market-an-ecommerce-child-theme-for-builder/ Blog entry announcing the release of Market]&lt;br /&gt;
&lt;br /&gt;
== Kepler Light ==&lt;br /&gt;
&lt;br /&gt;
Kepler Light is the &amp;quot;lighter&amp;quot; version of the original Kepler. Kepler Light features the same great photography-focused styling, great for showcasing your creative work.&lt;br /&gt;
&lt;br /&gt;
Kepler Light includes several specific post styles to focus on featured images, all with a unique custom date stamp to add interest to your blog. With Kepler Light and Builder, you'll have the perfect foundation for creating awesome WordPress photography sites.&lt;br /&gt;
&lt;br /&gt;
[[File:Kepler-2012-01-27-21-17-02.jpg|269px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/kepler-light Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/01/26/introducing-kepler-lite/ Blog entry announcing the release of Kepler Light]&lt;br /&gt;
&lt;br /&gt;
== Adept ==&lt;br /&gt;
&lt;br /&gt;
Percfect for small businesses or professional bloggers, Adept features a sleek design to pair with Builder’s great flexibility and functionality for easily building WordPress websites.&lt;br /&gt;
&lt;br /&gt;
Some of the key features include:&lt;br /&gt;
&lt;br /&gt;
* simple navigation with great button styling and secondary dropdown styles&lt;br /&gt;
* alternate module styles for navigation and widget modules to configure your site exactly to your specifications&lt;br /&gt;
* styling for Gravity Forms to match the theme’s overall look and feel&lt;br /&gt;
* and custom-styled search bar style&lt;br /&gt;
&lt;br /&gt;
[[File:Adept-613x1024.jpg|613px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/adept/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/01/13/just-released-adept-a-child-theme-for-builder/ Blog entry announcing the release of Adept]&lt;br /&gt;
&lt;br /&gt;
== Depot ==&lt;br /&gt;
&lt;br /&gt;
Depot is the first e-commerce Builder Child Theme. Depot features full integration and optimization of three different WordPress Ecommerce plugins: Shopp, Cart66 and WP-Ecommerce. Operating on iThemes Builder's powerful layout engine and paired with one of these eCommerce plugins, Depot is the perfect store-front for your WordPress-powered website or blog.&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/depot/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[[File:Depot-shopp.jpg|451px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/12/22/just-released-depot-an-ecommerce-child-theme-for-builder/ Blog entry announcing the release of Depot]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/builder-store/depot/ Purchase page]&lt;br /&gt;
&lt;br /&gt;
== Expansion ==&lt;br /&gt;
&lt;br /&gt;
Expansion, the latest child theme for iThemes Builder, boasts a high-contrast design with strong, simple, and clean edges. Besides the remarkable layout flexibility of all iThemes Builder child themes, Expansion also features several theme-specific details. It is a great child theme for small and large businesses. Featuring 3 alternate widget styles and a beautiful date stamp on each blog post, Expansion is the perfect choice for your next theme.&lt;br /&gt;
&lt;br /&gt;
[[File:Builder-Child---Expansion-Demo-2011-12-02-14-51-14.jpg|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/expansion/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/12/01/just-released-expansion-the-latest-child-theme-for-builder/ Blog entry announcing the release of Expansion]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/builder-store/expansion/ Purchase page]&lt;br /&gt;
&lt;br /&gt;
'''Expansion Red'''&lt;br /&gt;
&lt;br /&gt;
[[File:Expansion-red.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''Expansion Blue'''&lt;br /&gt;
&lt;br /&gt;
[[File:Expansion-blue.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/12/15/just-released-two-new-color-options-for-expansion/ Blog entry announcing Expansion Red and Expansion Blue]&lt;br /&gt;
&lt;br /&gt;
== Patterned ==&lt;br /&gt;
&lt;br /&gt;
A handcrafted look and feel – perfect for any special project or site. You'll love the Google Web Font (Rancho) that gives titles a special flair and draws people in to your site. From the stay-at-home blogging mom to the business looking for a softer, more subtle design, Patterned is a great choice for your next Builder child theme!&lt;br /&gt;
&lt;br /&gt;
[[File:Ithemes-builder-childtheme-patterned.jpg|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/patterned/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/11/08/ithemes-builder-releases-51st-child-theme-patterned/ Blog entry announcing the release of Patterned]&lt;br /&gt;
&lt;br /&gt;
== Traverse ==&lt;br /&gt;
&lt;br /&gt;
Traverse features a high contrast design and bold styling intended to showcase content for travel blogs. Stories and photos from your adventures will be framed perfectly by Traverse.&lt;br /&gt;
&lt;br /&gt;
[[File:Traverse-ithemes-builder-childtheme.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/traverse/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/10/26/get-ready-to-travel-with-traverse/ Blog entry announcing the release of Traverse]&lt;br /&gt;
&lt;br /&gt;
== Architect ==&lt;br /&gt;
&lt;br /&gt;
[[File:IThemes-builder-Architect.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/architect-builder/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/09/20/architect-child-theme-for-ithemes-builder/ Blog entry announcing the release of Architect]&lt;br /&gt;
&lt;br /&gt;
== Acute ==&lt;br /&gt;
&lt;br /&gt;
Acute is a clean business theme, perfect for giving your site a professional, polished look. Currently it is in gray and blue, there will be 4 more color options released soon.&lt;br /&gt;
&lt;br /&gt;
With Acute you will find custom styled (default) widgets; integrated support for Slideshow and Accordion (2 plugins from the DisplayBuddy suite); image grid, portfolio and magazine extensions; plus a new custom portfolio extension – only available with Acute.&lt;br /&gt;
&lt;br /&gt;
[[File:IThemes-builder-Acute.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/acute/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/09/20/acute-is-the-45th-child-theme-for-ithemes-builder/ Blog entry announcing the release of Acute]&lt;br /&gt;
&lt;br /&gt;
=== Acute Blue ===&lt;br /&gt;
&lt;br /&gt;
[[File:Acute-blue.png|800px|thumb|none|Acute Blue]]&lt;br /&gt;
&lt;br /&gt;
=== Acute Green ===&lt;br /&gt;
&lt;br /&gt;
[[File:Acute-Green.png|800px|thumb|none|Acute Green]]&lt;br /&gt;
&lt;br /&gt;
=== Acute Red ===&lt;br /&gt;
&lt;br /&gt;
[[File:Acute-Red.png|800px|thumb|none|Acute Red]]&lt;br /&gt;
&lt;br /&gt;
=== Acute Violet ===&lt;br /&gt;
&lt;br /&gt;
[[File:Acute-Violet.png|800px|thumb|none|Acute Violet]]&lt;br /&gt;
&lt;br /&gt;
=== Acute Orange ===&lt;br /&gt;
&lt;br /&gt;
[[File:Acute-Orange.png|800px|thumb|none|Acute Orange]]&lt;br /&gt;
&lt;br /&gt;
== Kepler ==&lt;br /&gt;
&lt;br /&gt;
Kepler is a portfolio style theme - perfect for showcasing photography, graphic design, and art. It is characterized by simple, easy to read typography, and a focus on images.&lt;br /&gt;
&lt;br /&gt;
[[File:Ithemes-builder-child-kepler.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/kepler/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/08/30/kepler-child-theme-walkthroughwebinar/ Quick video showing you how Kepler looks and works (Kepler Child Theme Walkthrough/Webinar)]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/09/06/how-to-work-with-kepler-child-theme-video/ How to Work With Kepler Child Theme (video)]&lt;br /&gt;
&lt;br /&gt;
== Singular ==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder-child-singular.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Singular - the simple, clean theme with all the flexibility inherent in iThemes Builder.&lt;br /&gt;
&lt;br /&gt;
Release Date: August 9, 2011&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/singular/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
==City Church==&lt;br /&gt;
&lt;br /&gt;
[[File:CityChurch.jpg|573px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/07/19/city-church-preview-an-upcoming-child-theme-for-builder/ Preview]&lt;br /&gt;
&lt;br /&gt;
The theme developers [http://ithemes.com/2011/07/27/preview-of-new-photo-child-theme-for-builder/ described] the unique features of the theme on iThemes.tv. You can watch the specific segment here:&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|4YObZwIoYok|560}}&lt;br /&gt;
&lt;br /&gt;
Release Date: August 3, 2011&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/city-church/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/08/03/how-to-launch-your-churchs-website-with-wordpress-and-builder/ Blog entry announcing the release of City Church]&lt;br /&gt;
&lt;br /&gt;
==Thinner==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder-Child–Thinner.jpg|800px|thumb|none|Screenshot of Thinner, 41st child theme of iThemes Builder]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/thinner/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/07/15/thinner-the-41st-child-theme-for-ithemes-builder/ Blog entry announcing the release of Thinner]&lt;br /&gt;
&lt;br /&gt;
==Keen==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder-Child–Keen.png|800px|thumb|none|Screenshot of Keen, 40th child theme of iThemes Builder]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/keen/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/07/11/builder-child-40-keen/ Blog entry announcing the release of Keen]&lt;br /&gt;
&lt;br /&gt;
==Dockside==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder Child – Dockside Demo 1309411970077.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/dockside/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
Features:&lt;br /&gt;
&lt;br /&gt;
* beautifully designed blockquotes with dropcap styling to give that extra flare and distinction.&lt;br /&gt;
* fresh, new category and comment icons to make your meta data stand out.&lt;br /&gt;
* featured image usage on blog layout&lt;br /&gt;
* great typography, including the &amp;quot;Brawler&amp;quot; Google font for the headlines&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/06/29/dockside-child-theme-39-for-ithemes-builder/ Blog entry announcing the release of Dockside]&lt;br /&gt;
&lt;br /&gt;
==Revised==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder Child – Revised Demo 2011-06-15 22-37-21.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/revised/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
Features:&lt;br /&gt;
&lt;br /&gt;
* Simple Blogroll Layout&lt;br /&gt;
* Feature Image Usage&lt;br /&gt;
* Unique Styled Archives&lt;br /&gt;
* Two Alternate Widget Styles&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/06/13/builder-child-themes-number-37-and-38/ Blog entry announcing the release of Revised]&lt;br /&gt;
&lt;br /&gt;
==Heat Wave==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder-child-heat-wave.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/heat-wave/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
Features:&lt;br /&gt;
&lt;br /&gt;
* Uniquely Styled Comment Section&lt;br /&gt;
* Default WordPress Gallery Colorbox Pop Up&lt;br /&gt;
* Hot, Summery Colors&lt;br /&gt;
* and Built In Gravity Forms Styles&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/06/06/sneak-peak-at-our-35th-builder-child-theme-heat-wave/ Blog entry announcing the release of Heat Wave]&lt;br /&gt;
&lt;br /&gt;
==Encased Light==&lt;br /&gt;
&lt;br /&gt;
[[File:builder-child-encased-light.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/encased-light/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-ithemes-builder-child-theme-encased-light/ Blog entry announcing the release of Encased Light]&lt;br /&gt;
&lt;br /&gt;
==Drafted==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder-child-drafted.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/drafted/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
==Cubed==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder-child-cubed.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/cubed/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
==Rainey Day==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder-childtheme-rainey-day.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/rainey-day/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
A light and subtle, yet dramatic theme.&lt;br /&gt;
&lt;br /&gt;
* unique fonts and font styling on the nav bar and headlines tags&lt;br /&gt;
* multi-shaded lavender color scheme&lt;br /&gt;
* ribbon graphics for added flair and elegance&lt;br /&gt;
* styling of the author meta data&lt;br /&gt;
* other stylish graphics being used throughout the theme&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/rainey-day-child-theme/ Blog entry announcing the release of Rainey Day]&lt;br /&gt;
&lt;br /&gt;
==Scooter==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder-childtheme-scooter.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/scooter/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
* Retro Styled Theme – making Retro the new Contemporary.&lt;br /&gt;
* 'Dancing Script' Google Font, providing a super-easy way to have a unique titles and headlines without slowing your site down with heavy graphics.&lt;br /&gt;
* Magazine Layout Builder Extension – so you can take advantage of the ease of using Builder with the visual sophistication of a magazine layout.&lt;br /&gt;
* ContactBuddy and GravityForms Styles (Extensions) built in – so once you install the specific plugins, you will have access to the advanced styling without having to touch any code.&lt;br /&gt;
* Alternate HTML modules – so you can have different looking HTML modules without having to change the css code.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|IQlnrb9sfiY}}&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/scooter-a-retro-style-child-theme-for-ithemes-builder/ Blog entry announcing the release of Scooter]&lt;br /&gt;
&lt;br /&gt;
==Covert==&lt;br /&gt;
&lt;br /&gt;
[[File:Covert-builder-childtheme.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/covert/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
A quite stunning in its bold-yet-minimalist style. Similar to its related (sister?) theme Covell, Covert uses a minimalist, monochromatic style, but one that allows photographers and artists to display their work in a more dramatic and darker style.&lt;br /&gt;
&lt;br /&gt;
Covert also includes 2 distinct navigation styles, making it easy to portray just the amount of &amp;quot;minimalism&amp;quot; you want, as well as the custom projects post type, making project organization and display a snap.&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/covert-30th-child-theme-for-ithemes-builder-just-released/ Blog entry announcing the release of Covert]&lt;br /&gt;
&lt;br /&gt;
==Encased==&lt;br /&gt;
&lt;br /&gt;
[[File:Encased-builder-child-theme.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/encased/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
Some of the other features that make this theme special:&lt;br /&gt;
&lt;br /&gt;
* Unique Navigation Styles – Fixed Left and Top Navigation&lt;br /&gt;
* Encased Content Module – Content Module is ‘encased’ within the layout making it stand out from the other modules.&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-ithemes-builder-child-theme-encased/ Blog entry announcing the release of Encased]&lt;br /&gt;
&lt;br /&gt;
==Lucky 7==&lt;br /&gt;
&lt;br /&gt;
[[File:Lucky7-builder-child-theme.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/lucky7/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
Some of the special features included in Lucky 7:&lt;br /&gt;
&lt;br /&gt;
* 7 awesome color palettes – which can be further customized using the Style Manager plugin – giving you a professional look with virtually no effort&lt;br /&gt;
* The ability to select a different color for individual modules – making it easy to super-customize each portion of the page&lt;br /&gt;
* Beautiful meta blocks for author info – making your site (and your authors) stand out from the crowd&lt;br /&gt;
* Inset widgets and navigation for a unique, professional look&lt;br /&gt;
* Additional custom theme settings, such as a simple setting to change the “read more” text, giving your site a special touch without having to know anything about code&lt;br /&gt;
* Built-in iPhone-ready mobile theme&lt;br /&gt;
* and popular rounded corners&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/lucky-7-new-ithemes-builder-child-theme-released/ Blog entry announcing the release of Lucky 7]&lt;br /&gt;
&lt;br /&gt;
==Covell==&lt;br /&gt;
&lt;br /&gt;
[[File:Ithemes-builder-child-covell.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/covell/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/covell-the-newest-child-theme-for-ithemes-builder/ Blog entry announcing the release of Covell]&lt;br /&gt;
&lt;br /&gt;
==Classen==&lt;br /&gt;
&lt;br /&gt;
[[File:Classen-ss-blog.png]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/classen Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-builder-child-theme-released-classen/ Blog entry announcing the release of Classen]&lt;br /&gt;
&lt;br /&gt;
==Blueprint==&lt;br /&gt;
&lt;br /&gt;
[[File:Blueprint-builder-childtheme.png|537px]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/blueprint/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-builder-child-theme-released-blueprint/ Blog entry announcing the release of Blueprint]&lt;br /&gt;
&lt;br /&gt;
==Ionic==&lt;br /&gt;
&lt;br /&gt;
'''Ionic – Sky'''&lt;br /&gt;
&lt;br /&gt;
[[File:Ionic-sky.png|537px]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/ionic-sky Live Demo]&lt;br /&gt;
&lt;br /&gt;
'''Ionic – Green'''&lt;br /&gt;
&lt;br /&gt;
[[File:Ionic-green.png|537px]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/ionic-green Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-builder-child-themes-released/ Blog entry announcing the release of Ionic Sky and Ionic Green]&lt;br /&gt;
&lt;br /&gt;
'''Ionic'''&lt;br /&gt;
&lt;br /&gt;
[[File:Ionic-builder-child-theme.png|537px]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/ionic Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/ionic-new-builder-child-theme-released/ Blog entry announcing the release of Ionic theme]&lt;br /&gt;
&lt;br /&gt;
==Americana==&lt;br /&gt;
&lt;br /&gt;
'''Americana'''&lt;br /&gt;
&lt;br /&gt;
[[File:Americana-builder-child-theme.png|537px]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/americana-new-builder-child-theme-released/ Blog entry announcing the release of Americana theme]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/americana/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/codex/page/Americana Instructions for setting up Americana to look like the demo site]&lt;br /&gt;
&lt;br /&gt;
'''Americana - Mojave''' (Release Date: January 21, 2011)&lt;br /&gt;
&lt;br /&gt;
[[File:Americana-mojave.png|537px]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-builder-child-themes-released/ Blog entry announcing the release of this theme]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/americana-mojave Live Demo]&lt;br /&gt;
&lt;br /&gt;
'''Americana - Libertas''' (Release Date: January 21, 2011)&lt;br /&gt;
&lt;br /&gt;
[[File:Americana-libertas.png|537px]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-builder-child-themes-released/ Blog entry announcing the release of this theme]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/americana-libertas Live Demo]&lt;br /&gt;
&lt;br /&gt;
'''Americana - Interstate''' (Release Date: January 21, 2011)&lt;br /&gt;
&lt;br /&gt;
[[File:Americana-interstate.png|537px]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-builder-child-themes-released/ Blog entry announcing the release of this theme]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/americana-interstate Live Demo]&lt;br /&gt;
&lt;br /&gt;
==4 more themes in Foundation series==&lt;br /&gt;
&lt;br /&gt;
[[File:Foundation_tropic.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[File:Foundation_bonsai.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[File:Foundation_glacier.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[File:Foundation_blank.jpg]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/4-new-ithemes-builder-themes-released/ Blog entry announcing these]&lt;br /&gt;
&lt;br /&gt;
==Foundation - WordPress theme for Churches and Ministries==&lt;br /&gt;
&lt;br /&gt;
[[File:Foundation.jpg]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/foundation-church-wordpress-theme-released/ Blog entry announcing the release of Foundation theme]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/foundation/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
==Entree Pub==&lt;br /&gt;
&lt;br /&gt;
[[File:EntreePub.png|700px]]&lt;br /&gt;
&lt;br /&gt;
This is another theme in the restaurant series, with a little bit of a pub twist.&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-builder-child-theme-released-entree-pub/ Blog entry announcing the release of Entree Pub theme]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/entree-pub Live Demo]&lt;br /&gt;
&lt;br /&gt;
==Entree==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder-child-enree.png|500px]]&lt;br /&gt;
&lt;br /&gt;
This is a child theme associated with Restaurant Block.&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/entree/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/restaurant-builder-block-and-child-theme-released/ Blog Post]&lt;br /&gt;
&lt;br /&gt;
==Anchor==&lt;br /&gt;
&lt;br /&gt;
[[File:Anchor_ChildTheme.png]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-builder-child-theme-anchor-released/ Blog entry announcing the release of Anchor theme]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/anchor Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/4955-question-about-anchor-theme/#p23068 Instructions on how to set up Anchor so it looks like the demo site]&lt;br /&gt;
&lt;br /&gt;
==Slate==&lt;br /&gt;
&lt;br /&gt;
[[File:Slate_ChildTheme.png]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-builder-child-theme-slate/ Blog entry announcing the release of Slate theme]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/slate/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
==Astro==&lt;br /&gt;
&lt;br /&gt;
[[File:Astro__ChildTheme.jpg]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/2530-astro-child-theme-version-2-released/ Version 2 Release Announcement forum thread]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-builder-child-theme-astro-released/ Blog entry announcing the release of Astro theme]&lt;br /&gt;
&lt;br /&gt;
==Default==&lt;br /&gt;
&lt;br /&gt;
[[File:Default__ChildTheme.png]]&lt;br /&gt;
&lt;br /&gt;
==Retro==&lt;br /&gt;
&lt;br /&gt;
[[File:Retro__ChildTheme.png]]&lt;br /&gt;
&lt;br /&gt;
==Vintage==&lt;br /&gt;
&lt;br /&gt;
[[File:Vintage_ChildTheme.png]]&lt;br /&gt;
&lt;br /&gt;
==Coffee==&lt;br /&gt;
&lt;br /&gt;
[[File:Coffee_ChildTheme.png]]&lt;br /&gt;
&lt;br /&gt;
==Fire==&lt;br /&gt;
&lt;br /&gt;
[[File:Fire_ChildTheme.png]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/more-builder-goodness-coming-your-way/ Blog entry announcing the release of Retro, Vintage, Coffee and Fire themes]&lt;br /&gt;
&lt;br /&gt;
= How to rename a child theme =&lt;br /&gt;
&lt;br /&gt;
'''1.''' Edit Theme Name in child theme's style.css.&lt;br /&gt;
&lt;br /&gt;
Ex.: Change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Theme Name: Builder Child Theme - Default&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Theme Name: My Awesome Theme&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also change other values like Theme URI, Description, Author etc.&lt;br /&gt;
&lt;br /&gt;
DO NOT delete or change &amp;lt;code&amp;gt;Template: Builder&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''2.''' Change the name of child theme directory to your liking.&lt;br /&gt;
&lt;br /&gt;
Ex.: Change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;BuilderChild-Default &amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;MyAwesomeTheme&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ensure that there are no spaces in the name of child theme directory.&lt;br /&gt;
&lt;br /&gt;
= How to update a child theme =&lt;br /&gt;
&lt;br /&gt;
It is generally not recommended to update a child theme after it has been extensively customized.&lt;br /&gt;
&lt;br /&gt;
However, if you would like to, follow these steps:&lt;br /&gt;
&lt;br /&gt;
# Take a full backup of your site using BackupBuddy&lt;br /&gt;
# Make a list of changes and addition/deletions done to files and foldes in the current child theme directory&lt;br /&gt;
# Download the latest version of child theme, edit its style.css, change the theme name in the comments section at the top, change the theme folder name to something else. For details, see the above section on ''How to rename a child theme'' &lt;br /&gt;
# Re-apply the changes noted in step 2 to this theme&lt;br /&gt;
# Zip it up, install and activate this new theme&lt;br /&gt;
# Check the site and ensure that everything is alright. You can use a plugin like [http://wordpress.org/extend/plugins/theme-test-drive/ Theme Test Drive] to see the site in older version of this child theme in another tab/browser&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:Attent-2013-05-25-11-25-48.jpg</id>
		<title>File:Attent-2013-05-25-11-25-48.jpg</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:Attent-2013-05-25-11-25-48.jpg"/>
				<updated>2013-05-25T05:56:41Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:Coverage-2013-05-25-11-19-50.jpg</id>
		<title>File:Coverage-2013-05-25-11-19-50.jpg</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:Coverage-2013-05-25-11-19-50.jpg"/>
				<updated>2013-05-25T05:51:33Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/BuilderChild-Noise</id>
		<title>BuilderChild-Noise</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/BuilderChild-Noise"/>
				<updated>2013-05-23T03:18:47Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: Added == How to make entry box below post titles look simpler ==&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Demo Site =&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/noise/ Noise Live Demo]&lt;br /&gt;
&lt;br /&gt;
= Intro =&lt;br /&gt;
&lt;br /&gt;
Noise is a responsive-ready Builder child theme designed to be used in conjunction with a plugin for iThemes Builder, Builder Audio Block.&lt;br /&gt;
&lt;br /&gt;
Designed with musicians and bands in mind, Builder now makes it easy to create a WordPress band website with a &amp;quot;built-in&amp;quot; audio player, a way to display albums or discographies, a list of upcoming shows and support for music downloads/purchases with Easy Digital Downloads.&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2013/03/11/just-released-noise-a-new-builder-child-theme-new-builder-audio-block/ Announcement Blog Post]&lt;br /&gt;
&lt;br /&gt;
= Videos =&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|61387316|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|n7xCgrb0Qik|640|none|Noise Demo Site and Audio Block Walkthrough}}&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2013/03/12/video-noise-demo-site-and-audio-block-walkthrough-ithemestv/ Blog post]&lt;br /&gt;
&lt;br /&gt;
= FAQ =&lt;br /&gt;
&lt;br /&gt;
== How to Assign a Layout to Audio Archive page ==&lt;br /&gt;
&lt;br /&gt;
By default, Audio archive page, http://yoursite.com/audio/ will use &amp;lt;code&amp;gt;Full Width&amp;lt;/code&amp;gt; layout (unless the default View Builder ships with is deleted). This comes from the &amp;lt;code&amp;gt;Archives&amp;lt;/code&amp;gt; view at My Theme -&amp;gt; Layouts &amp;amp; Views -&amp;gt; Views. This View can be edited and another layout selected which will work for all archive pages including the Audio archive page. &lt;br /&gt;
&lt;br /&gt;
However if you wish to apply a layout just to the Audio archive page, follow this.&lt;br /&gt;
&lt;br /&gt;
Add this code at the end of child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_filter_audio_layout( $layout_id ) {&lt;br /&gt;
    if ( is_post_type_archive('it_bb_audio') )&lt;br /&gt;
            return '4f30b1482cde8';&lt;br /&gt;
    &lt;br /&gt;
    return $layout_id;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_current_layout', 'custom_filter_audio_layout' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above, change &amp;quot;4f30b1482cde8&amp;quot; to the ID of layout that you wish to assign to Audio archive page.&lt;br /&gt;
&lt;br /&gt;
To find the ID for a Layout, go to the Layouts listing, copy the edit link for the desired Layout, paste the link somewhere, and grab the text after the last equal sign. For example, consider the following link:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;http://yoursite.com/wp-admin/admin.php?page=layout-editor&amp;amp;editor_tab=layouts&amp;amp;layout=4f30b1482cde8&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The Layout's ID for the above is 4f30b1482cde8.&lt;br /&gt;
&lt;br /&gt;
== How to Assign a Layout to Every Single Entry page of Audio CPT  ==&lt;br /&gt;
&lt;br /&gt;
=== Method 1 ===&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;Post Type - Audio&amp;lt;/code&amp;gt; View at My Theme -&amp;gt; Layouts &amp;amp; Views -&amp;gt; Views to assign a layout to every single Audio entry page.&lt;br /&gt;
&lt;br /&gt;
=== Method 2 ===&lt;br /&gt;
&lt;br /&gt;
Add the following in child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_filter_audio_single_layout( $layout_id ) {&lt;br /&gt;
    if ( is_singular('it_bb_audio') )&lt;br /&gt;
            return '513f60026cf01';&lt;br /&gt;
&lt;br /&gt;
    return $layout_id;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_current_layout', 'custom_filter_audio_single_layout' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above, change &amp;quot;513f60026cf01&amp;quot; to the ID of layout that you wish to assign to single Audio pages.&lt;br /&gt;
&lt;br /&gt;
== How to Add Start and End times to Events archive page ==&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-03-23 at 1.46.09 PM.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Install and activate [http://www.advancedcustomfields.com/ Advanced Custom Fields] plugin. Note: At the time of writing this, this plugin that's available in wordpress.org/extend/plugins is not functional and must be downloaded only from the plugin author's site.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Go to Custom Fields -&amp;gt; Custom Fields and add Start Time and End Time custom fields per screenshot below (click for bigger view).&lt;br /&gt;
&lt;br /&gt;
[[File:Edit Field Group ‹ iThemes Builder Test Site — WordPress 2013-03-23 13-52-48.png|271px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''3.''' Edit wp-content/themes BuilderChild-Noise/archive-it_bb_event.php&lt;br /&gt;
&lt;br /&gt;
Below&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;h3 class=&amp;quot;entry-title&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php the_permalink(); ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php the_title(); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
add [http://pastebin.com/w9JpSqwF this] code.&lt;br /&gt;
&lt;br /&gt;
'''4.''' Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.entry-meta.start-time,&lt;br /&gt;
.entry-meta.end-time {&lt;br /&gt;
    display: inline-block;&lt;br /&gt;
    float: left;&lt;br /&gt;
    /*margin-right: 2em;*/&lt;br /&gt;
    padding-top: 0.25em;&lt;br /&gt;
    /*width: 15%;*/&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-template-archive-it-bb-event .builder-module .entry-title {&lt;br /&gt;
	float: left;&lt;br /&gt;
	width: 25%;&lt;br /&gt;
	clear: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''5.''' When creating/editing events, enter the event's start and end times. These (both fields or a single one) can be left empty.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit Event ‹ iThemes Builder Test Site — WordPress 2013-03-23 13-59-38.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
== How to Show Links to Navigate to Next and Previous months in Events Calendar View in Firefox ==&lt;br /&gt;
&lt;br /&gt;
When viewing the Events archive page in Calendar view, the buttons to switch to Previous and Next months won't be visible in Firefox. It's fine in other browsers.&lt;br /&gt;
&lt;br /&gt;
To fix this, add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.loop-calendar {&lt;br /&gt;
	clear: both;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to make entry box below post titles look simpler ==&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-05-23 at 8.35.18 AM.png|653px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-05-23 at 8.34.30 AM.png|628px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Note: The below steps are for making the changes per above sample screenshots in Posts page. For making similar changes in other listing views like archives or category pages or search results pages, appropriate template files need to be edited and CSS adjusted.&lt;br /&gt;
&lt;br /&gt;
'''1)''' Create a file named &amp;lt;code&amp;gt;content-index.php&amp;lt;/code&amp;gt; in child theme directory having [http://pastebin.com/YJkXePnm this] code.&lt;br /&gt;
&lt;br /&gt;
'''2)''' Edit child theme's &amp;lt;code&amp;gt;index.php&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php get_template_part('content', get_post_format()); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php get_template_part('content-index', get_post_format()); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''3)''' Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.blog .entry-meta.author-gravatar-wrapper {&lt;br /&gt;
	display: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.blog .left-entry-meta {&lt;br /&gt;
	margin-left: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.blog .meta-wrapper {&lt;br /&gt;
	background: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.blog .meta-wrapper {&lt;br /&gt;
	padding-left: 0;&lt;br /&gt;
	padding-right: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.blog .hentry .entry-meta.categories {&lt;br /&gt;
	display: inline;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.blog .hentry .entry-meta.categories a {&lt;br /&gt;
	background: none;&lt;br /&gt;
	border: none;&lt;br /&gt;
	padding-left: 0;&lt;br /&gt;
	padding-right: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.blog .hentry .entry-meta.categories a:hover {&lt;br /&gt;
	color: #EFEFEF;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:Screen_Shot_2013-05-23_at_8.34.30_AM.png</id>
		<title>File:Screen Shot 2013-05-23 at 8.34.30 AM.png</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:Screen_Shot_2013-05-23_at_8.34.30_AM.png"/>
				<updated>2013-05-23T03:06:53Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:Screen_Shot_2013-05-23_at_8.35.18_AM.png</id>
		<title>File:Screen Shot 2013-05-23 at 8.35.18 AM.png</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:Screen_Shot_2013-05-23_at_8.35.18_AM.png"/>
				<updated>2013-05-23T03:05:48Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/BuilderChild-Air</id>
		<title>BuilderChild-Air</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/BuilderChild-Air"/>
				<updated>2013-05-20T02:25:38Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: Added == How to have logo at left and navigation menu at right ==&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
Builder Child Air is a new foundational or starter child theme for iThemes Builder. Whether you're using the Builder Style Manager or writing your own CSS, we hope Air will be a great new place to start when creating your custom responsive-ready Builder child themes. &lt;br /&gt;
&lt;br /&gt;
Builder child Air includes several convenient built-in features to help lay the groundwork for custom child theme creation. A few of Air's theme highlights include:&lt;br /&gt;
&lt;br /&gt;
* Built-in Mobile-Ready Menu Style&lt;br /&gt;
* Fully Optimized for Style Manager&lt;br /&gt;
* New Inset Module Styles&lt;br /&gt;
* Full Window Image Style&lt;br /&gt;
&lt;br /&gt;
[[File:Air 2013-04-12 09-33-58.png|291px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/air/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2013/04/04/introducing-air-a-new-foundation-child-theme-for-builder/ Blog entry announcing the release of Air]&lt;br /&gt;
&lt;br /&gt;
== How to Change the Appearance of Search ==&lt;br /&gt;
&lt;br /&gt;
Follow http://ithemes.com/2013/05/03/how-to-change-the-appearance-of-search-in-ithemes-builder-air-child-theme/&lt;br /&gt;
&lt;br /&gt;
== How to show Excerpts instead of full post content on Posts page ==&lt;br /&gt;
&lt;br /&gt;
'''1.''' Duplicate (using a FTP client or cPanel file manager)&lt;br /&gt;
&lt;br /&gt;
wp-content/themes/BuilderChild-Air/post-formats/content.php&lt;br /&gt;
&lt;br /&gt;
as &lt;br /&gt;
&lt;br /&gt;
wp-content/themes/BuilderChild-Air/post-formats/content-excerpt.php&lt;br /&gt;
&lt;br /&gt;
and edit &amp;lt;code&amp;gt;content-excerpt.php&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Replace&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php the_content( __( 'Read More &amp;amp;rarr;', 'it-l10n-BuilderChild-Air' ) ); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php the_excerpt(); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''2.''' Edit Air's &amp;lt;code&amp;gt;index.php&amp;lt;/code&amp;gt; and change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php get_template_part('post-formats/content', get_post_format()); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php get_template_part('post-formats/content-excerpt', get_post_format()); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That's it.&lt;br /&gt;
&lt;br /&gt;
If you would like to do the same in other views like Archives or Search, edit the [http://codex.wordpress.org/images/1/18/Template_Hierarchy.png appropriate files].&lt;br /&gt;
&lt;br /&gt;
== How to have logo at left and navigation menu at right ==&lt;br /&gt;
&lt;br /&gt;
[[File:WordPress Dev Site 2013-05-20 07-52-04.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Create a HTML module and paste this code in the textarea:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;logo&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php bloginfo('url'); ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;&amp;lt;?php bloginfo( 'stylesheet_directory' ); ?&amp;gt;/images/logo.png&amp;quot; alt=&amp;quot;Home&amp;quot; /&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;my-menu-container&amp;quot;&amp;gt;&amp;lt;?php wp_nav_menu( array( 'menu' =&amp;gt; 'Primary', 'menu_class' =&amp;gt; 'builder-module-navigation') ); ?&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Set &amp;lt;code&amp;gt;Enable PHP&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;Yes&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-05-20 at 7.50.56 AM.png|595px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Upload your logo to child theme's images directory and replace &amp;quot;logo.png&amp;quot; in the above code with the name of your logo image.&lt;br /&gt;
&lt;br /&gt;
Also change &amp;quot;Primary&amp;quot; in the above code to the name of custom menu at Appearance -&amp;gt; Menus that you wish to appear in the nav bar.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''2.''' Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
#logo {&lt;br /&gt;
	float: left;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.my-menu-container {&lt;br /&gt;
	float: right;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[Optional] Also add this CSS to reduce the extra space above and below the content of our HTML module:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-2 {&lt;br /&gt;
	padding-top: 1em !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-2 .builder-module-element {&lt;br /&gt;
	margin-bottom: 1em !important;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Change the number &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt; in &amp;quot;.builder-module-2&amp;quot; above to the position of module from the top in layout.&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:Screen_Shot_2013-05-20_at_7.50.56_AM.png</id>
		<title>File:Screen Shot 2013-05-20 at 7.50.56 AM.png</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:Screen_Shot_2013-05-20_at_7.50.56_AM.png"/>
				<updated>2013-05-20T02:23:42Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:WordPress_Dev_Site_2013-05-20_07-52-04.png</id>
		<title>File:WordPress Dev Site 2013-05-20 07-52-04.png</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:WordPress_Dev_Site_2013-05-20_07-52-04.png"/>
				<updated>2013-05-20T02:22:32Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/BuilderChild-Essence</id>
		<title>BuilderChild-Essence</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/BuilderChild-Essence"/>
				<updated>2013-05-16T12:21:12Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: /* Classic Essence and Essence Builder child theme */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Demo Sites ==&lt;br /&gt;
&lt;br /&gt;
* [http://demos.ithemes.com/builder-essence-blue/ Essence Blue]&lt;br /&gt;
* [http://demos.ithemes.com/builder-essence-dark/ Essence Dark]&lt;br /&gt;
* [http://demos.ithemes.com/builder-essence-golden/ Essence Golden]&lt;br /&gt;
* [http://demos.ithemes.com/builder-essence-red/ Essence Red]&lt;br /&gt;
* [http://demos.ithemes.com/builder-essence-silver/ Essence Silver]&lt;br /&gt;
&lt;br /&gt;
== How to have a gradient background for nav bar that works in all browsers incl. IE ==&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
&lt;br /&gt;
[[File:Navbar-essence-ie-before.jpg|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
[[File:03-20-2013 18-39-33.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation {&lt;br /&gt;
    background: url('http://f.cl.ly/items/0u0R0O32391A210Y432l/nav-bkgrd.png') repeat-x;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Classic Essence and Essence Builder child theme ==&lt;br /&gt;
&lt;br /&gt;
Essence Builder child theme ([http://demos.ithemes.com/builder-essence-golden/ Builder Essence Golden demo]) is not an exact replica of the stand-alone classic Essence ([http://essence.ithemes.com/index.php?wptheme=Golden+Essence classic Golden Essence]), but is close to it. They both have different body backgrounds.&lt;br /&gt;
&lt;br /&gt;
The rotating images feature in classic Essence can be replicated by using Rotating Images plugin. This plugin is free for all iThemes Builder customers.&lt;br /&gt;
&lt;br /&gt;
Due to the flexibility of Builder, not all design elements have remained in the Builder version. For instance, the shadow is a [http://essence.ithemes.com/wp-content/themes/red_essence/images/homebottom.png fixed width background image] with the background colour of the widget module below it. There is no way to incorporate that, whilst also allowing the Builder user to design any width for his site, colours etc AND maintain responsiveness. There are no plans to further update the Essence design. One could examine the specifics from the classic Essence (background images, css code) and reapply them. This will require CSS knowledge, and of course knowledge of the Builder.&lt;br /&gt;
&lt;br /&gt;
== Item 4 ==&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/BuilderChild-Essence</id>
		<title>BuilderChild-Essence</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/BuilderChild-Essence"/>
				<updated>2013-05-16T08:16:05Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: Added == Classic Essence and Essence Builder child theme ==&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Demo Sites ==&lt;br /&gt;
&lt;br /&gt;
* [http://demos.ithemes.com/builder-essence-blue/ Essence Blue]&lt;br /&gt;
* [http://demos.ithemes.com/builder-essence-dark/ Essence Dark]&lt;br /&gt;
* [http://demos.ithemes.com/builder-essence-golden/ Essence Golden]&lt;br /&gt;
* [http://demos.ithemes.com/builder-essence-red/ Essence Red]&lt;br /&gt;
* [http://demos.ithemes.com/builder-essence-silver/ Essence Silver]&lt;br /&gt;
&lt;br /&gt;
== How to have a gradient background for nav bar that works in all browsers incl. IE ==&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
&lt;br /&gt;
[[File:Navbar-essence-ie-before.jpg|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
[[File:03-20-2013 18-39-33.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation {&lt;br /&gt;
    background: url('http://f.cl.ly/items/0u0R0O32391A210Y432l/nav-bkgrd.png') repeat-x;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Classic Essence and Essence Builder child theme ==&lt;br /&gt;
&lt;br /&gt;
Essence Builder child theme ([http://demos.ithemes.com/builder-essence-golden/ Builder Essence Golden demo]) is not an exact replica of the stand-alone classic Essence ([http://essence.ithemes.com/index.php?wptheme=Golden+Essence classic Golden Essence]), but is close to it. They both have different body backgrounds.&lt;br /&gt;
&lt;br /&gt;
The rotating images feature in classic Essence can be replicated by using Rotating Images plugin. This plugin is free for all iThemes Builder customers. &lt;br /&gt;
&lt;br /&gt;
== Item 4 ==&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/BuilderChild-Book-Nook</id>
		<title>BuilderChild-Book-Nook</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/BuilderChild-Book-Nook"/>
				<updated>2013-05-16T03:38:34Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: /* How to set up homepage to look like demo site */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
Designed with authors in mind, the latest child theme for iThemes Builder will showcase your work perfectly.&lt;br /&gt;
&lt;br /&gt;
[[File:Book-Nook-2012-06-23-12-16-59.jpg|565px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/book-nook/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/06/22/new-child-theme-preview-book-nook/ Blog entry announcing the release of Book Nook]&lt;br /&gt;
&lt;br /&gt;
== How to set up homepage to look like demo site ==&lt;br /&gt;
&lt;br /&gt;
Update on Thursday, May 16, 2013: [http://demos.ithemes.com/book-nook/ Book Nook demo site] PSDs can be downloaded from the link in [http://ithemes.com/forum/topic/30883-book-nook-buttons-and-ads/#entry194318 this] forum post.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Create Pages. This will help in setting up nav bar since Pages will be listed in the next step.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Go to Appearance -&amp;gt; Menus. Create a menu named say &amp;lt;code&amp;gt;Main&amp;lt;/code&amp;gt; having your desired items (Pages, Categories, custom links etc).&lt;br /&gt;
&lt;br /&gt;
'''3.''' Create a layout named say, &amp;lt;code&amp;gt;Home&amp;lt;/code&amp;gt;. Width = 960px.&lt;br /&gt;
&lt;br /&gt;
Add modules in this order:&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-25-05.png|460px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== Navigation Module ===&lt;br /&gt;
&lt;br /&gt;
Select the menu created earlier in Navigation Type dropdown.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-32-41.png|576px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== Header Module ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-33-59.png|470px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
In the [http://demos.ithemes.com/book-nook/ demo site], an image is placed in a Widget Content widget in Header module's sidebar having the following code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://www.amazon.com/The-Entrepreneurial-Adventure-For-ebook/dp/B006UH274O&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;alignnone size-full wp-image-61&amp;quot; title=&amp;quot;purchase-small-ad&amp;quot; src=&amp;quot;http://demos.ithemes.com/book-nook/files/2012/06/purchase-small-ad.png&amp;quot; alt=&amp;quot;&amp;quot; height=&amp;quot;58&amp;quot; width=&amp;quot;411&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Instead of the image, if you would like to use HTML code so you can alter the price and change the &amp;quot;Purchase the Book&amp;quot; phrase, place the following in a text widget in the Header module's widget area:&lt;br /&gt;
&lt;br /&gt;
[http://pastebin.com/EVyVZFiu http://pastebin.com/EVyVZFiu]&lt;br /&gt;
&lt;br /&gt;
Change URL and any text in the above to your liking.&lt;br /&gt;
&lt;br /&gt;
Then add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
/*********************************************&lt;br /&gt;
    Purchase Button&lt;br /&gt;
*********************************************/&lt;br /&gt;
&lt;br /&gt;
.purchase-button a {&lt;br /&gt;
    display: block;&lt;br /&gt;
	border: 1px solid #000000;&lt;br /&gt;
	border-radius: 3px;&lt;br /&gt;
	background-color: #b35332;&lt;br /&gt;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(179, 83, 50)), to(rgb(123, 43, 16)));&lt;br /&gt;
	background-image: -webkit-linear-gradient(top, rgb(179, 83, 50), rgb(123, 43, 16));&lt;br /&gt;
	background-image: -moz-linear-gradient(top, rgb(179, 83, 50), rgb(123, 43, 16));&lt;br /&gt;
	background-image: -o-linear-gradient(top, rgb(179, 83, 50), rgb(123, 43, 16));&lt;br /&gt;
	background-image: -ms-linear-gradient(top, rgb(179, 83, 50), rgb(123, 43, 16));&lt;br /&gt;
	background-image: linear-gradient(top, rgb(179, 83, 50), rgb(123, 43, 16));&lt;br /&gt;
    padding: 0.5em 1.3em;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
&lt;br /&gt;
	-webkit-transition:  all .2s linear;&lt;br /&gt;
	-moz-transition:  all .2s linear 0s;&lt;br /&gt;
    max-width: 320px;&lt;br /&gt;
    width: 100%;&lt;br /&gt;
    text-align: center;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.purchase-button a:hover {&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.purchase-message {&lt;br /&gt;
    color: #FFFFFF;&lt;br /&gt;
    font-size: 1.4em;&lt;br /&gt;
    text-shadow: 1px 1px 3px #333;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.purchase-price {&lt;br /&gt;
    color: #35160c;&lt;br /&gt;
    font-size: 1.1em;&lt;br /&gt;
    padding-left: 0.5em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to get&lt;br /&gt;
&lt;br /&gt;
[[File:Purchase-the-book.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== Widget Bar 1 ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-35-32.png|467px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== Widget Bar 2 ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-39-29.png|470px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== Widget Bar 3 ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-40-43.png|470px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== Footer Module ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-41-54.png|466px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''4.''' Create a Page named say, &amp;lt;code&amp;gt;Home&amp;lt;/code&amp;gt; and select &amp;lt;code&amp;gt;Home&amp;lt;/code&amp;gt; layout for this in the &amp;lt;code&amp;gt;Custom Layout&amp;lt;/code&amp;gt; meta box. This page can be left blank.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-46-47.png|298px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''5.''' Go to Settings -&amp;gt; Reading. Set &amp;lt;code&amp;gt;Home&amp;lt;/code&amp;gt; as the Front page.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-48-19.png|489px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''6.''' Visit your site's homepage and you should see the basic structure similar to that of demo site. Hover on Builder in the top WordPress bar and click on &amp;lt;code&amp;gt;Manage Widgets for this Layout&amp;lt;/code&amp;gt;. Add your desired widgets in the sidebars.&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/BuilderChild-Book-Nook</id>
		<title>BuilderChild-Book-Nook</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/BuilderChild-Book-Nook"/>
				<updated>2013-05-16T01:03:56Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: /* How to set up homepage to look like demo site */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
Designed with authors in mind, the latest child theme for iThemes Builder will showcase your work perfectly.&lt;br /&gt;
&lt;br /&gt;
[[File:Book-Nook-2012-06-23-12-16-59.jpg|565px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/book-nook/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/06/22/new-child-theme-preview-book-nook/ Blog entry announcing the release of Book Nook]&lt;br /&gt;
&lt;br /&gt;
== How to set up homepage to look like demo site ==&lt;br /&gt;
&lt;br /&gt;
Update on Thursday, May 16, 2013: [http://demos.ithemes.com/book-nook/ Book Nook demo site] PSDs can be downloaded from [http://cl.ly/Oz6k here].&lt;br /&gt;
&lt;br /&gt;
'''1.''' Create Pages. This will help in setting up nav bar since Pages will be listed in the next step.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Go to Appearance -&amp;gt; Menus. Create a menu named say &amp;lt;code&amp;gt;Main&amp;lt;/code&amp;gt; having your desired items (Pages, Categories, custom links etc).&lt;br /&gt;
&lt;br /&gt;
'''3.''' Create a layout named say, &amp;lt;code&amp;gt;Home&amp;lt;/code&amp;gt;. Width = 960px.&lt;br /&gt;
&lt;br /&gt;
Add modules in this order:&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-25-05.png|460px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== Navigation Module ===&lt;br /&gt;
&lt;br /&gt;
Select the menu created earlier in Navigation Type dropdown.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-32-41.png|576px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== Header Module ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-33-59.png|470px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
In the [http://demos.ithemes.com/book-nook/ demo site], an image is placed in a Widget Content widget in Header module's sidebar having the following code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://www.amazon.com/The-Entrepreneurial-Adventure-For-ebook/dp/B006UH274O&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;alignnone size-full wp-image-61&amp;quot; title=&amp;quot;purchase-small-ad&amp;quot; src=&amp;quot;http://demos.ithemes.com/book-nook/files/2012/06/purchase-small-ad.png&amp;quot; alt=&amp;quot;&amp;quot; height=&amp;quot;58&amp;quot; width=&amp;quot;411&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Instead of the image, if you would like to use HTML code so you can alter the price and change the &amp;quot;Purchase the Book&amp;quot; phrase, place the following in a text widget in the Header module's widget area:&lt;br /&gt;
&lt;br /&gt;
[http://pastebin.com/EVyVZFiu http://pastebin.com/EVyVZFiu]&lt;br /&gt;
&lt;br /&gt;
Change URL and any text in the above to your liking.&lt;br /&gt;
&lt;br /&gt;
Then add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
/*********************************************&lt;br /&gt;
    Purchase Button&lt;br /&gt;
*********************************************/&lt;br /&gt;
&lt;br /&gt;
.purchase-button a {&lt;br /&gt;
    display: block;&lt;br /&gt;
	border: 1px solid #000000;&lt;br /&gt;
	border-radius: 3px;&lt;br /&gt;
	background-color: #b35332;&lt;br /&gt;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(179, 83, 50)), to(rgb(123, 43, 16)));&lt;br /&gt;
	background-image: -webkit-linear-gradient(top, rgb(179, 83, 50), rgb(123, 43, 16));&lt;br /&gt;
	background-image: -moz-linear-gradient(top, rgb(179, 83, 50), rgb(123, 43, 16));&lt;br /&gt;
	background-image: -o-linear-gradient(top, rgb(179, 83, 50), rgb(123, 43, 16));&lt;br /&gt;
	background-image: -ms-linear-gradient(top, rgb(179, 83, 50), rgb(123, 43, 16));&lt;br /&gt;
	background-image: linear-gradient(top, rgb(179, 83, 50), rgb(123, 43, 16));&lt;br /&gt;
    padding: 0.5em 1.3em;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
&lt;br /&gt;
	-webkit-transition:  all .2s linear;&lt;br /&gt;
	-moz-transition:  all .2s linear 0s;&lt;br /&gt;
    max-width: 320px;&lt;br /&gt;
    width: 100%;&lt;br /&gt;
    text-align: center;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.purchase-button a:hover {&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.purchase-message {&lt;br /&gt;
    color: #FFFFFF;&lt;br /&gt;
    font-size: 1.4em;&lt;br /&gt;
    text-shadow: 1px 1px 3px #333;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.purchase-price {&lt;br /&gt;
    color: #35160c;&lt;br /&gt;
    font-size: 1.1em;&lt;br /&gt;
    padding-left: 0.5em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to get&lt;br /&gt;
&lt;br /&gt;
[[File:Purchase-the-book.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== Widget Bar 1 ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-35-32.png|467px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== Widget Bar 2 ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-39-29.png|470px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== Widget Bar 3 ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-40-43.png|470px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== Footer Module ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-41-54.png|466px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''4.''' Create a Page named say, &amp;lt;code&amp;gt;Home&amp;lt;/code&amp;gt; and select &amp;lt;code&amp;gt;Home&amp;lt;/code&amp;gt; layout for this in the &amp;lt;code&amp;gt;Custom Layout&amp;lt;/code&amp;gt; meta box. This page can be left blank.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-46-47.png|298px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''5.''' Go to Settings -&amp;gt; Reading. Set &amp;lt;code&amp;gt;Home&amp;lt;/code&amp;gt; as the Front page.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-48-19.png|489px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''6.''' Visit your site's homepage and you should see the basic structure similar to that of demo site. Hover on Builder in the top WordPress bar and click on &amp;lt;code&amp;gt;Manage Widgets for this Layout&amp;lt;/code&amp;gt;. Add your desired widgets in the sidebars.&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/BuilderChild-Air</id>
		<title>BuilderChild-Air</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/BuilderChild-Air"/>
				<updated>2013-05-15T12:05:38Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: Added == How to show Excerpts instead of full post content on Posts page ==&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
Builder Child Air is a new foundational or starter child theme for iThemes Builder. Whether you're using the Builder Style Manager or writing your own CSS, we hope Air will be a great new place to start when creating your custom responsive-ready Builder child themes. &lt;br /&gt;
&lt;br /&gt;
Builder child Air includes several convenient built-in features to help lay the groundwork for custom child theme creation. A few of Air's theme highlights include:&lt;br /&gt;
&lt;br /&gt;
* Built-in Mobile-Ready Menu Style&lt;br /&gt;
* Fully Optimized for Style Manager&lt;br /&gt;
* New Inset Module Styles&lt;br /&gt;
* Full Window Image Style&lt;br /&gt;
&lt;br /&gt;
[[File:Air 2013-04-12 09-33-58.png|291px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/air/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2013/04/04/introducing-air-a-new-foundation-child-theme-for-builder/ Blog entry announcing the release of Air]&lt;br /&gt;
&lt;br /&gt;
== How to Change the Appearance of Search ==&lt;br /&gt;
&lt;br /&gt;
Follow http://ithemes.com/2013/05/03/how-to-change-the-appearance-of-search-in-ithemes-builder-air-child-theme/&lt;br /&gt;
&lt;br /&gt;
== How to show Excerpts instead of full post content on Posts page ==&lt;br /&gt;
&lt;br /&gt;
'''1.''' Duplicate (using a FTP client or cPanel file manager)&lt;br /&gt;
&lt;br /&gt;
wp-content/themes/BuilderChild-Air/post-formats/content.php&lt;br /&gt;
&lt;br /&gt;
as &lt;br /&gt;
&lt;br /&gt;
wp-content/themes/BuilderChild-Air/post-formats/content-excerpt.php&lt;br /&gt;
&lt;br /&gt;
and edit &amp;lt;code&amp;gt;content-excerpt.php&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Replace&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php the_content( __( 'Read More &amp;amp;rarr;', 'it-l10n-BuilderChild-Air' ) ); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php the_excerpt(); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''2.''' Edit Air's &amp;lt;code&amp;gt;index.php&amp;lt;/code&amp;gt; and change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php get_template_part('post-formats/content', get_post_format()); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php get_template_part('post-formats/content-excerpt', get_post_format()); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That's it.&lt;br /&gt;
&lt;br /&gt;
If you would like to do the same in other views like Archives or Search, edit the [http://codex.wordpress.org/images/1/18/Template_Hierarchy.png appropriate files].&lt;br /&gt;
&lt;br /&gt;
== Item 4 ==&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/BuilderChild-Book-Nook</id>
		<title>BuilderChild-Book-Nook</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/BuilderChild-Book-Nook"/>
				<updated>2013-05-15T09:39:45Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: /* Header Module */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
Designed with authors in mind, the latest child theme for iThemes Builder will showcase your work perfectly.&lt;br /&gt;
&lt;br /&gt;
[[File:Book-Nook-2012-06-23-12-16-59.jpg|565px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/book-nook/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/06/22/new-child-theme-preview-book-nook/ Blog entry announcing the release of Book Nook]&lt;br /&gt;
&lt;br /&gt;
== How to set up homepage to look like demo site ==&lt;br /&gt;
&lt;br /&gt;
'''1.''' Create Pages. This will help in setting up nav bar since Pages will be listed in the next step.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Go to Appearance -&amp;gt; Menus. Create a menu named say &amp;lt;code&amp;gt;Main&amp;lt;/code&amp;gt; having your desired items (Pages, Categories, custom links etc).&lt;br /&gt;
&lt;br /&gt;
'''3.''' Create a layout named say, &amp;lt;code&amp;gt;Home&amp;lt;/code&amp;gt;. Width = 960px.&lt;br /&gt;
&lt;br /&gt;
Add modules in this order:&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-25-05.png|460px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== Navigation Module ===&lt;br /&gt;
&lt;br /&gt;
Select the menu created earlier in Navigation Type dropdown.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-32-41.png|576px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== Header Module ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-33-59.png|470px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
In the [http://demos.ithemes.com/book-nook/ demo site], an image is placed in a Widget Content widget in Header module's sidebar having the following code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://www.amazon.com/The-Entrepreneurial-Adventure-For-ebook/dp/B006UH274O&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;alignnone size-full wp-image-61&amp;quot; title=&amp;quot;purchase-small-ad&amp;quot; src=&amp;quot;http://demos.ithemes.com/book-nook/files/2012/06/purchase-small-ad.png&amp;quot; alt=&amp;quot;&amp;quot; height=&amp;quot;58&amp;quot; width=&amp;quot;411&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Instead of the image, if you would like to use HTML code so you can alter the price and change the &amp;quot;Purchase the Book&amp;quot; phrase, place the following in a text widget in the Header module's widget area:&lt;br /&gt;
&lt;br /&gt;
[http://pastebin.com/EVyVZFiu http://pastebin.com/EVyVZFiu]&lt;br /&gt;
&lt;br /&gt;
Change URL and any text in the above to your liking.&lt;br /&gt;
&lt;br /&gt;
Then add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
/*********************************************&lt;br /&gt;
    Purchase Button&lt;br /&gt;
*********************************************/&lt;br /&gt;
&lt;br /&gt;
.purchase-button a {&lt;br /&gt;
    display: block;&lt;br /&gt;
	border: 1px solid #000000;&lt;br /&gt;
	border-radius: 3px;&lt;br /&gt;
	background-color: #b35332;&lt;br /&gt;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(179, 83, 50)), to(rgb(123, 43, 16)));&lt;br /&gt;
	background-image: -webkit-linear-gradient(top, rgb(179, 83, 50), rgb(123, 43, 16));&lt;br /&gt;
	background-image: -moz-linear-gradient(top, rgb(179, 83, 50), rgb(123, 43, 16));&lt;br /&gt;
	background-image: -o-linear-gradient(top, rgb(179, 83, 50), rgb(123, 43, 16));&lt;br /&gt;
	background-image: -ms-linear-gradient(top, rgb(179, 83, 50), rgb(123, 43, 16));&lt;br /&gt;
	background-image: linear-gradient(top, rgb(179, 83, 50), rgb(123, 43, 16));&lt;br /&gt;
    padding: 0.5em 1.3em;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
&lt;br /&gt;
	-webkit-transition:  all .2s linear;&lt;br /&gt;
	-moz-transition:  all .2s linear 0s;&lt;br /&gt;
    max-width: 320px;&lt;br /&gt;
    width: 100%;&lt;br /&gt;
    text-align: center;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.purchase-button a:hover {&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.purchase-message {&lt;br /&gt;
    color: #FFFFFF;&lt;br /&gt;
    font-size: 1.4em;&lt;br /&gt;
    text-shadow: 1px 1px 3px #333;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.purchase-price {&lt;br /&gt;
    color: #35160c;&lt;br /&gt;
    font-size: 1.1em;&lt;br /&gt;
    padding-left: 0.5em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to get&lt;br /&gt;
&lt;br /&gt;
[[File:Purchase-the-book.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== Widget Bar 1 ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-35-32.png|467px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== Widget Bar 2 ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-39-29.png|470px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== Widget Bar 3 ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-40-43.png|470px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== Footer Module ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-41-54.png|466px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''4.''' Create a Page named say, &amp;lt;code&amp;gt;Home&amp;lt;/code&amp;gt; and select &amp;lt;code&amp;gt;Home&amp;lt;/code&amp;gt; layout for this in the &amp;lt;code&amp;gt;Custom Layout&amp;lt;/code&amp;gt; meta box. This page can be left blank.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-46-47.png|298px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''5.''' Go to Settings -&amp;gt; Reading. Set &amp;lt;code&amp;gt;Home&amp;lt;/code&amp;gt; as the Front page.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-12 19-48-19.png|489px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''6.''' Visit your site's homepage and you should see the basic structure similar to that of demo site. Hover on Builder in the top WordPress bar and click on &amp;lt;code&amp;gt;Manage Widgets for this Layout&amp;lt;/code&amp;gt;. Add your desired widgets in the sidebars.&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:Purchase-the-book.png</id>
		<title>File:Purchase-the-book.png</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:Purchase-the-book.png"/>
				<updated>2013-05-15T09:36:57Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/Builder_CSS_Guide</id>
		<title>Builder CSS Guide</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/Builder_CSS_Guide"/>
				<updated>2013-05-09T09:09:09Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: /* How to set up and use custom.css */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
While Style Manager makes it easy to make changes to your Builder site visually, to go in-depth and make different modules of the same kind look differently and to do advanced customizations theme's style.css should be edited.&lt;br /&gt;
&lt;br /&gt;
A knowledge of CSS and Firebug usage really helps. [http://getfirebug.com/ Firebug], a Firefox add-on is an awesome tool in figuring out element's classes, ID, padding, margin etc. Please install it in your Firefox before reading further.&lt;br /&gt;
&lt;br /&gt;
'''We have a series of videos on advanced CSS in Builder. Please watch them by clicking [http://ithemes.com/forum/index.php?/topic/925-builder-theme-advanced-css-free-training-videos/ here].'''&lt;br /&gt;
&lt;br /&gt;
Here are few recommended resources for CSS:&lt;br /&gt;
&lt;br /&gt;
*[http://www.brainjar.com/css/using/ BrainJar]&lt;br /&gt;
*[http://www.sitepoint.com/videos/videocss1/ The CSS Video Crash Course - SitePoint Videos]&lt;br /&gt;
*[http://www.w3schools.com/css/ w3schools]&lt;br /&gt;
&lt;br /&gt;
BuilderChild-Default has been taken as the active theme for the scope of this guide. However, most of the CSS applies to all Builder child themes.&lt;br /&gt;
&lt;br /&gt;
All CSS changes should be done in style.css of the active theme which should be a child theme of Builder. You can either edit already existing styles or write them at the very end. Generally we advise users to write custom styles at the end of child theme's style.css. [http://ithemes.com/forum/index.php?/topic/13320-padding-problem-with-widget/#p62262 This] forum post explains why.&lt;br /&gt;
&lt;br /&gt;
Because of the vast number of classes that Builder makes available, there are several ways of targeting the same element and hence the following is not the only way of going about it. There is more than one way to ''skin'' a cat.&lt;br /&gt;
&lt;br /&gt;
=== Videos ===&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59590792|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59609073|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59910487|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59590795|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59591441|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59591444|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59609072|640}}&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/tutorial/category/builder-css/&lt;br /&gt;
&lt;br /&gt;
=== CSS to target various elements of a Builder site ===&lt;br /&gt;
&lt;br /&gt;
The following information can also be obtained by viewing the source of the webpage or by using Firebug. The text on the left side is one of the classes (if preceded by a dot) or ID (if preceded by a hash) for body element.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.home&amp;lt;/code&amp;gt; - Homepage only&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.blog&amp;lt;/code&amp;gt; - Posts page only&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.page&amp;lt;/code&amp;gt; - All Pages&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.single-post&amp;lt;/code&amp;gt; - All single post entries&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.archive&amp;lt;/code&amp;gt; - Any category or date or tag archive page&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.category&amp;lt;/code&amp;gt; - All category archive pages&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.category-issues&amp;lt;/code&amp;gt; - Archive page of a specific category whose slug is &amp;quot;issues&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.category-18&amp;lt;/code&amp;gt; - Archive page of a specific category whose ID is 18&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.tag&amp;lt;/code&amp;gt; - Tag archive page&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.page-id-500&amp;lt;/code&amp;gt; - A specific Page whose ID is 500&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.postid-392&amp;lt;/code&amp;gt; - A specific Post whose ID is 391&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;#builder-layout-4e662c1838008&amp;lt;/code&amp;gt; - Any page that uses a layout whose ID is 4e662c1838008&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.search&amp;lt;/code&amp;gt; - Search results listing page&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-outer-wrapper&amp;lt;/code&amp;gt; - Outer wrapper of all modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-1-outer-wrapper&amp;lt;/code&amp;gt; : First module's outer wrapper&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-2-outer-wrapper&amp;lt;/code&amp;gt; : Second module's outer wrapper&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-header&amp;lt;/code&amp;gt; - All Header modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-header-1&amp;lt;/code&amp;gt; : First Header module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-header-2&amp;lt;/code&amp;gt; : Second Header module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-image&amp;lt;/code&amp;gt; - All Image modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-image-1&amp;lt;/code&amp;gt; : First Image module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-image-2&amp;lt;/code&amp;gt; : Second Image module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-navigation&amp;lt;/code&amp;gt; - All Navigation modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-navigation-1&amp;lt;/code&amp;gt; : First Navigation module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-navigation-2&amp;lt;/code&amp;gt; : Second Navigation module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-content&amp;lt;/code&amp;gt; - Content module&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-html&amp;lt;/code&amp;gt; - All HTML modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-html-1&amp;lt;/code&amp;gt; : First HTML module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-html-2&amp;lt;/code&amp;gt; : Second HTML module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-widget-bar&amp;lt;/code&amp;gt; - All Widget Bar modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-widget-bar-1&amp;lt;/code&amp;gt; : First Widget Bar module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-widget-bar-2&amp;lt;/code&amp;gt; : Second Widget Bar module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-footer&amp;lt;/code&amp;gt; - Footer module&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;#builder-module-4fc8af01e738b&amp;lt;/code&amp;gt; - A specific module whose ID is 4fc8af01e738b&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-top&amp;lt;/code&amp;gt; - Top most module in any page through out the site&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-last&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;.builder-module-bottom&amp;lt;/code&amp;gt; - Last/bottom most module in any page through out the site&lt;br /&gt;
&lt;br /&gt;
===To make the container touch the top edge of browser===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-container-outer-wrapper {&lt;br /&gt;
	margin-top: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Top-margin-container-before.png&lt;br /&gt;
File:Top-margin-container-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== To remove gap between each module ===&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-background-wrapper {&lt;br /&gt;
    margin-bottom: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=320px heights=199px&amp;gt;&lt;br /&gt;
File:Holistic Nutrition By Lisa 2013-01-25 09-16-09.png|Before&lt;br /&gt;
File:Holistic Nutrition By Lisa 2013-01-25 09-15-19.png|After&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: This only applies to Default child theme.&lt;br /&gt;
&lt;br /&gt;
===To remove the top and bottom borders for all modules===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: This only applies to Default child theme.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module {&lt;br /&gt;
	border-top: none;&lt;br /&gt;
	border-bottom: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:borders-for-modules-before.png&lt;br /&gt;
File:borders-for-modules-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===To target a specific module===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d396c72bbb6b {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Replace ''builder-module-4d396c72bbb6b'' with the ID of module in question on your site.&lt;br /&gt;
&lt;br /&gt;
[[Image:a-specific-module.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===Targeting modules based on their position in the layout===&lt;br /&gt;
&lt;br /&gt;
.builder-module-1 &amp;lt;-- First module&lt;br /&gt;
&lt;br /&gt;
.builder-module-2 &amp;lt;-- Second module&lt;br /&gt;
&lt;br /&gt;
.builder-module-3 &amp;lt;-- Last module&lt;br /&gt;
&lt;br /&gt;
and so on..&lt;br /&gt;
&lt;br /&gt;
.builder-module-top &amp;lt;-- Top most (first) module&lt;br /&gt;
&lt;br /&gt;
.builder-module-last or .builder-module-bottom &amp;lt;-- Last module&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
&lt;br /&gt;
To set background of first module transparent,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 {&lt;br /&gt;
	background: transparent;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To set all sidebars in first module transparent,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 .builder-module-sidebar {&lt;br /&gt;
	background: transparent;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===To set the height of a specific module===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d396c72bbb6e {&lt;br /&gt;
    height: 200px;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Replace ''builder-module-4d396c72bbb6e'' with the ID of module in question on your site.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:identifying-a-module.png&lt;br /&gt;
File:setting-module-height-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===To remove padding around a specific widget===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#text-3 {&lt;br /&gt;
	padding: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Replace ''text-3'' with the ID of widget in question on your site.&lt;br /&gt;
&lt;br /&gt;
[[Image:widget-padding.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
== Header Module ==&lt;br /&gt;
&lt;br /&gt;
Header module should be used when you would like to show site name and tagline. Site name and tagline will link to site URL. There is no provision to enter a image in this module.&lt;br /&gt;
&lt;br /&gt;
Following sample CSS can be used to set a background image for this module and to adjust the font size and colors of site name and tagline text. BuilderChild-Default is the active theme in the test site.&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
&lt;br /&gt;
[[File:Header-module-before.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
[[File:Header-module-after.jpg|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 {&lt;br /&gt;
    height: 150px;&lt;br /&gt;
    background: url(&amp;quot;images/header.jpg&amp;quot;) no-repeat;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.site-title, .site-title a, .site-tagline, .site-tagline a {&lt;br /&gt;
    color: #FFF;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.site-title a:hover, .site-tagline a:hover {&lt;br /&gt;
    color: #DDD;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.site-title {&lt;br /&gt;
    font-size: 3em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.site-tagline {&lt;br /&gt;
    font-size: 1.5em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: Change the name of image in background property line above to what you wish to use. In this example, header.jpg resides in child theme's images directory.&lt;br /&gt;
&lt;br /&gt;
=== How to hide top and bottom sidebars when using two adjacent sidebars ===&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-header .single {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/16676-header-module-2-right-sidebars-not-working/#p77664 Forum topic].&lt;br /&gt;
&lt;br /&gt;
==Navigation Module==&lt;br /&gt;
&lt;br /&gt;
===To target all nav bars===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===To target a specific nav bar===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d396c72bbb6b {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Replace ''builder-module-4d396c72bbb6b'' with the ID of navigation module in question on your site.&lt;br /&gt;
&lt;br /&gt;
[[Image:a-specific-module.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===To center the content of nav bar===&lt;br /&gt;
&lt;br /&gt;
[[File:Nav-menu-centered.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
The following code will allow you to absolutely center a menu (only the top level items will be centered), regardless of the number and width of the navigation items.&lt;br /&gt;
&lt;br /&gt;
(If you wish to align the top level menu items to the right, replace &amp;lt;code&amp;gt;margin: 0 auto;&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;float: right;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==== If you are using a WordPress 3 custom menu ====&lt;br /&gt;
&lt;br /&gt;
If you have created a menu using wp-dashboard &amp;gt; Appearance &amp;gt; Menu, and are using that menu in your navigation module:&lt;br /&gt;
&lt;br /&gt;
If the name is ''MainMenu'' in the navigation module, add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.menu-mainmenu-container {&lt;br /&gt;
    display: table;&lt;br /&gt;
    margin: 0 auto;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: In the above code, ''mainmenu'' must be replaced with the slug of your custom menu. Ex.: If the name of your custom menu is ''Primary Navigation'', then replace &amp;lt;code&amp;gt;.menu-mainmenu-container&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;.menu-primary-navigation-container&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
'''In most cases, this more generic (so independent of the menu name) code will accomplish the same:'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation-menu-wrapper {&lt;br /&gt;
    display: table;&lt;br /&gt;
    margin: 0 auto;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== If you are using the Builder settings menu ====&lt;br /&gt;
&lt;br /&gt;
If you are using a &amp;quot;Legacy Menu Type&amp;quot; (a menu created using wp-dashboard &amp;gt; My Theme &amp;gt; Settings &amp;gt; Menu Builder) in your navigation module, &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation .builder-module-navigation-menu-wrapper {&lt;br /&gt;
    display: table;&lt;br /&gt;
    margin: 0 auto;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== For all other types of navigation module ====&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation .builder-module-element {&lt;br /&gt;
    margin-left: 310px;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
# In the above code, the left margin value has to be changed depending on width of menu.&lt;br /&gt;
# The above code applies to all navigation modules in the layouts. If you would like to apply it to a specific navigation module, replace &amp;lt;code&amp;gt;.builder-module-navigation&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;#builder-module-4e1585dc84fa3&amp;lt;/code&amp;gt; where builder-module-4e1585dc84fa3 is the ID of navigation module div.&lt;br /&gt;
# This method can also be used for a navigation module which displays a custom menu.&lt;br /&gt;
&lt;br /&gt;
[[File:Module-id.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Example of another slightly different code to do the same: http://ithemes.com/forum/index.php?/topic/11617-centering-custom-menu-in-navigation-bar/#p54464&lt;br /&gt;
&lt;br /&gt;
=== To right align the nav menu ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-31 14-31-45.png|798px|thumb|none|Before]]&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-31 14-30-48.png|800px|thumb|none|After]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation .builder-module-element {&lt;br /&gt;
    float: right;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Image Module==&lt;br /&gt;
&lt;br /&gt;
=== How to center image in Image Module ===&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
&lt;br /&gt;
[[File:WordPress Dev Site - before.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
[[File:WordPress Dev Site.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 .builder-module-element img {&lt;br /&gt;
	margin: 0 auto;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Change 1 in &amp;lt;code&amp;gt;.builder-module-1&amp;lt;/code&amp;gt; to the position of your Image module from the top in layout.&lt;br /&gt;
&lt;br /&gt;
==HTML Module==&lt;br /&gt;
&lt;br /&gt;
=== Targeting various sections of a HTML module having 2 adjacent sidebars ===&lt;br /&gt;
&lt;br /&gt;
==== Outer wrappers ====&lt;br /&gt;
&lt;br /&gt;
Top widget outer wrapper: #builder-module-4fe44d1c159e4 .widget-outer-wrapper-top&lt;br /&gt;
&lt;br /&gt;
Middle widget outer wrapper container: #builder-module-4fe44d1c159e4 .widget-section-wrapper (If setting background for this, background will not be visible unless &amp;quot;float: left;&amp;quot; is also applied)&lt;br /&gt;
&lt;br /&gt;
Middle widget outer wrappers: #builder-module-4fe44d1c159e4 .widget-section-wrapper .widget-outer-wrapper&lt;br /&gt;
&lt;br /&gt;
Left widget outer wrapper: #builder-module-4fe44d1c159e4 .widget-outer-wrapper-left&lt;br /&gt;
&lt;br /&gt;
Right widget outer wrapper: #builder-module-4fe44d1c159e4 .widget-outer-wrapper-right&lt;br /&gt;
&lt;br /&gt;
Bottom widget outer wrapper: #builder-module-4fe44d1c159e4 .widget-outer-wrapper-bottom&lt;br /&gt;
&lt;br /&gt;
[[File:2012-06-22 16-25-09.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
==== Wrappers ====&lt;br /&gt;
&lt;br /&gt;
Top widget wrapper: #builder-module-4fe44d1c159e4 .widget-wrapper-top&lt;br /&gt;
&lt;br /&gt;
Bottom widget wrapper: #builder-module-4fe44d1c159e4 .widget-wrapper-bottom&lt;br /&gt;
&lt;br /&gt;
Top and bottom widget wrapper: #builder-module-4fe44d1c159e4 .single&lt;br /&gt;
&lt;br /&gt;
Wrappers of all widgets in the module: #builder-module-4fe44d1c159e4 .widget-wrapper&lt;br /&gt;
&lt;br /&gt;
Left widget wrapper: #builder-module-4fe44d1c159e4 .widget-wrapper-left&lt;br /&gt;
&lt;br /&gt;
Right widget wrapper: #builder-module-4fe44d1c159e4 .widget-wrapper-right&lt;br /&gt;
&lt;br /&gt;
==== Widgets ====&lt;br /&gt;
&lt;br /&gt;
Top widget: #builder-module-4fe44d1c159e4 .widget-wrapper-top .widget&lt;br /&gt;
&lt;br /&gt;
Bottom widget: #builder-module-4fe44d1c159e4 .widget-wrapper-bottom .widget&lt;br /&gt;
&lt;br /&gt;
Top and bottom widgets: #builder-module-4fe44d1c159e4 .single .widget&lt;br /&gt;
&lt;br /&gt;
Left widget: #builder-module-4fe44d1c159e4 .widget-wrapper-left .widget&lt;br /&gt;
&lt;br /&gt;
Right widget: #builder-module-4fe44d1c159e4 .widget-wrapper-right .widget&lt;br /&gt;
&lt;br /&gt;
Left and right widgets: #builder-module-4fe44d1c159e4 .widget-section-wrapper .widget&lt;br /&gt;
&lt;br /&gt;
'''Note: In the above replace &amp;quot;builder-module-4fe44d1c159e4&amp;quot; with the CSS ID of HTML module in question.'''&lt;br /&gt;
&lt;br /&gt;
==Widget Bar Module==&lt;br /&gt;
&lt;br /&gt;
===Targeting the full widget bar===&lt;br /&gt;
&lt;br /&gt;
To target all widget bars:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-widget-bar {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target a specific widget bar:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where ''builder-module-4d3956642cc05'' is the ID of widget bar module in question. The easiest way to obtain a module's ID is by inspecting the element with Firebug.&lt;br /&gt;
&lt;br /&gt;
[[Image:Specific-widget-bar-module.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===Targeting all the individual widgets globally===&lt;br /&gt;
&lt;br /&gt;
To target all individual widgets of all widget bars:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-widget-bar .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target all the individual widgets of a specific widget bar:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where ''builder-module-4d3956642cc05'' is the ID of widget bar module in question. The easiest way to obtain a module's ID is by inspecting the element with Firebug.&lt;br /&gt;
&lt;br /&gt;
===Targeting a specific widget===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#text-3 {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where text-3 is the ID of widget in question. The easiest way to obtain a module's ID is by inspecting the element with Firebug.&lt;br /&gt;
&lt;br /&gt;
[[Image:Specific-widget.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===How to make all widgets of a widget bar module equal height===&lt;br /&gt;
&lt;br /&gt;
Here's a video which explains how you can use Firebug to set height of a single widget and all then all widgets of the module so they have the same height: http://ithemes.com/screencasts/builder/height-of-widgets/&lt;br /&gt;
&lt;br /&gt;
The general idea is to obtain the height of tallest widget in the module from 'Computed' tab in Firebug and write CSS like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4ddb5b00e3efd .widget {&lt;br /&gt;
	height: 100px; /* Set this value to height of tallest widget */&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Change builder-module-4ddb5b00e3efd to ID of module in question.&lt;br /&gt;
&lt;br /&gt;
===2-widget widget bar===&lt;br /&gt;
&lt;br /&gt;
The CSS below applies to a specific widget bar having a ID of ''builder-module-4d3956642cc05''. The easiest way to obtain a module's ID is by inspecting the element with Firebug. If all widget bar modules are to be targeted, ''.builder-module-widget-bar'' should be used instead of ''#builder-module-4d3956642cc05''.&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''left widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .left .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''right widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .right .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===3-widget widget bar===&lt;br /&gt;
&lt;br /&gt;
The CSS below applies to a specific widget bar having a ID of ''builder-module-4d3956642cc05''. The easiest way to obtain a module's ID is by inspecting the element with Firebug. If all widget bar modules are to be targeted, ''.builder-module-widget-bar'' should be used instead of ''#builder-module-4d3956642cc05''.&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''left widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .left .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''middle widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .middle .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''right widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .right .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===4-widget widget bar===&lt;br /&gt;
&lt;br /&gt;
The CSS below applies to a specific widget bar having a ID of ''builder-module-4d3956642cc05''. The easiest way to obtain a module's ID is by inspecting the element with Firebug. If all widget bar modules are to be targeted, ''.builder-module-widget-bar'' should be used instead of ''#builder-module-4d3956642cc05''.&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''left most widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .left .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''second widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-2 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''third widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-3 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''right most widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .right .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===5-widget widget bar===&lt;br /&gt;
&lt;br /&gt;
The CSS below applies to a specific widget bar having a ID of ''builder-module-4d3956642cc05''. The easiest way to obtain a module's ID is by inspecting the element with Firebug. If all widget bar modules are to be targeted, ''.builder-module-widget-bar'' should be used instead of ''#builder-module-4d3956642cc05''.&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''left most widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .left .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''second widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-2 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''third widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-3 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''fourth widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-4 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''right most widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .right .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Content Module==&lt;br /&gt;
&lt;br /&gt;
===Introduction===&lt;br /&gt;
&lt;br /&gt;
.builder-module-content consists of .builder-module-element + 1 or more .builder-module-sidebar.&lt;br /&gt;
&lt;br /&gt;
The actual area where the content gets displayed is .builder-module-element and the wrapper for this is .builder-module-element-outer-wrapper.&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
To change the background of actual content area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Content-element-wrapper-background-before.png&lt;br /&gt;
File:Content-element-wrapper-background-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-content .builder-module-element-outer-wrapper {&lt;br /&gt;
	background: #f2f4fd;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Removing top and bottom horizontal widget sections when content module is set to have 2 adjacent sidebars===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:2-adjacent-sidebars-before.png&lt;br /&gt;
File:2-adjacent-sidebars-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of your theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-content .widget-outer-wrapper-top, .builder-module-content .widget-outer-wrapper-bottom {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Footer Module==&lt;br /&gt;
&lt;br /&gt;
Before: [[Image:Footer-before.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
After: [[Image:Footer-after.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-footer {&lt;br /&gt;
	margin-top: 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-footer .builder-module-element {&lt;br /&gt;
	color: #FFFFFF;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-footer .builder-module-element a {&lt;br /&gt;
	color: #7eabc1;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Defining the scope==&lt;br /&gt;
&lt;br /&gt;
By default, style rules apply to all sections of the site. For a finer and granular control, it is possible to restrict the style rules to:&lt;br /&gt;
&lt;br /&gt;
*Home (i.e, site's front page)&lt;br /&gt;
*Posts page&lt;br /&gt;
*All Pages&lt;br /&gt;
*A layout&lt;br /&gt;
*A specific Page&lt;br /&gt;
*All posts&lt;br /&gt;
*A specific post&lt;br /&gt;
*All archives and category listings&lt;br /&gt;
*A specific category&lt;br /&gt;
&lt;br /&gt;
=== Homepage or Front page ===&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;.home&amp;lt;/code&amp;gt; selector to restrict CSS to the site's front page.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.home h1.entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
gets rid of the title only on homepage.&lt;br /&gt;
&lt;br /&gt;
=== Posts (blog) page ===&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;blog&amp;lt;/code&amp;gt; selector.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.blog .builder-module-content .hentry {&lt;br /&gt;
    margin-top: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== All static Pages ===&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;.page&amp;lt;/code&amp;gt; selector.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page .entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: When front page is set to show a static Page, front page (or homepage) will also have the &amp;quot;home&amp;quot; body class.&lt;br /&gt;
&lt;br /&gt;
===A specific page===&lt;br /&gt;
&lt;br /&gt;
==== How to get rid of title for a specific Page ====&lt;br /&gt;
&lt;br /&gt;
To remove the title of a Page whose ID is say, 47, add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page-id-47 .entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace &amp;lt;code&amp;gt;page-id-47&amp;lt;/code&amp;gt; with the body class of Page in your site. This can be obtained using Firebug.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-08-03 10-44-54.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
===='''To set a background color to a specific page'''====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page-id-2 {&lt;br /&gt;
	background-color: #333333;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The above sets the background color of body element in a page whose ID is 2 to #333333.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:page-background-before.png&lt;br /&gt;
File:page-background-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
IDs of Pages and posts can be obtained in the following ways:&lt;br /&gt;
&lt;br /&gt;
*Examining the body element using Firebug&lt;br /&gt;
[[Image:id-from-firebug.png|200px|none]]&lt;br /&gt;
*Placing cursor on the Page/post title in edit screen and observing the number in the browser status bar&lt;br /&gt;
[[Image:id-in-status-bar.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===='''To set a background color to mutiple pages'''====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page-id-2, .page-id-4 {&lt;br /&gt;
	background-color: #333333;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The above sets the background color of body element in a page whose ID is 2 and to body element in another page whose ID is 4.&lt;br /&gt;
&lt;br /&gt;
====To remove border around images only on certain Pages====&lt;br /&gt;
&lt;br /&gt;
To remove border around images only on Pages having IDs 2 and 6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page-id-2 .hentry img, .page-id-6 .hentry img {&lt;br /&gt;
    border: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== A specific layout ===&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-layout-4fe44cd68bddb .builder-module-content {&lt;br /&gt;
    background: #333;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;quot;builder-layout-4fe44cd68bddb&amp;quot; is the ID of body element of any webpage that uses this layout.&lt;br /&gt;
&lt;br /&gt;
Firebug can be used to obtain this ID.&lt;br /&gt;
&lt;br /&gt;
[[Image:Snapshot 20-09-12 6-31 PM.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
==Miscellaneous==&lt;br /&gt;
&lt;br /&gt;
===How to make second line in list item to be indented to match up with the text===&lt;br /&gt;
&lt;br /&gt;
Before: [[File:Indenting-second-line-list-before.png]]&lt;br /&gt;
&lt;br /&gt;
After: [[File:Indenting-second-line-list-after.png]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.widget ul {&lt;br /&gt;
    list-style-position: inside;&lt;br /&gt;
    margin-left: 0;&lt;br /&gt;
    padding-left: 1em;&lt;br /&gt;
    text-indent: -1em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Tuesday, August 23, 2011 Update'''&lt;br /&gt;
&lt;br /&gt;
Fix for IE: http://ithemes.com/forum/index.php?/topic/14646-i-need-to-adjust-text-alignment-in-side-widgets/#p81837&lt;br /&gt;
&lt;br /&gt;
Thanks to: Ronald.&lt;br /&gt;
&lt;br /&gt;
===How to hide titles on all Pages===&lt;br /&gt;
&lt;br /&gt;
Ensure that [http://www.doitwithwp.com/how-to-change-your-permalink-structure-without-breaking-your-links/ pretty permalinks] are enabled.&lt;br /&gt;
&lt;br /&gt;
When you are using Builder 3.0 and a corresponding LoopBuddy compatible theme like the current (as of Monday, July 11, 2011) Builder child themes, adding the following at end of child theme's style.css will hide Page titles:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.page .entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For pre-Builder 3.0, use this CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.page .title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===How to hide title on homepage only===&lt;br /&gt;
&lt;br /&gt;
When Builder 3.0 and a corresponding LoopBuddy compatible theme like the current (as of Monday, July 11, 2011) Builder child themes are being used, adding the following at end of child theme's style.css will hide Page title on homepage:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.home .entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For pre-Builder 3.0, use this CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.home .title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== How to get rid of top and bottom sidebars in all modules ===&lt;br /&gt;
&lt;br /&gt;
When a module has 2 adjacent sidebars (either left or right), a top wide sidebar and bottom wide sidebar will automatically be added. These will not appear on the site for visitors as long as they are empty (i.e., not populated with widgets).&lt;br /&gt;
&lt;br /&gt;
If you would still like to remove them, add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module .widget-outer-wrapper-top, .builder-module .widget-outer-wrapper-bottom {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== How to add and use a font from a .ttf file ===&lt;br /&gt;
&lt;br /&gt;
In this example we are going to download a free font from http://www.dafont.com/ and use it in a Builder site.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Download your desired font. Extract the zip file to get the .ttf file.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Go to http://www.fontsquirrel.com/fontface/generator. Click &amp;lt;code&amp;gt;Add Fonts&amp;lt;/code&amp;gt;, browse to and select the .ttf file that you downloaded.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Place a tick mark to the left of &amp;quot;Yes, the fonts I'm uploading are legally eligible for web embedding.&amp;quot; and click &amp;lt;code&amp;gt;Download Your Kit&amp;lt;/code&amp;gt; and save the zip file.&lt;br /&gt;
&lt;br /&gt;
'''4.''' Extract the zip file to get a folder having files with different extensions. Upload .ttf, .eot, .svg, .woff files to child theme's directory using a FTP client or cPanel file manager.&lt;br /&gt;
&lt;br /&gt;
'''5.''' Open stylesheet.css, copy all the code similar to the following and paste at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor)&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on September 17, 2012 */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
@font-face {&lt;br /&gt;
    font-family: 'last_king_questregular';&lt;br /&gt;
    src: url('last_king_quest-webfont.eot');&lt;br /&gt;
    src: url('last_king_quest-webfont.eot?#iefix') format('embedded-opentype'),&lt;br /&gt;
         url('last_king_quest-webfont.woff') format('woff'),&lt;br /&gt;
         url('last_king_quest-webfont.ttf') format('truetype'),&lt;br /&gt;
         url('last_king_quest-webfont.svg#last_king_questregular') format('svg');&lt;br /&gt;
    font-weight: normal;&lt;br /&gt;
    font-style: normal;&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''6.''' Open .html file in the extracted folder in a text editor and copy a line similar to&lt;br /&gt;
&lt;br /&gt;
(for example)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;font-family: 'last_king_questregular';&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will be found between &amp;lt;code&amp;gt;&amp;lt;head&amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;lt;/head&amp;gt;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
'''7.''' Paste this line for the CSS selector of your choice.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
h1 {&lt;br /&gt;
    font-family: 'last_king_questregular';&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That's it!&lt;br /&gt;
&lt;br /&gt;
=== How to set up and use &amp;lt;code&amp;gt;custom.css&amp;lt;/code&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
If you would like to place all your custom CSS code in a separate file named, say, &amp;lt;code&amp;gt;custom.css&amp;lt;/code&amp;gt;, do the following.&lt;br /&gt;
&lt;br /&gt;
The advantages of doing this over editing the styles inline in style.css or writing at the end of style.css is that all your CSS customizations will be in one file. This file can easily be backed up and used again as needed when updating the child theme (Note however that 99 times out of 100, one does not update child themes). Also it will help the support personnel help you better as the style changes will all be in one place and not inline.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Create a file named &amp;lt;code&amp;gt;custom.css&amp;lt;/code&amp;gt; and upload it to active theme directory.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Add the following at the end of active theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
function my_custom_styles() {&lt;br /&gt;
  wp_enqueue_style( 'custom-style', get_stylesheet_directory_uri() . '/custom.css', '1.0.0', 'all' );&lt;br /&gt;
}&lt;br /&gt;
add_action('wp_enqueue_scripts', 'my_custom_styles');&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ref.: http://codex.wordpress.org/Function_Reference/wp_enqueue_style&lt;br /&gt;
&lt;br /&gt;
'''3.''' Place your custom CSS code in custom.css. This file will be available for editing at Appearance -&amp;gt; Editor.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 Note: Make sure to take a back-up of your customized custom.css when [http://ithemes.com/codex/page/Builder_Child_Themes#How_to_update_a_child_theme updating your active child theme].&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/topic/36721-why-has-ithemes-not-upgraded-to-wordpress-35/#entry169383&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/Builder_CSS_Guide</id>
		<title>Builder CSS Guide</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/Builder_CSS_Guide"/>
				<updated>2013-05-09T04:11:37Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: /* How to set up and use custom.css */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
While Style Manager makes it easy to make changes to your Builder site visually, to go in-depth and make different modules of the same kind look differently and to do advanced customizations theme's style.css should be edited.&lt;br /&gt;
&lt;br /&gt;
A knowledge of CSS and Firebug usage really helps. [http://getfirebug.com/ Firebug], a Firefox add-on is an awesome tool in figuring out element's classes, ID, padding, margin etc. Please install it in your Firefox before reading further.&lt;br /&gt;
&lt;br /&gt;
'''We have a series of videos on advanced CSS in Builder. Please watch them by clicking [http://ithemes.com/forum/index.php?/topic/925-builder-theme-advanced-css-free-training-videos/ here].'''&lt;br /&gt;
&lt;br /&gt;
Here are few recommended resources for CSS:&lt;br /&gt;
&lt;br /&gt;
*[http://www.brainjar.com/css/using/ BrainJar]&lt;br /&gt;
*[http://www.sitepoint.com/videos/videocss1/ The CSS Video Crash Course - SitePoint Videos]&lt;br /&gt;
*[http://www.w3schools.com/css/ w3schools]&lt;br /&gt;
&lt;br /&gt;
BuilderChild-Default has been taken as the active theme for the scope of this guide. However, most of the CSS applies to all Builder child themes.&lt;br /&gt;
&lt;br /&gt;
All CSS changes should be done in style.css of the active theme which should be a child theme of Builder. You can either edit already existing styles or write them at the very end. Generally we advise users to write custom styles at the end of child theme's style.css. [http://ithemes.com/forum/index.php?/topic/13320-padding-problem-with-widget/#p62262 This] forum post explains why.&lt;br /&gt;
&lt;br /&gt;
Because of the vast number of classes that Builder makes available, there are several ways of targeting the same element and hence the following is not the only way of going about it. There is more than one way to ''skin'' a cat.&lt;br /&gt;
&lt;br /&gt;
=== Videos ===&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59590792|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59609073|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59910487|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59590795|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59591441|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59591444|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59609072|640}}&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/tutorial/category/builder-css/&lt;br /&gt;
&lt;br /&gt;
=== CSS to target various elements of a Builder site ===&lt;br /&gt;
&lt;br /&gt;
The following information can also be obtained by viewing the source of the webpage or by using Firebug. The text on the left side is one of the classes (if preceded by a dot) or ID (if preceded by a hash) for body element.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.home&amp;lt;/code&amp;gt; - Homepage only&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.blog&amp;lt;/code&amp;gt; - Posts page only&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.page&amp;lt;/code&amp;gt; - All Pages&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.single-post&amp;lt;/code&amp;gt; - All single post entries&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.archive&amp;lt;/code&amp;gt; - Any category or date or tag archive page&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.category&amp;lt;/code&amp;gt; - All category archive pages&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.category-issues&amp;lt;/code&amp;gt; - Archive page of a specific category whose slug is &amp;quot;issues&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.category-18&amp;lt;/code&amp;gt; - Archive page of a specific category whose ID is 18&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.tag&amp;lt;/code&amp;gt; - Tag archive page&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.page-id-500&amp;lt;/code&amp;gt; - A specific Page whose ID is 500&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.postid-392&amp;lt;/code&amp;gt; - A specific Post whose ID is 391&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;#builder-layout-4e662c1838008&amp;lt;/code&amp;gt; - Any page that uses a layout whose ID is 4e662c1838008&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.search&amp;lt;/code&amp;gt; - Search results listing page&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-outer-wrapper&amp;lt;/code&amp;gt; - Outer wrapper of all modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-1-outer-wrapper&amp;lt;/code&amp;gt; : First module's outer wrapper&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-2-outer-wrapper&amp;lt;/code&amp;gt; : Second module's outer wrapper&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-header&amp;lt;/code&amp;gt; - All Header modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-header-1&amp;lt;/code&amp;gt; : First Header module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-header-2&amp;lt;/code&amp;gt; : Second Header module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-image&amp;lt;/code&amp;gt; - All Image modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-image-1&amp;lt;/code&amp;gt; : First Image module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-image-2&amp;lt;/code&amp;gt; : Second Image module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-navigation&amp;lt;/code&amp;gt; - All Navigation modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-navigation-1&amp;lt;/code&amp;gt; : First Navigation module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-navigation-2&amp;lt;/code&amp;gt; : Second Navigation module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-content&amp;lt;/code&amp;gt; - Content module&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-html&amp;lt;/code&amp;gt; - All HTML modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-html-1&amp;lt;/code&amp;gt; : First HTML module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-html-2&amp;lt;/code&amp;gt; : Second HTML module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-widget-bar&amp;lt;/code&amp;gt; - All Widget Bar modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-widget-bar-1&amp;lt;/code&amp;gt; : First Widget Bar module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-widget-bar-2&amp;lt;/code&amp;gt; : Second Widget Bar module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-footer&amp;lt;/code&amp;gt; - Footer module&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;#builder-module-4fc8af01e738b&amp;lt;/code&amp;gt; - A specific module whose ID is 4fc8af01e738b&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-top&amp;lt;/code&amp;gt; - Top most module in any page through out the site&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-last&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;.builder-module-bottom&amp;lt;/code&amp;gt; - Last/bottom most module in any page through out the site&lt;br /&gt;
&lt;br /&gt;
===To make the container touch the top edge of browser===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-container-outer-wrapper {&lt;br /&gt;
	margin-top: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Top-margin-container-before.png&lt;br /&gt;
File:Top-margin-container-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== To remove gap between each module ===&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-background-wrapper {&lt;br /&gt;
    margin-bottom: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=320px heights=199px&amp;gt;&lt;br /&gt;
File:Holistic Nutrition By Lisa 2013-01-25 09-16-09.png|Before&lt;br /&gt;
File:Holistic Nutrition By Lisa 2013-01-25 09-15-19.png|After&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: This only applies to Default child theme.&lt;br /&gt;
&lt;br /&gt;
===To remove the top and bottom borders for all modules===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: This only applies to Default child theme.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module {&lt;br /&gt;
	border-top: none;&lt;br /&gt;
	border-bottom: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:borders-for-modules-before.png&lt;br /&gt;
File:borders-for-modules-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===To target a specific module===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d396c72bbb6b {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Replace ''builder-module-4d396c72bbb6b'' with the ID of module in question on your site.&lt;br /&gt;
&lt;br /&gt;
[[Image:a-specific-module.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===Targeting modules based on their position in the layout===&lt;br /&gt;
&lt;br /&gt;
.builder-module-1 &amp;lt;-- First module&lt;br /&gt;
&lt;br /&gt;
.builder-module-2 &amp;lt;-- Second module&lt;br /&gt;
&lt;br /&gt;
.builder-module-3 &amp;lt;-- Last module&lt;br /&gt;
&lt;br /&gt;
and so on..&lt;br /&gt;
&lt;br /&gt;
.builder-module-top &amp;lt;-- Top most (first) module&lt;br /&gt;
&lt;br /&gt;
.builder-module-last or .builder-module-bottom &amp;lt;-- Last module&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
&lt;br /&gt;
To set background of first module transparent,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 {&lt;br /&gt;
	background: transparent;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To set all sidebars in first module transparent,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 .builder-module-sidebar {&lt;br /&gt;
	background: transparent;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===To set the height of a specific module===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d396c72bbb6e {&lt;br /&gt;
    height: 200px;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Replace ''builder-module-4d396c72bbb6e'' with the ID of module in question on your site.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:identifying-a-module.png&lt;br /&gt;
File:setting-module-height-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===To remove padding around a specific widget===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#text-3 {&lt;br /&gt;
	padding: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Replace ''text-3'' with the ID of widget in question on your site.&lt;br /&gt;
&lt;br /&gt;
[[Image:widget-padding.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
== Header Module ==&lt;br /&gt;
&lt;br /&gt;
Header module should be used when you would like to show site name and tagline. Site name and tagline will link to site URL. There is no provision to enter a image in this module.&lt;br /&gt;
&lt;br /&gt;
Following sample CSS can be used to set a background image for this module and to adjust the font size and colors of site name and tagline text. BuilderChild-Default is the active theme in the test site.&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
&lt;br /&gt;
[[File:Header-module-before.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
[[File:Header-module-after.jpg|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 {&lt;br /&gt;
    height: 150px;&lt;br /&gt;
    background: url(&amp;quot;images/header.jpg&amp;quot;) no-repeat;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.site-title, .site-title a, .site-tagline, .site-tagline a {&lt;br /&gt;
    color: #FFF;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.site-title a:hover, .site-tagline a:hover {&lt;br /&gt;
    color: #DDD;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.site-title {&lt;br /&gt;
    font-size: 3em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.site-tagline {&lt;br /&gt;
    font-size: 1.5em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: Change the name of image in background property line above to what you wish to use. In this example, header.jpg resides in child theme's images directory.&lt;br /&gt;
&lt;br /&gt;
=== How to hide top and bottom sidebars when using two adjacent sidebars ===&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-header .single {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/16676-header-module-2-right-sidebars-not-working/#p77664 Forum topic].&lt;br /&gt;
&lt;br /&gt;
==Navigation Module==&lt;br /&gt;
&lt;br /&gt;
===To target all nav bars===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===To target a specific nav bar===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d396c72bbb6b {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Replace ''builder-module-4d396c72bbb6b'' with the ID of navigation module in question on your site.&lt;br /&gt;
&lt;br /&gt;
[[Image:a-specific-module.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===To center the content of nav bar===&lt;br /&gt;
&lt;br /&gt;
[[File:Nav-menu-centered.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
The following code will allow you to absolutely center a menu (only the top level items will be centered), regardless of the number and width of the navigation items.&lt;br /&gt;
&lt;br /&gt;
(If you wish to align the top level menu items to the right, replace &amp;lt;code&amp;gt;margin: 0 auto;&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;float: right;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==== If you are using a WordPress 3 custom menu ====&lt;br /&gt;
&lt;br /&gt;
If you have created a menu using wp-dashboard &amp;gt; Appearance &amp;gt; Menu, and are using that menu in your navigation module:&lt;br /&gt;
&lt;br /&gt;
If the name is ''MainMenu'' in the navigation module, add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.menu-mainmenu-container {&lt;br /&gt;
    display: table;&lt;br /&gt;
    margin: 0 auto;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: In the above code, ''mainmenu'' must be replaced with the slug of your custom menu. Ex.: If the name of your custom menu is ''Primary Navigation'', then replace &amp;lt;code&amp;gt;.menu-mainmenu-container&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;.menu-primary-navigation-container&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
'''In most cases, this more generic (so independent of the menu name) code will accomplish the same:'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation-menu-wrapper {&lt;br /&gt;
    display: table;&lt;br /&gt;
    margin: 0 auto;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== If you are using the Builder settings menu ====&lt;br /&gt;
&lt;br /&gt;
If you are using a &amp;quot;Legacy Menu Type&amp;quot; (a menu created using wp-dashboard &amp;gt; My Theme &amp;gt; Settings &amp;gt; Menu Builder) in your navigation module, &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation .builder-module-navigation-menu-wrapper {&lt;br /&gt;
    display: table;&lt;br /&gt;
    margin: 0 auto;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== For all other types of navigation module ====&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation .builder-module-element {&lt;br /&gt;
    margin-left: 310px;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
# In the above code, the left margin value has to be changed depending on width of menu.&lt;br /&gt;
# The above code applies to all navigation modules in the layouts. If you would like to apply it to a specific navigation module, replace &amp;lt;code&amp;gt;.builder-module-navigation&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;#builder-module-4e1585dc84fa3&amp;lt;/code&amp;gt; where builder-module-4e1585dc84fa3 is the ID of navigation module div.&lt;br /&gt;
# This method can also be used for a navigation module which displays a custom menu.&lt;br /&gt;
&lt;br /&gt;
[[File:Module-id.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Example of another slightly different code to do the same: http://ithemes.com/forum/index.php?/topic/11617-centering-custom-menu-in-navigation-bar/#p54464&lt;br /&gt;
&lt;br /&gt;
=== To right align the nav menu ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-31 14-31-45.png|798px|thumb|none|Before]]&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-31 14-30-48.png|800px|thumb|none|After]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation .builder-module-element {&lt;br /&gt;
    float: right;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Image Module==&lt;br /&gt;
&lt;br /&gt;
=== How to center image in Image Module ===&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
&lt;br /&gt;
[[File:WordPress Dev Site - before.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
[[File:WordPress Dev Site.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 .builder-module-element img {&lt;br /&gt;
	margin: 0 auto;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Change 1 in &amp;lt;code&amp;gt;.builder-module-1&amp;lt;/code&amp;gt; to the position of your Image module from the top in layout.&lt;br /&gt;
&lt;br /&gt;
==HTML Module==&lt;br /&gt;
&lt;br /&gt;
=== Targeting various sections of a HTML module having 2 adjacent sidebars ===&lt;br /&gt;
&lt;br /&gt;
==== Outer wrappers ====&lt;br /&gt;
&lt;br /&gt;
Top widget outer wrapper: #builder-module-4fe44d1c159e4 .widget-outer-wrapper-top&lt;br /&gt;
&lt;br /&gt;
Middle widget outer wrapper container: #builder-module-4fe44d1c159e4 .widget-section-wrapper (If setting background for this, background will not be visible unless &amp;quot;float: left;&amp;quot; is also applied)&lt;br /&gt;
&lt;br /&gt;
Middle widget outer wrappers: #builder-module-4fe44d1c159e4 .widget-section-wrapper .widget-outer-wrapper&lt;br /&gt;
&lt;br /&gt;
Left widget outer wrapper: #builder-module-4fe44d1c159e4 .widget-outer-wrapper-left&lt;br /&gt;
&lt;br /&gt;
Right widget outer wrapper: #builder-module-4fe44d1c159e4 .widget-outer-wrapper-right&lt;br /&gt;
&lt;br /&gt;
Bottom widget outer wrapper: #builder-module-4fe44d1c159e4 .widget-outer-wrapper-bottom&lt;br /&gt;
&lt;br /&gt;
[[File:2012-06-22 16-25-09.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
==== Wrappers ====&lt;br /&gt;
&lt;br /&gt;
Top widget wrapper: #builder-module-4fe44d1c159e4 .widget-wrapper-top&lt;br /&gt;
&lt;br /&gt;
Bottom widget wrapper: #builder-module-4fe44d1c159e4 .widget-wrapper-bottom&lt;br /&gt;
&lt;br /&gt;
Top and bottom widget wrapper: #builder-module-4fe44d1c159e4 .single&lt;br /&gt;
&lt;br /&gt;
Wrappers of all widgets in the module: #builder-module-4fe44d1c159e4 .widget-wrapper&lt;br /&gt;
&lt;br /&gt;
Left widget wrapper: #builder-module-4fe44d1c159e4 .widget-wrapper-left&lt;br /&gt;
&lt;br /&gt;
Right widget wrapper: #builder-module-4fe44d1c159e4 .widget-wrapper-right&lt;br /&gt;
&lt;br /&gt;
==== Widgets ====&lt;br /&gt;
&lt;br /&gt;
Top widget: #builder-module-4fe44d1c159e4 .widget-wrapper-top .widget&lt;br /&gt;
&lt;br /&gt;
Bottom widget: #builder-module-4fe44d1c159e4 .widget-wrapper-bottom .widget&lt;br /&gt;
&lt;br /&gt;
Top and bottom widgets: #builder-module-4fe44d1c159e4 .single .widget&lt;br /&gt;
&lt;br /&gt;
Left widget: #builder-module-4fe44d1c159e4 .widget-wrapper-left .widget&lt;br /&gt;
&lt;br /&gt;
Right widget: #builder-module-4fe44d1c159e4 .widget-wrapper-right .widget&lt;br /&gt;
&lt;br /&gt;
Left and right widgets: #builder-module-4fe44d1c159e4 .widget-section-wrapper .widget&lt;br /&gt;
&lt;br /&gt;
'''Note: In the above replace &amp;quot;builder-module-4fe44d1c159e4&amp;quot; with the CSS ID of HTML module in question.'''&lt;br /&gt;
&lt;br /&gt;
==Widget Bar Module==&lt;br /&gt;
&lt;br /&gt;
===Targeting the full widget bar===&lt;br /&gt;
&lt;br /&gt;
To target all widget bars:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-widget-bar {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target a specific widget bar:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where ''builder-module-4d3956642cc05'' is the ID of widget bar module in question. The easiest way to obtain a module's ID is by inspecting the element with Firebug.&lt;br /&gt;
&lt;br /&gt;
[[Image:Specific-widget-bar-module.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===Targeting all the individual widgets globally===&lt;br /&gt;
&lt;br /&gt;
To target all individual widgets of all widget bars:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-widget-bar .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target all the individual widgets of a specific widget bar:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where ''builder-module-4d3956642cc05'' is the ID of widget bar module in question. The easiest way to obtain a module's ID is by inspecting the element with Firebug.&lt;br /&gt;
&lt;br /&gt;
===Targeting a specific widget===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#text-3 {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where text-3 is the ID of widget in question. The easiest way to obtain a module's ID is by inspecting the element with Firebug.&lt;br /&gt;
&lt;br /&gt;
[[Image:Specific-widget.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===How to make all widgets of a widget bar module equal height===&lt;br /&gt;
&lt;br /&gt;
Here's a video which explains how you can use Firebug to set height of a single widget and all then all widgets of the module so they have the same height: http://ithemes.com/screencasts/builder/height-of-widgets/&lt;br /&gt;
&lt;br /&gt;
The general idea is to obtain the height of tallest widget in the module from 'Computed' tab in Firebug and write CSS like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4ddb5b00e3efd .widget {&lt;br /&gt;
	height: 100px; /* Set this value to height of tallest widget */&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Change builder-module-4ddb5b00e3efd to ID of module in question.&lt;br /&gt;
&lt;br /&gt;
===2-widget widget bar===&lt;br /&gt;
&lt;br /&gt;
The CSS below applies to a specific widget bar having a ID of ''builder-module-4d3956642cc05''. The easiest way to obtain a module's ID is by inspecting the element with Firebug. If all widget bar modules are to be targeted, ''.builder-module-widget-bar'' should be used instead of ''#builder-module-4d3956642cc05''.&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''left widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .left .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''right widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .right .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===3-widget widget bar===&lt;br /&gt;
&lt;br /&gt;
The CSS below applies to a specific widget bar having a ID of ''builder-module-4d3956642cc05''. The easiest way to obtain a module's ID is by inspecting the element with Firebug. If all widget bar modules are to be targeted, ''.builder-module-widget-bar'' should be used instead of ''#builder-module-4d3956642cc05''.&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''left widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .left .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''middle widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .middle .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''right widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .right .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===4-widget widget bar===&lt;br /&gt;
&lt;br /&gt;
The CSS below applies to a specific widget bar having a ID of ''builder-module-4d3956642cc05''. The easiest way to obtain a module's ID is by inspecting the element with Firebug. If all widget bar modules are to be targeted, ''.builder-module-widget-bar'' should be used instead of ''#builder-module-4d3956642cc05''.&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''left most widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .left .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''second widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-2 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''third widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-3 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''right most widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .right .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===5-widget widget bar===&lt;br /&gt;
&lt;br /&gt;
The CSS below applies to a specific widget bar having a ID of ''builder-module-4d3956642cc05''. The easiest way to obtain a module's ID is by inspecting the element with Firebug. If all widget bar modules are to be targeted, ''.builder-module-widget-bar'' should be used instead of ''#builder-module-4d3956642cc05''.&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''left most widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .left .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''second widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-2 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''third widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-3 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''fourth widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-4 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''right most widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .right .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Content Module==&lt;br /&gt;
&lt;br /&gt;
===Introduction===&lt;br /&gt;
&lt;br /&gt;
.builder-module-content consists of .builder-module-element + 1 or more .builder-module-sidebar.&lt;br /&gt;
&lt;br /&gt;
The actual area where the content gets displayed is .builder-module-element and the wrapper for this is .builder-module-element-outer-wrapper.&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
To change the background of actual content area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Content-element-wrapper-background-before.png&lt;br /&gt;
File:Content-element-wrapper-background-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-content .builder-module-element-outer-wrapper {&lt;br /&gt;
	background: #f2f4fd;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Removing top and bottom horizontal widget sections when content module is set to have 2 adjacent sidebars===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:2-adjacent-sidebars-before.png&lt;br /&gt;
File:2-adjacent-sidebars-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of your theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-content .widget-outer-wrapper-top, .builder-module-content .widget-outer-wrapper-bottom {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Footer Module==&lt;br /&gt;
&lt;br /&gt;
Before: [[Image:Footer-before.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
After: [[Image:Footer-after.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-footer {&lt;br /&gt;
	margin-top: 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-footer .builder-module-element {&lt;br /&gt;
	color: #FFFFFF;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-footer .builder-module-element a {&lt;br /&gt;
	color: #7eabc1;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Defining the scope==&lt;br /&gt;
&lt;br /&gt;
By default, style rules apply to all sections of the site. For a finer and granular control, it is possible to restrict the style rules to:&lt;br /&gt;
&lt;br /&gt;
*Home (i.e, site's front page)&lt;br /&gt;
*Posts page&lt;br /&gt;
*All Pages&lt;br /&gt;
*A layout&lt;br /&gt;
*A specific Page&lt;br /&gt;
*All posts&lt;br /&gt;
*A specific post&lt;br /&gt;
*All archives and category listings&lt;br /&gt;
*A specific category&lt;br /&gt;
&lt;br /&gt;
=== Homepage or Front page ===&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;.home&amp;lt;/code&amp;gt; selector to restrict CSS to the site's front page.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.home h1.entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
gets rid of the title only on homepage.&lt;br /&gt;
&lt;br /&gt;
=== Posts (blog) page ===&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;blog&amp;lt;/code&amp;gt; selector.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.blog .builder-module-content .hentry {&lt;br /&gt;
    margin-top: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== All static Pages ===&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;.page&amp;lt;/code&amp;gt; selector.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page .entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: When front page is set to show a static Page, front page (or homepage) will also have the &amp;quot;home&amp;quot; body class.&lt;br /&gt;
&lt;br /&gt;
===A specific page===&lt;br /&gt;
&lt;br /&gt;
==== How to get rid of title for a specific Page ====&lt;br /&gt;
&lt;br /&gt;
To remove the title of a Page whose ID is say, 47, add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page-id-47 .entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace &amp;lt;code&amp;gt;page-id-47&amp;lt;/code&amp;gt; with the body class of Page in your site. This can be obtained using Firebug.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-08-03 10-44-54.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
===='''To set a background color to a specific page'''====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page-id-2 {&lt;br /&gt;
	background-color: #333333;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The above sets the background color of body element in a page whose ID is 2 to #333333.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:page-background-before.png&lt;br /&gt;
File:page-background-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
IDs of Pages and posts can be obtained in the following ways:&lt;br /&gt;
&lt;br /&gt;
*Examining the body element using Firebug&lt;br /&gt;
[[Image:id-from-firebug.png|200px|none]]&lt;br /&gt;
*Placing cursor on the Page/post title in edit screen and observing the number in the browser status bar&lt;br /&gt;
[[Image:id-in-status-bar.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===='''To set a background color to mutiple pages'''====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page-id-2, .page-id-4 {&lt;br /&gt;
	background-color: #333333;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The above sets the background color of body element in a page whose ID is 2 and to body element in another page whose ID is 4.&lt;br /&gt;
&lt;br /&gt;
====To remove border around images only on certain Pages====&lt;br /&gt;
&lt;br /&gt;
To remove border around images only on Pages having IDs 2 and 6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page-id-2 .hentry img, .page-id-6 .hentry img {&lt;br /&gt;
    border: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== A specific layout ===&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-layout-4fe44cd68bddb .builder-module-content {&lt;br /&gt;
    background: #333;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;quot;builder-layout-4fe44cd68bddb&amp;quot; is the ID of body element of any webpage that uses this layout.&lt;br /&gt;
&lt;br /&gt;
Firebug can be used to obtain this ID.&lt;br /&gt;
&lt;br /&gt;
[[Image:Snapshot 20-09-12 6-31 PM.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
==Miscellaneous==&lt;br /&gt;
&lt;br /&gt;
===How to make second line in list item to be indented to match up with the text===&lt;br /&gt;
&lt;br /&gt;
Before: [[File:Indenting-second-line-list-before.png]]&lt;br /&gt;
&lt;br /&gt;
After: [[File:Indenting-second-line-list-after.png]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.widget ul {&lt;br /&gt;
    list-style-position: inside;&lt;br /&gt;
    margin-left: 0;&lt;br /&gt;
    padding-left: 1em;&lt;br /&gt;
    text-indent: -1em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Tuesday, August 23, 2011 Update'''&lt;br /&gt;
&lt;br /&gt;
Fix for IE: http://ithemes.com/forum/index.php?/topic/14646-i-need-to-adjust-text-alignment-in-side-widgets/#p81837&lt;br /&gt;
&lt;br /&gt;
Thanks to: Ronald.&lt;br /&gt;
&lt;br /&gt;
===How to hide titles on all Pages===&lt;br /&gt;
&lt;br /&gt;
Ensure that [http://www.doitwithwp.com/how-to-change-your-permalink-structure-without-breaking-your-links/ pretty permalinks] are enabled.&lt;br /&gt;
&lt;br /&gt;
When you are using Builder 3.0 and a corresponding LoopBuddy compatible theme like the current (as of Monday, July 11, 2011) Builder child themes, adding the following at end of child theme's style.css will hide Page titles:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.page .entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For pre-Builder 3.0, use this CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.page .title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===How to hide title on homepage only===&lt;br /&gt;
&lt;br /&gt;
When Builder 3.0 and a corresponding LoopBuddy compatible theme like the current (as of Monday, July 11, 2011) Builder child themes are being used, adding the following at end of child theme's style.css will hide Page title on homepage:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.home .entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For pre-Builder 3.0, use this CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.home .title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== How to get rid of top and bottom sidebars in all modules ===&lt;br /&gt;
&lt;br /&gt;
When a module has 2 adjacent sidebars (either left or right), a top wide sidebar and bottom wide sidebar will automatically be added. These will not appear on the site for visitors as long as they are empty (i.e., not populated with widgets).&lt;br /&gt;
&lt;br /&gt;
If you would still like to remove them, add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module .widget-outer-wrapper-top, .builder-module .widget-outer-wrapper-bottom {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== How to add and use a font from a .ttf file ===&lt;br /&gt;
&lt;br /&gt;
In this example we are going to download a free font from http://www.dafont.com/ and use it in a Builder site.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Download your desired font. Extract the zip file to get the .ttf file.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Go to http://www.fontsquirrel.com/fontface/generator. Click &amp;lt;code&amp;gt;Add Fonts&amp;lt;/code&amp;gt;, browse to and select the .ttf file that you downloaded.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Place a tick mark to the left of &amp;quot;Yes, the fonts I'm uploading are legally eligible for web embedding.&amp;quot; and click &amp;lt;code&amp;gt;Download Your Kit&amp;lt;/code&amp;gt; and save the zip file.&lt;br /&gt;
&lt;br /&gt;
'''4.''' Extract the zip file to get a folder having files with different extensions. Upload .ttf, .eot, .svg, .woff files to child theme's directory using a FTP client or cPanel file manager.&lt;br /&gt;
&lt;br /&gt;
'''5.''' Open stylesheet.css, copy all the code similar to the following and paste at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor)&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on September 17, 2012 */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
@font-face {&lt;br /&gt;
    font-family: 'last_king_questregular';&lt;br /&gt;
    src: url('last_king_quest-webfont.eot');&lt;br /&gt;
    src: url('last_king_quest-webfont.eot?#iefix') format('embedded-opentype'),&lt;br /&gt;
         url('last_king_quest-webfont.woff') format('woff'),&lt;br /&gt;
         url('last_king_quest-webfont.ttf') format('truetype'),&lt;br /&gt;
         url('last_king_quest-webfont.svg#last_king_questregular') format('svg');&lt;br /&gt;
    font-weight: normal;&lt;br /&gt;
    font-style: normal;&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''6.''' Open .html file in the extracted folder in a text editor and copy a line similar to&lt;br /&gt;
&lt;br /&gt;
(for example)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;font-family: 'last_king_questregular';&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will be found between &amp;lt;code&amp;gt;&amp;lt;head&amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;lt;/head&amp;gt;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
'''7.''' Paste this line for the CSS selector of your choice.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
h1 {&lt;br /&gt;
    font-family: 'last_king_questregular';&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That's it!&lt;br /&gt;
&lt;br /&gt;
=== How to set up and use &amp;lt;code&amp;gt;custom.css&amp;lt;/code&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
If you would like to place all your custom CSS code in a separate file named, say, &amp;lt;code&amp;gt;custom.css&amp;lt;/code&amp;gt;, do the following.&lt;br /&gt;
&lt;br /&gt;
The advantages of doing this over editing the styles inline in style.css or writing at the end of style.css is that all your CSS customizations will be in one file. This file can easily be backed up and used again as needed when updating the child theme (Note that 99 times out of 100, one does not update child themes). Also it will help the support personnel help you better as the style changes will all be in one place and not inline.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Create a file named &amp;lt;code&amp;gt;custom.css&amp;lt;/code&amp;gt; and upload it to active theme directory.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Add the following at the end of active theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
function my_custom_styles() {&lt;br /&gt;
  wp_enqueue_style( 'custom-style', get_stylesheet_directory_uri() . '/custom.css', '1.0.0', 'all' );&lt;br /&gt;
}&lt;br /&gt;
add_action('wp_enqueue_scripts', 'my_custom_styles');&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''3.''' Place your custom CSS code in custom.css. This file will be available for editing at Appearance -&amp;gt; Editor.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 Note: Make sure to take a back up of your customized custom.css when updating your active child theme.&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/topic/36721-why-has-ithemes-not-upgraded-to-wordpress-35/#entry169383&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/Builder_CSS_Guide</id>
		<title>Builder CSS Guide</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/Builder_CSS_Guide"/>
				<updated>2013-05-09T04:11:04Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: /* Miscellaneous */ Added === How to set up and use a &amp;lt;code&amp;gt;custom.css&amp;lt;/code&amp;gt; ===&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
While Style Manager makes it easy to make changes to your Builder site visually, to go in-depth and make different modules of the same kind look differently and to do advanced customizations theme's style.css should be edited.&lt;br /&gt;
&lt;br /&gt;
A knowledge of CSS and Firebug usage really helps. [http://getfirebug.com/ Firebug], a Firefox add-on is an awesome tool in figuring out element's classes, ID, padding, margin etc. Please install it in your Firefox before reading further.&lt;br /&gt;
&lt;br /&gt;
'''We have a series of videos on advanced CSS in Builder. Please watch them by clicking [http://ithemes.com/forum/index.php?/topic/925-builder-theme-advanced-css-free-training-videos/ here].'''&lt;br /&gt;
&lt;br /&gt;
Here are few recommended resources for CSS:&lt;br /&gt;
&lt;br /&gt;
*[http://www.brainjar.com/css/using/ BrainJar]&lt;br /&gt;
*[http://www.sitepoint.com/videos/videocss1/ The CSS Video Crash Course - SitePoint Videos]&lt;br /&gt;
*[http://www.w3schools.com/css/ w3schools]&lt;br /&gt;
&lt;br /&gt;
BuilderChild-Default has been taken as the active theme for the scope of this guide. However, most of the CSS applies to all Builder child themes.&lt;br /&gt;
&lt;br /&gt;
All CSS changes should be done in style.css of the active theme which should be a child theme of Builder. You can either edit already existing styles or write them at the very end. Generally we advise users to write custom styles at the end of child theme's style.css. [http://ithemes.com/forum/index.php?/topic/13320-padding-problem-with-widget/#p62262 This] forum post explains why.&lt;br /&gt;
&lt;br /&gt;
Because of the vast number of classes that Builder makes available, there are several ways of targeting the same element and hence the following is not the only way of going about it. There is more than one way to ''skin'' a cat.&lt;br /&gt;
&lt;br /&gt;
=== Videos ===&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59590792|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59609073|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59910487|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59590795|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59591441|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59591444|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59609072|640}}&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/tutorial/category/builder-css/&lt;br /&gt;
&lt;br /&gt;
=== CSS to target various elements of a Builder site ===&lt;br /&gt;
&lt;br /&gt;
The following information can also be obtained by viewing the source of the webpage or by using Firebug. The text on the left side is one of the classes (if preceded by a dot) or ID (if preceded by a hash) for body element.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.home&amp;lt;/code&amp;gt; - Homepage only&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.blog&amp;lt;/code&amp;gt; - Posts page only&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.page&amp;lt;/code&amp;gt; - All Pages&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.single-post&amp;lt;/code&amp;gt; - All single post entries&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.archive&amp;lt;/code&amp;gt; - Any category or date or tag archive page&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.category&amp;lt;/code&amp;gt; - All category archive pages&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.category-issues&amp;lt;/code&amp;gt; - Archive page of a specific category whose slug is &amp;quot;issues&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.category-18&amp;lt;/code&amp;gt; - Archive page of a specific category whose ID is 18&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.tag&amp;lt;/code&amp;gt; - Tag archive page&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.page-id-500&amp;lt;/code&amp;gt; - A specific Page whose ID is 500&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.postid-392&amp;lt;/code&amp;gt; - A specific Post whose ID is 391&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;#builder-layout-4e662c1838008&amp;lt;/code&amp;gt; - Any page that uses a layout whose ID is 4e662c1838008&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.search&amp;lt;/code&amp;gt; - Search results listing page&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-outer-wrapper&amp;lt;/code&amp;gt; - Outer wrapper of all modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-1-outer-wrapper&amp;lt;/code&amp;gt; : First module's outer wrapper&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-2-outer-wrapper&amp;lt;/code&amp;gt; : Second module's outer wrapper&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-header&amp;lt;/code&amp;gt; - All Header modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-header-1&amp;lt;/code&amp;gt; : First Header module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-header-2&amp;lt;/code&amp;gt; : Second Header module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-image&amp;lt;/code&amp;gt; - All Image modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-image-1&amp;lt;/code&amp;gt; : First Image module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-image-2&amp;lt;/code&amp;gt; : Second Image module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-navigation&amp;lt;/code&amp;gt; - All Navigation modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-navigation-1&amp;lt;/code&amp;gt; : First Navigation module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-navigation-2&amp;lt;/code&amp;gt; : Second Navigation module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-content&amp;lt;/code&amp;gt; - Content module&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-html&amp;lt;/code&amp;gt; - All HTML modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-html-1&amp;lt;/code&amp;gt; : First HTML module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-html-2&amp;lt;/code&amp;gt; : Second HTML module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-widget-bar&amp;lt;/code&amp;gt; - All Widget Bar modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-widget-bar-1&amp;lt;/code&amp;gt; : First Widget Bar module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-widget-bar-2&amp;lt;/code&amp;gt; : Second Widget Bar module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-footer&amp;lt;/code&amp;gt; - Footer module&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;#builder-module-4fc8af01e738b&amp;lt;/code&amp;gt; - A specific module whose ID is 4fc8af01e738b&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-top&amp;lt;/code&amp;gt; - Top most module in any page through out the site&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-last&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;.builder-module-bottom&amp;lt;/code&amp;gt; - Last/bottom most module in any page through out the site&lt;br /&gt;
&lt;br /&gt;
===To make the container touch the top edge of browser===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-container-outer-wrapper {&lt;br /&gt;
	margin-top: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Top-margin-container-before.png&lt;br /&gt;
File:Top-margin-container-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== To remove gap between each module ===&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-background-wrapper {&lt;br /&gt;
    margin-bottom: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=320px heights=199px&amp;gt;&lt;br /&gt;
File:Holistic Nutrition By Lisa 2013-01-25 09-16-09.png|Before&lt;br /&gt;
File:Holistic Nutrition By Lisa 2013-01-25 09-15-19.png|After&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: This only applies to Default child theme.&lt;br /&gt;
&lt;br /&gt;
===To remove the top and bottom borders for all modules===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: This only applies to Default child theme.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module {&lt;br /&gt;
	border-top: none;&lt;br /&gt;
	border-bottom: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:borders-for-modules-before.png&lt;br /&gt;
File:borders-for-modules-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===To target a specific module===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d396c72bbb6b {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Replace ''builder-module-4d396c72bbb6b'' with the ID of module in question on your site.&lt;br /&gt;
&lt;br /&gt;
[[Image:a-specific-module.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===Targeting modules based on their position in the layout===&lt;br /&gt;
&lt;br /&gt;
.builder-module-1 &amp;lt;-- First module&lt;br /&gt;
&lt;br /&gt;
.builder-module-2 &amp;lt;-- Second module&lt;br /&gt;
&lt;br /&gt;
.builder-module-3 &amp;lt;-- Last module&lt;br /&gt;
&lt;br /&gt;
and so on..&lt;br /&gt;
&lt;br /&gt;
.builder-module-top &amp;lt;-- Top most (first) module&lt;br /&gt;
&lt;br /&gt;
.builder-module-last or .builder-module-bottom &amp;lt;-- Last module&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
&lt;br /&gt;
To set background of first module transparent,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 {&lt;br /&gt;
	background: transparent;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To set all sidebars in first module transparent,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 .builder-module-sidebar {&lt;br /&gt;
	background: transparent;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===To set the height of a specific module===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d396c72bbb6e {&lt;br /&gt;
    height: 200px;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Replace ''builder-module-4d396c72bbb6e'' with the ID of module in question on your site.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:identifying-a-module.png&lt;br /&gt;
File:setting-module-height-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===To remove padding around a specific widget===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#text-3 {&lt;br /&gt;
	padding: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Replace ''text-3'' with the ID of widget in question on your site.&lt;br /&gt;
&lt;br /&gt;
[[Image:widget-padding.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
== Header Module ==&lt;br /&gt;
&lt;br /&gt;
Header module should be used when you would like to show site name and tagline. Site name and tagline will link to site URL. There is no provision to enter a image in this module.&lt;br /&gt;
&lt;br /&gt;
Following sample CSS can be used to set a background image for this module and to adjust the font size and colors of site name and tagline text. BuilderChild-Default is the active theme in the test site.&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
&lt;br /&gt;
[[File:Header-module-before.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
[[File:Header-module-after.jpg|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 {&lt;br /&gt;
    height: 150px;&lt;br /&gt;
    background: url(&amp;quot;images/header.jpg&amp;quot;) no-repeat;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.site-title, .site-title a, .site-tagline, .site-tagline a {&lt;br /&gt;
    color: #FFF;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.site-title a:hover, .site-tagline a:hover {&lt;br /&gt;
    color: #DDD;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.site-title {&lt;br /&gt;
    font-size: 3em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.site-tagline {&lt;br /&gt;
    font-size: 1.5em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: Change the name of image in background property line above to what you wish to use. In this example, header.jpg resides in child theme's images directory.&lt;br /&gt;
&lt;br /&gt;
=== How to hide top and bottom sidebars when using two adjacent sidebars ===&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-header .single {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/16676-header-module-2-right-sidebars-not-working/#p77664 Forum topic].&lt;br /&gt;
&lt;br /&gt;
==Navigation Module==&lt;br /&gt;
&lt;br /&gt;
===To target all nav bars===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===To target a specific nav bar===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d396c72bbb6b {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Replace ''builder-module-4d396c72bbb6b'' with the ID of navigation module in question on your site.&lt;br /&gt;
&lt;br /&gt;
[[Image:a-specific-module.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===To center the content of nav bar===&lt;br /&gt;
&lt;br /&gt;
[[File:Nav-menu-centered.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
The following code will allow you to absolutely center a menu (only the top level items will be centered), regardless of the number and width of the navigation items.&lt;br /&gt;
&lt;br /&gt;
(If you wish to align the top level menu items to the right, replace &amp;lt;code&amp;gt;margin: 0 auto;&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;float: right;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==== If you are using a WordPress 3 custom menu ====&lt;br /&gt;
&lt;br /&gt;
If you have created a menu using wp-dashboard &amp;gt; Appearance &amp;gt; Menu, and are using that menu in your navigation module:&lt;br /&gt;
&lt;br /&gt;
If the name is ''MainMenu'' in the navigation module, add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.menu-mainmenu-container {&lt;br /&gt;
    display: table;&lt;br /&gt;
    margin: 0 auto;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: In the above code, ''mainmenu'' must be replaced with the slug of your custom menu. Ex.: If the name of your custom menu is ''Primary Navigation'', then replace &amp;lt;code&amp;gt;.menu-mainmenu-container&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;.menu-primary-navigation-container&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
'''In most cases, this more generic (so independent of the menu name) code will accomplish the same:'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation-menu-wrapper {&lt;br /&gt;
    display: table;&lt;br /&gt;
    margin: 0 auto;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== If you are using the Builder settings menu ====&lt;br /&gt;
&lt;br /&gt;
If you are using a &amp;quot;Legacy Menu Type&amp;quot; (a menu created using wp-dashboard &amp;gt; My Theme &amp;gt; Settings &amp;gt; Menu Builder) in your navigation module, &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation .builder-module-navigation-menu-wrapper {&lt;br /&gt;
    display: table;&lt;br /&gt;
    margin: 0 auto;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== For all other types of navigation module ====&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation .builder-module-element {&lt;br /&gt;
    margin-left: 310px;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
# In the above code, the left margin value has to be changed depending on width of menu.&lt;br /&gt;
# The above code applies to all navigation modules in the layouts. If you would like to apply it to a specific navigation module, replace &amp;lt;code&amp;gt;.builder-module-navigation&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;#builder-module-4e1585dc84fa3&amp;lt;/code&amp;gt; where builder-module-4e1585dc84fa3 is the ID of navigation module div.&lt;br /&gt;
# This method can also be used for a navigation module which displays a custom menu.&lt;br /&gt;
&lt;br /&gt;
[[File:Module-id.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Example of another slightly different code to do the same: http://ithemes.com/forum/index.php?/topic/11617-centering-custom-menu-in-navigation-bar/#p54464&lt;br /&gt;
&lt;br /&gt;
=== To right align the nav menu ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-31 14-31-45.png|798px|thumb|none|Before]]&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-31 14-30-48.png|800px|thumb|none|After]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation .builder-module-element {&lt;br /&gt;
    float: right;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Image Module==&lt;br /&gt;
&lt;br /&gt;
=== How to center image in Image Module ===&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
&lt;br /&gt;
[[File:WordPress Dev Site - before.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
[[File:WordPress Dev Site.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 .builder-module-element img {&lt;br /&gt;
	margin: 0 auto;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Change 1 in &amp;lt;code&amp;gt;.builder-module-1&amp;lt;/code&amp;gt; to the position of your Image module from the top in layout.&lt;br /&gt;
&lt;br /&gt;
==HTML Module==&lt;br /&gt;
&lt;br /&gt;
=== Targeting various sections of a HTML module having 2 adjacent sidebars ===&lt;br /&gt;
&lt;br /&gt;
==== Outer wrappers ====&lt;br /&gt;
&lt;br /&gt;
Top widget outer wrapper: #builder-module-4fe44d1c159e4 .widget-outer-wrapper-top&lt;br /&gt;
&lt;br /&gt;
Middle widget outer wrapper container: #builder-module-4fe44d1c159e4 .widget-section-wrapper (If setting background for this, background will not be visible unless &amp;quot;float: left;&amp;quot; is also applied)&lt;br /&gt;
&lt;br /&gt;
Middle widget outer wrappers: #builder-module-4fe44d1c159e4 .widget-section-wrapper .widget-outer-wrapper&lt;br /&gt;
&lt;br /&gt;
Left widget outer wrapper: #builder-module-4fe44d1c159e4 .widget-outer-wrapper-left&lt;br /&gt;
&lt;br /&gt;
Right widget outer wrapper: #builder-module-4fe44d1c159e4 .widget-outer-wrapper-right&lt;br /&gt;
&lt;br /&gt;
Bottom widget outer wrapper: #builder-module-4fe44d1c159e4 .widget-outer-wrapper-bottom&lt;br /&gt;
&lt;br /&gt;
[[File:2012-06-22 16-25-09.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
==== Wrappers ====&lt;br /&gt;
&lt;br /&gt;
Top widget wrapper: #builder-module-4fe44d1c159e4 .widget-wrapper-top&lt;br /&gt;
&lt;br /&gt;
Bottom widget wrapper: #builder-module-4fe44d1c159e4 .widget-wrapper-bottom&lt;br /&gt;
&lt;br /&gt;
Top and bottom widget wrapper: #builder-module-4fe44d1c159e4 .single&lt;br /&gt;
&lt;br /&gt;
Wrappers of all widgets in the module: #builder-module-4fe44d1c159e4 .widget-wrapper&lt;br /&gt;
&lt;br /&gt;
Left widget wrapper: #builder-module-4fe44d1c159e4 .widget-wrapper-left&lt;br /&gt;
&lt;br /&gt;
Right widget wrapper: #builder-module-4fe44d1c159e4 .widget-wrapper-right&lt;br /&gt;
&lt;br /&gt;
==== Widgets ====&lt;br /&gt;
&lt;br /&gt;
Top widget: #builder-module-4fe44d1c159e4 .widget-wrapper-top .widget&lt;br /&gt;
&lt;br /&gt;
Bottom widget: #builder-module-4fe44d1c159e4 .widget-wrapper-bottom .widget&lt;br /&gt;
&lt;br /&gt;
Top and bottom widgets: #builder-module-4fe44d1c159e4 .single .widget&lt;br /&gt;
&lt;br /&gt;
Left widget: #builder-module-4fe44d1c159e4 .widget-wrapper-left .widget&lt;br /&gt;
&lt;br /&gt;
Right widget: #builder-module-4fe44d1c159e4 .widget-wrapper-right .widget&lt;br /&gt;
&lt;br /&gt;
Left and right widgets: #builder-module-4fe44d1c159e4 .widget-section-wrapper .widget&lt;br /&gt;
&lt;br /&gt;
'''Note: In the above replace &amp;quot;builder-module-4fe44d1c159e4&amp;quot; with the CSS ID of HTML module in question.'''&lt;br /&gt;
&lt;br /&gt;
==Widget Bar Module==&lt;br /&gt;
&lt;br /&gt;
===Targeting the full widget bar===&lt;br /&gt;
&lt;br /&gt;
To target all widget bars:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-widget-bar {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target a specific widget bar:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where ''builder-module-4d3956642cc05'' is the ID of widget bar module in question. The easiest way to obtain a module's ID is by inspecting the element with Firebug.&lt;br /&gt;
&lt;br /&gt;
[[Image:Specific-widget-bar-module.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===Targeting all the individual widgets globally===&lt;br /&gt;
&lt;br /&gt;
To target all individual widgets of all widget bars:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-widget-bar .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target all the individual widgets of a specific widget bar:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where ''builder-module-4d3956642cc05'' is the ID of widget bar module in question. The easiest way to obtain a module's ID is by inspecting the element with Firebug.&lt;br /&gt;
&lt;br /&gt;
===Targeting a specific widget===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#text-3 {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where text-3 is the ID of widget in question. The easiest way to obtain a module's ID is by inspecting the element with Firebug.&lt;br /&gt;
&lt;br /&gt;
[[Image:Specific-widget.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===How to make all widgets of a widget bar module equal height===&lt;br /&gt;
&lt;br /&gt;
Here's a video which explains how you can use Firebug to set height of a single widget and all then all widgets of the module so they have the same height: http://ithemes.com/screencasts/builder/height-of-widgets/&lt;br /&gt;
&lt;br /&gt;
The general idea is to obtain the height of tallest widget in the module from 'Computed' tab in Firebug and write CSS like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4ddb5b00e3efd .widget {&lt;br /&gt;
	height: 100px; /* Set this value to height of tallest widget */&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Change builder-module-4ddb5b00e3efd to ID of module in question.&lt;br /&gt;
&lt;br /&gt;
===2-widget widget bar===&lt;br /&gt;
&lt;br /&gt;
The CSS below applies to a specific widget bar having a ID of ''builder-module-4d3956642cc05''. The easiest way to obtain a module's ID is by inspecting the element with Firebug. If all widget bar modules are to be targeted, ''.builder-module-widget-bar'' should be used instead of ''#builder-module-4d3956642cc05''.&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''left widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .left .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''right widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .right .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===3-widget widget bar===&lt;br /&gt;
&lt;br /&gt;
The CSS below applies to a specific widget bar having a ID of ''builder-module-4d3956642cc05''. The easiest way to obtain a module's ID is by inspecting the element with Firebug. If all widget bar modules are to be targeted, ''.builder-module-widget-bar'' should be used instead of ''#builder-module-4d3956642cc05''.&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''left widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .left .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''middle widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .middle .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''right widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .right .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===4-widget widget bar===&lt;br /&gt;
&lt;br /&gt;
The CSS below applies to a specific widget bar having a ID of ''builder-module-4d3956642cc05''. The easiest way to obtain a module's ID is by inspecting the element with Firebug. If all widget bar modules are to be targeted, ''.builder-module-widget-bar'' should be used instead of ''#builder-module-4d3956642cc05''.&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''left most widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .left .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''second widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-2 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''third widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-3 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''right most widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .right .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===5-widget widget bar===&lt;br /&gt;
&lt;br /&gt;
The CSS below applies to a specific widget bar having a ID of ''builder-module-4d3956642cc05''. The easiest way to obtain a module's ID is by inspecting the element with Firebug. If all widget bar modules are to be targeted, ''.builder-module-widget-bar'' should be used instead of ''#builder-module-4d3956642cc05''.&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''left most widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .left .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''second widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-2 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''third widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-3 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''fourth widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-4 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''right most widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .right .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Content Module==&lt;br /&gt;
&lt;br /&gt;
===Introduction===&lt;br /&gt;
&lt;br /&gt;
.builder-module-content consists of .builder-module-element + 1 or more .builder-module-sidebar.&lt;br /&gt;
&lt;br /&gt;
The actual area where the content gets displayed is .builder-module-element and the wrapper for this is .builder-module-element-outer-wrapper.&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
To change the background of actual content area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Content-element-wrapper-background-before.png&lt;br /&gt;
File:Content-element-wrapper-background-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-content .builder-module-element-outer-wrapper {&lt;br /&gt;
	background: #f2f4fd;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Removing top and bottom horizontal widget sections when content module is set to have 2 adjacent sidebars===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:2-adjacent-sidebars-before.png&lt;br /&gt;
File:2-adjacent-sidebars-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of your theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-content .widget-outer-wrapper-top, .builder-module-content .widget-outer-wrapper-bottom {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Footer Module==&lt;br /&gt;
&lt;br /&gt;
Before: [[Image:Footer-before.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
After: [[Image:Footer-after.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-footer {&lt;br /&gt;
	margin-top: 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-footer .builder-module-element {&lt;br /&gt;
	color: #FFFFFF;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-footer .builder-module-element a {&lt;br /&gt;
	color: #7eabc1;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Defining the scope==&lt;br /&gt;
&lt;br /&gt;
By default, style rules apply to all sections of the site. For a finer and granular control, it is possible to restrict the style rules to:&lt;br /&gt;
&lt;br /&gt;
*Home (i.e, site's front page)&lt;br /&gt;
*Posts page&lt;br /&gt;
*All Pages&lt;br /&gt;
*A layout&lt;br /&gt;
*A specific Page&lt;br /&gt;
*All posts&lt;br /&gt;
*A specific post&lt;br /&gt;
*All archives and category listings&lt;br /&gt;
*A specific category&lt;br /&gt;
&lt;br /&gt;
=== Homepage or Front page ===&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;.home&amp;lt;/code&amp;gt; selector to restrict CSS to the site's front page.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.home h1.entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
gets rid of the title only on homepage.&lt;br /&gt;
&lt;br /&gt;
=== Posts (blog) page ===&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;blog&amp;lt;/code&amp;gt; selector.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.blog .builder-module-content .hentry {&lt;br /&gt;
    margin-top: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== All static Pages ===&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;.page&amp;lt;/code&amp;gt; selector.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page .entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: When front page is set to show a static Page, front page (or homepage) will also have the &amp;quot;home&amp;quot; body class.&lt;br /&gt;
&lt;br /&gt;
===A specific page===&lt;br /&gt;
&lt;br /&gt;
==== How to get rid of title for a specific Page ====&lt;br /&gt;
&lt;br /&gt;
To remove the title of a Page whose ID is say, 47, add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page-id-47 .entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace &amp;lt;code&amp;gt;page-id-47&amp;lt;/code&amp;gt; with the body class of Page in your site. This can be obtained using Firebug.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-08-03 10-44-54.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
===='''To set a background color to a specific page'''====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page-id-2 {&lt;br /&gt;
	background-color: #333333;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The above sets the background color of body element in a page whose ID is 2 to #333333.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:page-background-before.png&lt;br /&gt;
File:page-background-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
IDs of Pages and posts can be obtained in the following ways:&lt;br /&gt;
&lt;br /&gt;
*Examining the body element using Firebug&lt;br /&gt;
[[Image:id-from-firebug.png|200px|none]]&lt;br /&gt;
*Placing cursor on the Page/post title in edit screen and observing the number in the browser status bar&lt;br /&gt;
[[Image:id-in-status-bar.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===='''To set a background color to mutiple pages'''====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page-id-2, .page-id-4 {&lt;br /&gt;
	background-color: #333333;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The above sets the background color of body element in a page whose ID is 2 and to body element in another page whose ID is 4.&lt;br /&gt;
&lt;br /&gt;
====To remove border around images only on certain Pages====&lt;br /&gt;
&lt;br /&gt;
To remove border around images only on Pages having IDs 2 and 6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page-id-2 .hentry img, .page-id-6 .hentry img {&lt;br /&gt;
    border: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== A specific layout ===&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-layout-4fe44cd68bddb .builder-module-content {&lt;br /&gt;
    background: #333;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;quot;builder-layout-4fe44cd68bddb&amp;quot; is the ID of body element of any webpage that uses this layout.&lt;br /&gt;
&lt;br /&gt;
Firebug can be used to obtain this ID.&lt;br /&gt;
&lt;br /&gt;
[[Image:Snapshot 20-09-12 6-31 PM.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
==Miscellaneous==&lt;br /&gt;
&lt;br /&gt;
===How to make second line in list item to be indented to match up with the text===&lt;br /&gt;
&lt;br /&gt;
Before: [[File:Indenting-second-line-list-before.png]]&lt;br /&gt;
&lt;br /&gt;
After: [[File:Indenting-second-line-list-after.png]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.widget ul {&lt;br /&gt;
    list-style-position: inside;&lt;br /&gt;
    margin-left: 0;&lt;br /&gt;
    padding-left: 1em;&lt;br /&gt;
    text-indent: -1em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Tuesday, August 23, 2011 Update'''&lt;br /&gt;
&lt;br /&gt;
Fix for IE: http://ithemes.com/forum/index.php?/topic/14646-i-need-to-adjust-text-alignment-in-side-widgets/#p81837&lt;br /&gt;
&lt;br /&gt;
Thanks to: Ronald.&lt;br /&gt;
&lt;br /&gt;
===How to hide titles on all Pages===&lt;br /&gt;
&lt;br /&gt;
Ensure that [http://www.doitwithwp.com/how-to-change-your-permalink-structure-without-breaking-your-links/ pretty permalinks] are enabled.&lt;br /&gt;
&lt;br /&gt;
When you are using Builder 3.0 and a corresponding LoopBuddy compatible theme like the current (as of Monday, July 11, 2011) Builder child themes, adding the following at end of child theme's style.css will hide Page titles:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.page .entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For pre-Builder 3.0, use this CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.page .title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===How to hide title on homepage only===&lt;br /&gt;
&lt;br /&gt;
When Builder 3.0 and a corresponding LoopBuddy compatible theme like the current (as of Monday, July 11, 2011) Builder child themes are being used, adding the following at end of child theme's style.css will hide Page title on homepage:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.home .entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For pre-Builder 3.0, use this CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.home .title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== How to get rid of top and bottom sidebars in all modules ===&lt;br /&gt;
&lt;br /&gt;
When a module has 2 adjacent sidebars (either left or right), a top wide sidebar and bottom wide sidebar will automatically be added. These will not appear on the site for visitors as long as they are empty (i.e., not populated with widgets).&lt;br /&gt;
&lt;br /&gt;
If you would still like to remove them, add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module .widget-outer-wrapper-top, .builder-module .widget-outer-wrapper-bottom {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== How to add and use a font from a .ttf file ===&lt;br /&gt;
&lt;br /&gt;
In this example we are going to download a free font from http://www.dafont.com/ and use it in a Builder site.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Download your desired font. Extract the zip file to get the .ttf file.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Go to http://www.fontsquirrel.com/fontface/generator. Click &amp;lt;code&amp;gt;Add Fonts&amp;lt;/code&amp;gt;, browse to and select the .ttf file that you downloaded.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Place a tick mark to the left of &amp;quot;Yes, the fonts I'm uploading are legally eligible for web embedding.&amp;quot; and click &amp;lt;code&amp;gt;Download Your Kit&amp;lt;/code&amp;gt; and save the zip file.&lt;br /&gt;
&lt;br /&gt;
'''4.''' Extract the zip file to get a folder having files with different extensions. Upload .ttf, .eot, .svg, .woff files to child theme's directory using a FTP client or cPanel file manager.&lt;br /&gt;
&lt;br /&gt;
'''5.''' Open stylesheet.css, copy all the code similar to the following and paste at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor)&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on September 17, 2012 */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
@font-face {&lt;br /&gt;
    font-family: 'last_king_questregular';&lt;br /&gt;
    src: url('last_king_quest-webfont.eot');&lt;br /&gt;
    src: url('last_king_quest-webfont.eot?#iefix') format('embedded-opentype'),&lt;br /&gt;
         url('last_king_quest-webfont.woff') format('woff'),&lt;br /&gt;
         url('last_king_quest-webfont.ttf') format('truetype'),&lt;br /&gt;
         url('last_king_quest-webfont.svg#last_king_questregular') format('svg');&lt;br /&gt;
    font-weight: normal;&lt;br /&gt;
    font-style: normal;&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''6.''' Open .html file in the extracted folder in a text editor and copy a line similar to&lt;br /&gt;
&lt;br /&gt;
(for example)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;font-family: 'last_king_questregular';&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will be found between &amp;lt;code&amp;gt;&amp;lt;head&amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;lt;/head&amp;gt;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
'''7.''' Paste this line for the CSS selector of your choice.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
h1 {&lt;br /&gt;
    font-family: 'last_king_questregular';&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That's it!&lt;br /&gt;
&lt;br /&gt;
=== How to set up and use a &amp;lt;code&amp;gt;custom.css&amp;lt;/code&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
If you would like to place all your custom CSS code in a separate file named, say, &amp;lt;code&amp;gt;custom.css&amp;lt;/code&amp;gt;, do the following.&lt;br /&gt;
&lt;br /&gt;
The advantages of doing this over editing the styles inline in style.css or writing at the end of style.css is that all your CSS customizations will be in one file. This file can easily be backed up and used again as needed when updating the child theme (Note that 99 times out of 100, one does not update child themes). Also it will help the support personnel help you better as the style changes will all be in one place and not inline.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Create a file named &amp;lt;code&amp;gt;custom.css&amp;lt;/code&amp;gt; and upload it to active theme directory.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Add the following at the end of active theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
function my_custom_styles() {&lt;br /&gt;
  wp_enqueue_style( 'custom-style', get_stylesheet_directory_uri() . '/custom.css', '1.0.0', 'all' );&lt;br /&gt;
}&lt;br /&gt;
add_action('wp_enqueue_scripts', 'my_custom_styles');&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''3.''' Place your custom CSS code in custom.css. This file will be available for editing at Appearance -&amp;gt; Editor.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 Note: Make sure to take a back up of your customized custom.css when updating your active child theme.&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/topic/36721-why-has-ithemes-not-upgraded-to-wordpress-35/#entry169383&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/Builder_Frequently_Asked_Questions</id>
		<title>Builder Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/Builder_Frequently_Asked_Questions"/>
				<updated>2013-05-03T11:51:31Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: /* Most Frequently Asked Questions */ Added == How to change text and layout of 404 pages in iThemes Builder ==&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Most Frequently Asked Questions=&lt;br /&gt;
&lt;br /&gt;
==Where can I learn about the basics of how Builder works?==&lt;br /&gt;
&lt;br /&gt;
Please start here: http://ithemes.com/builder-basics-training/&lt;br /&gt;
&lt;br /&gt;
==What are child themes? Should I use a child theme?==&lt;br /&gt;
&lt;br /&gt;
It is a good idea to use a child theme (of Builder) as your active theme and not Builder directly. This will protect any modifications and customizations you might have done from being erased when you upgrade Builder.&lt;br /&gt;
&lt;br /&gt;
To learn how to do this, go to:&lt;br /&gt;
[http://ithemes.com/ithemes-and-child-themes-introduction/ Child Themes Introduction]&lt;br /&gt;
[http://ithemes.com/ithemes-and-child-themes-a-quick-tutorial-1/ Child Themes Tutorial]&lt;br /&gt;
&lt;br /&gt;
Screenshots of the [[Builder Child Themes|available child themes]] for Builder&lt;br /&gt;
&lt;br /&gt;
==Activated a child theme. How come my site does not look like the demo site?==&lt;br /&gt;
&lt;br /&gt;
To get a Builder site with a child theme active to look like the child theme's demo site, it has to be built by way of arranging layouts, modules, widgets and in some cases, editing style.css.&lt;br /&gt;
&lt;br /&gt;
When a child theme is activated, the site will NOT look like the demo site out of the box.&lt;br /&gt;
&lt;br /&gt;
When we create the demo sites, we make no adjustments to any .php or .css files within the theme. The only adjustments we make are within the WordPress dashboard. Like with all themes and child themes (both iThemes and other companies), every site need a little set up. For example, one will need to add some pages, write some posts, create menus, etc. In other words, every site need content. There is no way any theme can do all of these things for customers.&lt;br /&gt;
&lt;br /&gt;
For Thinner child theme (as an example), if one writes some posts, sets a [http://codex.wordpress.org/Post_Thumbnails#Setting_a_Post_Thumbnail post thumbnail] for seven or more of those posts, and selects the slider extension in his/her layout (My Theme &amp;gt; Layouts &amp;amp; Views) that points to his/her main blog, he/she will find a comparable layout as the Thinner home page.&lt;br /&gt;
&lt;br /&gt;
As one can see, there is no way we can provide content for a customer. However, if one takes the time to set up WordPress and add default WordPress items, he/she will see that our child theme demos do represent what a child theme would look like when on a site with content.&lt;br /&gt;
&lt;br /&gt;
If time permits, we will provide instructions on how to create a layout similar to the demo. &lt;br /&gt;
&lt;br /&gt;
Example: [http://ithemes.com/codex/page/Americana#How_to_set_up_Americana_to_look_like_the_demo_site This link] has instructions on how a Builder site with Americana child theme can be made to look like its demo site.&lt;br /&gt;
&lt;br /&gt;
==Use a static page as front page==&lt;br /&gt;
&lt;br /&gt;
Q: I want to have a static page as front page (i.e., at www.mysite.com) and the blog posts to appear at another page, say www.mysite.com/blog. How do I do this?&lt;br /&gt;
*Go to Settings -&amp;gt; Permalinks and set the permalink structure to something like /%postname%/&lt;br /&gt;
*Create two empty pages (with no content in them) titled '''Home''' and '''Blog'''.&lt;br /&gt;
*Go to Settings -&amp;gt; Reading. Under ''Front page displays'', select &amp;quot;A static page (select below)&amp;quot;, choose '''Home''' for Front page and '''Blog''' for Posts page. Save changes.&lt;br /&gt;
&lt;br /&gt;
==Apply a layout to the Posts page==&lt;br /&gt;
&lt;br /&gt;
Q:I have created a layout for my Posts page. How do I apply this layout to the Posts page?&lt;br /&gt;
&lt;br /&gt;
A: Go to My Theme -&amp;gt; Layouts and Views. Click on Views tab, then Add View and associate '''Blog''' view with the layout you have created for the Posts page.&lt;br /&gt;
&lt;br /&gt;
==All the pages are getting re-directed to front(home) page==&lt;br /&gt;
&lt;br /&gt;
# Ensure that the default layout has a content module. It is a common occurrence to construct site's home/front page layout with just widget bars, HTML modules etc. and leave it as default. The layout used for Pages, posts, archives, search, category pages etc. must have a content module or else, there will be no place for the content to show up in. Therefore, it is highly recommended that default layout has content module.&lt;br /&gt;
# If you using some sort of Redirection plugin, check its settings/deactivate it (for troubleshooting)&lt;br /&gt;
&lt;br /&gt;
==Is it possible to have a 100% full width modules in Builder?==&lt;br /&gt;
It is possible to have 100% fluid modules using by editing theme's functions.php. Click [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Use_a_100.25_width_background_for_one_or_more_modules here] for details.&lt;br /&gt;
&lt;br /&gt;
When using the above method, to specify 100% width to more than 1 module see [http://ithemes.com/forum/index.php?/topic/8624-how-to-get-100-background-for-specific-modules/ this forum thread] and [http://ithemes.com/forum/index.php?/topic/10676-styling-the-content-area-from-builder-274-how-to/#p50101 this].&lt;br /&gt;
&lt;br /&gt;
You might also want to check out http://vanweerd.com/how-to-add-full-width-header-and-footer-to-the-builder-theme/&lt;br /&gt;
&lt;br /&gt;
==How do I display post excerpts as opposed to the full posts in my Posts page?==&lt;br /&gt;
&lt;br /&gt;
Edit your active theme's (should be a child theme of Builder) ''index.php''. (Note: for the Acute theme, edit ''content.php'').&lt;br /&gt;
&lt;br /&gt;
Replace a line similar to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php the_content( __( 'Read More&amp;amp;rarr;', 'it-l10n-Builder' ) ); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php the_excerpt(); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: To do the same for other views like category pages, edit the appropriate template file - archive.php, in this case. See http://codex.wordpress.org/images/1/18/Template_Hierarchy.png&lt;br /&gt;
&lt;br /&gt;
If you would like to control the number of characters to appear in excerpts and change the cut-off character from &amp;quot;...&amp;quot; to something else, you might want to use [http://wordpress.org/extend/plugins/the-excerpt-re-reloaded/ The Excerpt re-reloaded] or [http://wordpress.org/extend/plugins/excerpts-deluxe/ Excerpts Deluxe] or [http://wordpress.org/extend/plugins/advanced-excerpt/ Advanced Excerpt].&lt;br /&gt;
&lt;br /&gt;
Also see http://codex.wordpress.org/Function_Reference/the_excerpt&lt;br /&gt;
&lt;br /&gt;
==How do I display full posts as opposed to post excerpts in my Posts page?==&lt;br /&gt;
&lt;br /&gt;
Edit your active theme's '''index.php'''. (Note: for the Acute theme, edit ''content.php'').&lt;br /&gt;
&lt;br /&gt;
Replace&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php the_excerpt(); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php the_content('Read more...'); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to place nav bar to the right of logo ==&lt;br /&gt;
&lt;br /&gt;
Follow http://ithemes.com/codex/page/BuilderChild-Default#How_to_place_nav_bar_to_the_right_of_logo&lt;br /&gt;
&lt;br /&gt;
==How do I edit the footer?==&lt;br /&gt;
&lt;br /&gt;
=== Method 1 ===&lt;br /&gt;
&lt;br /&gt;
Make a copy of ''footer.php'' from parent Builder directory, edit it and place in your child theme's (active theme) directory.&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/builder-tip-how-to-edit-footer/ Video and detailed instructions]&lt;br /&gt;
&lt;br /&gt;
Examples of customized footer.php: [http://d.pr/MwxJ 1]&lt;br /&gt;
&lt;br /&gt;
'''If you would like to have a footer.php that looks like the screenshot below as starting point to use as is or further customize''', download [http://cl.ly/0z1C1X32243A30462F1q this] zip file, extract it and upload footer.php to your child theme directory.&lt;br /&gt;
&lt;br /&gt;
[[File:Custom-footer.png|800px|thumb|none|Screenshot showing customized footer - Click to enlarge]]&lt;br /&gt;
&lt;br /&gt;
This is the code in footer.php just in case the download link does not work:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
function render_footer() {&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
	&amp;lt;!-- Begin changes --&amp;gt;&lt;br /&gt;
	&amp;lt;div class=&amp;quot;alignmiddle&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;p&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php bloginfo('url'); ?&amp;gt;&amp;quot;&amp;gt;Home&amp;lt;/a&amp;gt; | &amp;lt;a href=&amp;quot;&amp;lt;?php bloginfo('url'); ?&amp;gt;/privacy-policy/&amp;quot;&amp;gt;Privacy Policy&amp;lt;/a&amp;gt; | &amp;lt;a href=&amp;quot;&amp;lt;?php bloginfo('url'); ?&amp;gt;/terms-conditions/&amp;quot;&amp;gt;Terms &amp;amp;amp; Conditions&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
		&amp;lt;p&amp;gt;&amp;lt;?php echo date( 'Y' ); ?&amp;gt; - Copyright &amp;amp;copy; All Rights Reserved&amp;lt;/p&amp;gt;&lt;br /&gt;
	&amp;lt;/div&amp;gt;&lt;br /&gt;
	&amp;lt;!-- End changes --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;?php wp_footer(); ?&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
add_action( 'builder_layout_engine_render_footer', 'render_footer' );&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace &amp;amp;amp; with '''&amp;amp; a m p ;''' without spaces and © with '''&amp;amp; c o p y ;''' without the spaces.&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.alignmiddle {&lt;br /&gt;
	text-align: center;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Method 2 ===&lt;br /&gt;
&lt;br /&gt;
To remove the credit to iThemes Builder (but leave the standard copyright notice, powered by WordPress etc.) you could also include this function in your child theme's functions.php:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_filter( 'builder_footer_credit', 'custom_builder_footer_credit' );&lt;br /&gt;
&lt;br /&gt;
function custom_builder_footer_credit( $footer_credit ) {&lt;br /&gt;
    $footer_credit = 'Powered by &amp;lt;a href=&amp;quot;http://wordpress.org&amp;quot;&amp;gt;WordPress&amp;lt;/a&amp;gt;&amp;lt;br /&amp;gt;Customized by &amp;lt;a href=&amp;quot;http://me.com/&amp;quot;&amp;gt;Myself!&amp;lt;/a&amp;gt;';&lt;br /&gt;
    &lt;br /&gt;
    return $footer_credit;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ensure that line numbers are not present in the code in functions.php.&lt;br /&gt;
&lt;br /&gt;
See http://www.screencast.com/t/R2hJBzCRk and http://www.screencast.com/t/ZajvGiQGo&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/index.php?/topic/12687-edit-footer/#p59955&lt;br /&gt;
&lt;br /&gt;
== How to backup and restore a WordPress site that uses Builder ==&lt;br /&gt;
&lt;br /&gt;
=== Manually ===&lt;br /&gt;
&lt;br /&gt;
The standard method of backing up database, editing the resulting .sql file to do a find and replace of source and destination URLs, importing the modified .sql to the new server and then uploading the files will not work in case of Builder sites.&lt;br /&gt;
&lt;br /&gt;
The reason for this is that simple find and replace can not handle [http://wpgarage.com/tips/data-portability-and-data-serialization-in-wordpress/ serialized data]. A solution that handles serialized data must be used. We have tested [http://wordpress.org/extend/plugins/wp-migrate-db/ WP Migrate DB] successfully to manually copy a Builder site with no loss of data (layouts incl their IDs, Style Manager Styles, widgets etc.) from one location to another.&lt;br /&gt;
&lt;br /&gt;
=== Automated (simpler and faster) ===&lt;br /&gt;
&lt;br /&gt;
[http://pluginbuddy.com/purchase/backupbuddy/ BackupBuddy] is the only solution that lets you completely backup and restore a Builder site. For a discussion on the reason behind this, see post #8 at [http://ithemes.com/forum/index.php?/topic/7451-how-do-i-restore-a-site-to-a-different-host-wo-losing-layouts-and-wo-using-backupbuddy/ this] forum thread.&lt;br /&gt;
&lt;br /&gt;
==How to add a custom favicon==&lt;br /&gt;
&lt;br /&gt;
# go to using wp-dashboard &amp;gt; My Theme &amp;gt; Settings, click Favicon and select an icon, or upload your own&lt;br /&gt;
# alternatively (but not recommended) you can upload favicon.ico file to your child theme's images directory. Ex.: wp-content/themes/BuilderChild-Foundation/images&lt;br /&gt;
&lt;br /&gt;
Tip: There are services like [http://www.htmlkit.com/services/favicon/ this] and [http://tools.dynamicdrive.com/favicon/ this] which lets you upload a regular image (jpg, png, gif etc.) and convert them to a .ico file.&lt;br /&gt;
&lt;br /&gt;
==How to upgrade Builder?==&lt;br /&gt;
&lt;br /&gt;
See [[Builder_Documentation#How_to_upgrade_Builder|How to upgrade Builder]]&lt;br /&gt;
&lt;br /&gt;
==How to fix &amp;quot;Fatal Error: Class 'ITStorage2' not found&amp;quot;==&lt;br /&gt;
&lt;br /&gt;
This happens because of upgrading Builder without first updating the associated plugins like Style Manager and SEO plugin. &lt;br /&gt;
&lt;br /&gt;
This could have been avoided by following the instructions we provided on how to upgrade Builder [[Builder_Documentation#How_to_upgrade_Builder|here]].&lt;br /&gt;
&lt;br /&gt;
To fix the issue,&lt;br /&gt;
&lt;br /&gt;
# Connect to your web server using either the file manager in cPanel of your hosting account or a FTP client.&lt;br /&gt;
# Download the latest versions of Style Manager (if you are using this plugin) and Builder SEO plugin (if you are using this plugin) zip files from your [http://ithemes.com/member/member.php Member Panel].&lt;br /&gt;
# Extract the contents of these plugins (whichever is being used i.e., present at wp-content/plugins) and upload them to the corresponding directories in wp-content/plugins overwriting the existing ones.&lt;br /&gt;
&lt;br /&gt;
==How to upgrade Builder when a child theme isn't being used?==&lt;br /&gt;
&lt;br /&gt;
It is always good to use a child theme of Builder as the active theme and not Builder directly. This will avoid custom changes to the theme files from being overwritten by the upgrade.&lt;br /&gt;
&lt;br /&gt;
If you were not aware of this and have been directly using Builder as the active theme and would like to now upgrade to the latest version, follow this approach:&lt;br /&gt;
&lt;br /&gt;
# Take a full backup of your site using [http://pluginbuddy.com/purchase/backupbuddy/ BackupBuddy]. If purchasing BackupBuddy is not an option, take a backup of wp-content/themes/Builder directory and WordPress database (using phpMyAdmin or otherwise) at the least.&lt;br /&gt;
# Make a note of all file changes (modifications and new additions) inside Builder directory. Usually modifications will be done to templates like index.php, single.php, archive.php and style.css.&lt;br /&gt;
# Upload the latest default child theme to wp-content/themes. It can be downloaded from [http://ithemes.com/member/member.php member panel].&lt;br /&gt;
# Apply all changes that were noted in step 2 in wp-content/themes/BuilderChild-Default&lt;br /&gt;
# Upgrade Builder to the latest version by following the steps in http://ithemes.com/codex/page/Builder_Documentation#How_to_upgrade_Builder&lt;br /&gt;
# Activate the child theme.&lt;br /&gt;
# Check your site and fix anything that is amiss. If there are any links whose URLs point to files inside Builder directory, they may have to be changed to point to the child theme directory.&lt;br /&gt;
&lt;br /&gt;
==How do I add search at the right side of my nav bar?==&lt;br /&gt;
&lt;br /&gt;
=== Method 1 ===&lt;br /&gt;
Pre-requisite: WordPress 3+, Builder 2.4.10+&lt;br /&gt;
&lt;br /&gt;
Rather than using the navigation module, add an HTML module where you want the navigation to appear&lt;br /&gt;
*add the following content to the textbox  (assuming your menu is called &amp;quot;menu1&amp;quot;, change of course if needed):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;nav_container&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php wp_nav_menu( array( 'menu' =&amp;gt; 'menu1', 'menu_class' =&amp;gt; 'builder-module-navigation') ); ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;search_in_nav&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;?php get_search_form(); ?&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*save the html module, select &amp;lt;tt&amp;gt;no sidebars&amp;lt;/tt&amp;gt;, and &amp;lt;tt&amp;gt;enable PHP&amp;lt;/tt&amp;gt;,&lt;br /&gt;
*save the Builder layout&lt;br /&gt;
*add the following code to your stylesheet:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#nav_container {&lt;br /&gt;
    height: 34px;&lt;br /&gt;
    display: block;&lt;br /&gt;
    width: 100%;&lt;br /&gt;
    background: #FFFFFF url('images/nav_bg.png') repeat top left;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.search_in_nav {&lt;br /&gt;
    float: right;&lt;br /&gt;
    display: block;&lt;br /&gt;
    width: 250px;&lt;br /&gt;
    height: 24px;&lt;br /&gt;
    padding: 0px 5px;&lt;br /&gt;
    margin: 0px;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*play around a bit with the margins and paddings, heights and widths.&lt;br /&gt;
&lt;br /&gt;
'''Note: This method can also be applied to place a image or RSS feed or any HTML in the nav bar.'''&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/5151-dps-solutions-builder/#p23629 this topic on the forum]&lt;br /&gt;
&lt;br /&gt;
[http://vanweerd.com/how-to-replace-text-links-with-icon-links-in-wp-3-navigation-menus/ Additional Resource 1], [http://ithemes.com/forum/index.php?/topic/10290-adding-social-media-icons-to-the-main-menu-nav/ Additional Resource 2]&lt;br /&gt;
&lt;br /&gt;
=== Method 2 ===&lt;br /&gt;
&lt;br /&gt;
http://ithemes.com/codex/page/Builder_Tips_and_Tricks#How_to_add_a_search_form_at_the_right_side_in_a_nav_bar&lt;br /&gt;
&lt;br /&gt;
==At Appearance -&amp;gt; Editor, templates like footer.php do not appear==&lt;br /&gt;
&lt;br /&gt;
See [http://ithemes.com/forum/index.php?/topic/12061-why-is-child-theme-forum-locked/#p56540 this] and [http://wordpress.org/support/topic/child-themes-in-31-rc2?replies=8 this].&lt;br /&gt;
&lt;br /&gt;
==PCLZIP_ERR_BAD_FORMAT==&lt;br /&gt;
&lt;br /&gt;
When Builder is being installed, if the following appears&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Installing Theme from uploaded file: Builder.zip&lt;br /&gt;
&lt;br /&gt;
Unpacking the package…&lt;br /&gt;
&lt;br /&gt;
Incompatible Archive. PCLZIP_ERR_BAD_FORMAT (-10) : Unable to find End of Central Dir Record signature&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it means that the zip file is corrupt. Try re-downloading it using another browser.&lt;br /&gt;
&lt;br /&gt;
From our observation, this is happening only on Macs. So if you have a spare Windows computer, try downloading Builder again from PC.&lt;br /&gt;
&lt;br /&gt;
==How to center my navigation menu==&lt;br /&gt;
&lt;br /&gt;
http://ithemes.com/codex/page/Builder_CSS_Guide#To_center_the_content_of_nav_bar&lt;br /&gt;
&lt;br /&gt;
== How to assign a layout to all posts belonging to a specific category ==&lt;br /&gt;
&lt;br /&gt;
No view exists which can be used for all single post pages belonging to a particular category.&lt;br /&gt;
&lt;br /&gt;
There are design questions that need to be addressed before implementing such a view. What will happen if a post belongs to multiple categories? In such case suppose the user sets a view associating all posts from Category A and another one for all posts from Category B, and if a post belongs to both the categories there will be conflicting views which leads to the question: which layout should be applied for that post's single page?&lt;br /&gt;
&lt;br /&gt;
The only way currently is to edit each post and set the layout manually.&lt;br /&gt;
&lt;br /&gt;
Forum topic on this: http://ithemes.com/forum/topic/17616-layout-for-single-post-page-of-only-one-post-category/&lt;br /&gt;
&lt;br /&gt;
===Update: There now is a fairly straightforward solution for this===&lt;br /&gt;
Chris has come up with a code snippet that needs to be placed in child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; which allows you to specify a specific layout using specific conditions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_filter_category_layouts( $layout_id ) {&lt;br /&gt;
    if ( is_single() &amp;amp;&amp;amp; in_category( 'news' ) )&lt;br /&gt;
            return '4e5f997043d8e';&lt;br /&gt;
    &lt;br /&gt;
    return $layout_id;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_current_layout', 'custom_filter_category_layouts' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The builder_filter_current_layout filter runs after the Layout selection process has finished and allows custom code to have the final say on what Layout is used. The example code will force the current Layout to be the one with an ID of &amp;quot;4e5f997043d8e&amp;quot; if the site is currently showing an individual post that is in the &amp;quot;news&amp;quot; category. If this condition isn't met, it returns the current Layout ID so that it doesn't change any of the other portions of the site. This can be modified to use any category and any Layout ID.&lt;br /&gt;
&lt;br /&gt;
To find the ID for a Layout, go to the Layouts listing, copy the edit link for the desired Layout, paste the link somewhere, and grab the text after the last equal sign. For example, consider the following link:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;http://example.com/wp-admin/admin.php?page=layout-editor&amp;amp;editor_tab=layouts&amp;amp;layout=4e5f997043849&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The Layout's ID is 4e5f997043849.&lt;br /&gt;
&lt;br /&gt;
To use the code, simply add it to your child theme's functions.php file.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
See also: http://ithemes.com/forum/topic/22220-assigning-a-layout-for-post-page-by-category&lt;br /&gt;
&lt;br /&gt;
==Does WordPress 3.0 menu system work in Builder?==&lt;br /&gt;
&lt;br /&gt;
Oh yes! Even before the WordPress 3.0 menu system's final version got released. Then what about this message &amp;quot;Your theme supports 0 menus. Select which menu appears in each location.&amp;quot;?, you may be asking. Well, just ignore it. Go ahead and create your menu at Appearance -&amp;gt; Menus, then edit your layout and in the navigation module's settings, select &amp;quot;Custom Menu - ''name''&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
You might want to watch [http://ithemes.com/wordpress-3-0-menus-demo-video-on-ithemes-builder/ WordPress 3.0 Menus Demo Video on iThemes Builder].&lt;br /&gt;
&lt;br /&gt;
== How to use a custom font in Builder? ==&lt;br /&gt;
&lt;br /&gt;
See [http://ithemes.com/forum/topic/29969-how-to-add-custom-menu-fonts-to-builder/page__view__findpost__p__138928 this] forum post for an example.&lt;br /&gt;
&lt;br /&gt;
== Builder and BuddyPress ==&lt;br /&gt;
&lt;br /&gt;
Builder's child theme [http://ithemes.com/codex/page/Builder_Child_Themes#Yukon Yukon] has built-in support for BuddyPress. It is designed specifically to work with BuddyPress, and does not require the template pack.&lt;br /&gt;
&lt;br /&gt;
To install BuddyPress while using Builder Yukon as a child theme, follow these steps:&lt;br /&gt;
&lt;br /&gt;
# Install WordPress&lt;br /&gt;
# Upload the [http://wordpress.org/extend/plugins/buddypress/ BuddyPress plugin] (from WP repository)&lt;br /&gt;
# Activate and follow the BuddyPress installation five-step walkthrough (during step #4 choose to use the included BuddyPress theme, and then finish the installation)&lt;br /&gt;
# Upload Builder Theme (Core)&lt;br /&gt;
# Upload the Builder child Yukon theme and activate. With Builder and BuddyPress now setup, begin customization.&lt;br /&gt;
&lt;br /&gt;
For all other Builder child themes, BuddyPress need to be installed like it will be installed for any other WordPress theme. Those will require the BuddyPress template pack plugin. On using the template pack: http://wordpress.org/extend/plugins/bp-template-pack/&lt;br /&gt;
&lt;br /&gt;
More [http://ithemes.com/2012/03/14/our-first-builder-child-theme-for-buddypress-yukon/ here] and a follow up post [http://ithemes.com/forum/topic/25458-when-to-activate-buddypress-template-packmembership/ here].&lt;br /&gt;
&lt;br /&gt;
== How to change text and layout of 404 pages in iThemes Builder ==&lt;br /&gt;
&lt;br /&gt;
Copy &amp;lt;code&amp;gt;not_found.php&amp;lt;/code&amp;gt; from parent Builder directory into active child theme directory and edit it to your liking.&lt;br /&gt;
&lt;br /&gt;
[http://pastebin.com/ERwP3BmB Here] is a sample modified not_found.php file.&lt;br /&gt;
&lt;br /&gt;
To apply your desired layout to any 404 page, '''add a 404 View''' at My Theme -&amp;gt; Layouts &amp;amp; Views -&amp;gt; Views (tab).&lt;br /&gt;
&lt;br /&gt;
Sample screenshot:&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-05-03 at 5.15.49 PM.png|365px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
= Less Frequently Asked Questions =&lt;br /&gt;
&lt;br /&gt;
== How do I disable comments on all Pages? ==&lt;br /&gt;
&lt;br /&gt;
Use the [http://wordpress.org/extend/plugins/no-comments-on-pages/ no comments on pages] plugin&lt;br /&gt;
&lt;br /&gt;
==I want to get rid of the text &amp;quot;Comments are closed&amp;quot; at the bottom of the content==&lt;br /&gt;
&lt;br /&gt;
Add the following to your theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.nocomments {&lt;br /&gt;
   display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Uploaded images do not appear==&lt;br /&gt;
&lt;br /&gt;
'''1.''' Ensure that the image is saved in the right format (extension). For example, if a png file is incorrectly saved as .jpg, then it won't work. Two ways of checking this is opening the image in a) Photoshop b) Irfanview.&lt;br /&gt;
&lt;br /&gt;
'''2.''' WordPress 3.5 has taken away the option to manually change the path through WordPress settings, but one can follow [http://www.wpbeginner.com/wp-tutorials/how-to-change-the-default-media-upload-location-in-wordpress-3-5/ these] instructions, and set it to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
define( 'UPLOADS', 'wp-content/'.'uploads' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In your WP dashboard go to Settings -&amp;gt; Media. Tick the option to organize uploads in year and month based folders.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Check to see if GD image library support is enabled in your hosting. This can be checked by saving the following as a php file, say phpinfo.php and accessing it from the URL like yoursite.com/phpinfo.php.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?php phpinfo();?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Tip: While uploading an image in image module if you want a fully wide image (i.e., no sidebar) ensure that image width is the same as that of layout. Also specify the exact image height in the module's settings. This will avoid the image from getting stretched disproportionately.&lt;br /&gt;
&lt;br /&gt;
==I am unable to drag and drop widgets onto the sidebar==&lt;br /&gt;
&lt;br /&gt;
*Deactivate all your plugins and try.&lt;br /&gt;
*See also this [http://ithemes.com/forum/index.php?/topic/619-widget-problem-no-sidebars-defined/#p2769 support forum thread]&lt;br /&gt;
&lt;br /&gt;
==Add Module shows a blank window==&lt;br /&gt;
Q: When I go into My Theme, Layout, Create Layout then choose Add Module, a blank window comes up and just seems to hang there.&lt;br /&gt;
&lt;br /&gt;
A: Deactivate FCKEditor plugin.&lt;br /&gt;
&lt;br /&gt;
B. Deactivate White Label CMS plugin&lt;br /&gt;
&lt;br /&gt;
==Is it possible to have vertical navigation?==&lt;br /&gt;
See [http://ithemes.com/forum/index.php?/topic/4697-vertical-navigation/#p23709 this video], the content of interest starts at 07:38 in the video&lt;br /&gt;
&lt;br /&gt;
Pages and/or Categories widget can be used in the sidebar of any widget.&lt;br /&gt;
&lt;br /&gt;
Other solutions:&lt;br /&gt;
*[http://wordpress.org/extend/plugins/page-tree/ page tree] plugin&lt;br /&gt;
*[http://wordpress.org/extend/plugins/flexi-pages-widget/ flexi pages widget] plugin&lt;br /&gt;
*[http://wordpress.org/extend/plugins/simple-sidebar-navigation/ simple sidebar navigation] plugin&lt;br /&gt;
*[http://wordpress.org/extend/plugins/allwebmenus-wordpress-menu-plugin/ allwebmenus wordpress menu]  plugin&lt;br /&gt;
*[http://green-beast.com/blog/?p=157 this] article&lt;br /&gt;
&lt;br /&gt;
==The theme you are currently using isn't widget-aware==&lt;br /&gt;
Q: I can't put any widgets in the theme and keep getting this pop-up &amp;quot;The theme you are currently using isn’t widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
A: &lt;br /&gt;
* Go to the Appearance &amp;gt; Widgets page&lt;br /&gt;
* Click the Screen Options tab towards the top-right of the page&lt;br /&gt;
* Click the &amp;quot;Disable accessibility mode&amp;quot; link&lt;br /&gt;
&lt;br /&gt;
See also this [http://ithemes.com/forum/index.php?/topic/2056-widgets-not-working/#p9231 Support forum thread]&lt;br /&gt;
&lt;br /&gt;
==How to I remove the space at the top of the page==&lt;br /&gt;
Add the following code at the end of your child theme's style.css.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-container-outer-wrapper {&lt;br /&gt;
    margin-top: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==The last image in billboard appears below compared with the others==&lt;br /&gt;
&lt;br /&gt;
To fix this, add the following at the end of your theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.ithemes-billboard :last-child {&lt;br /&gt;
    margin-bottom: 1.5em !important;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==How do I get notified by email whenever there's a Builder update?==&lt;br /&gt;
&lt;br /&gt;
Updates to [http://ithemes.com/codex/page/Category:Builder/Release_Notes Builder Release Notes] page can be tracked via its RSS feed. We can use a service like [http://www.feedmyinbox.com/ Feed My Inbox] to have this RSS feed delivered to your email inbox automatically.&lt;br /&gt;
&lt;br /&gt;
==array_merge() warning==&lt;br /&gt;
When a child theme of Builder is activated, if a warning similar to the one below appears on the site&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;Warning: array_merge() [function.array-merge]: Argument #1 is not an array in ..\themes\Builder\lib\layout-engine\sidebars.php on line 264&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
the fix is to reset the theme.&lt;br /&gt;
&lt;br /&gt;
Go to My Theme -&amp;gt; Settings. Click ''Reset Options'' button.&lt;br /&gt;
&lt;br /&gt;
==Author link contains spaces==&lt;br /&gt;
&lt;br /&gt;
For description of the problem and the solution, visit [http://ithemes.com/forum/index.php?/topic/9701-author-link-produces-404-page-not-found-error/#p45268 this forum post].&lt;br /&gt;
&lt;br /&gt;
==Make parent navigation item not clickable==&lt;br /&gt;
&lt;br /&gt;
Q: I want to create a menu item in the navigation (page defined nav) that has child pages but this menu item shouldn't be clickable.&lt;br /&gt;
&lt;br /&gt;
A: Check [http://ithemes.com/forum/index.php?/topic/5123-wp-30-creating-a-drop-down-menu-without-the-top-level-item-opening-a-page/ this forum post] or you can use a plugin, such as the [http://wordpress.org/extend/plugins/page-lists-plus/ page lists plus plugin]&lt;br /&gt;
&lt;br /&gt;
== How to remove bullets above tabs in Tabber Widget widgets ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Tabber-bullets-before.png&lt;br /&gt;
File:Tabber-bullets-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of your theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
ul.tabber-widget-tabs {&lt;br /&gt;
    list-style: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==How to show blog posts at site's front page (/) as well as at another Page (/blog)==&lt;br /&gt;
&lt;br /&gt;
# At Settings -&amp;gt; Reading, ensure that Front page is set to display latest posts. This is the default setting in WordPress.&lt;br /&gt;
# Create a new Page (or edit an existing one) named say, Blog, ensure that it is blank, set the Template to ''Blog Template'' and publish/update it.&lt;br /&gt;
# [Optional] If you would like to apply a layout to front page, go to My Theme -&amp;gt; Layouts, create a layout (or duplicate existing one) for it, go to Configure Views, Add View and add associate Home view with the layout created for front page.&lt;br /&gt;
# [Optional] If you would like to apply a layout to Blog page, edit the Page and select your desired layout from Custom Layout meta box.&lt;br /&gt;
&lt;br /&gt;
==How to disable Builders built-in SEO functions==&lt;br /&gt;
In your WordPress backend, go to My Theme -&amp;gt; Settings and set 'Would You like to use post tags as META keywords on single posts?' to NO (Yes is the default).&lt;br /&gt;
&lt;br /&gt;
Then add the following code your child theme's functions.php as described.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
// Remove Parent themes SEO&lt;br /&gt;
function remove_seo() {&lt;br /&gt;
    remove_action( 'builder_add_meta_data', 'builder_seo_options' );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_action('init', 'remove_seo');&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
See also this [http://ithemes.com/forum/index.php?/topic/1243-seo/#p6094 support forum thread]&lt;br /&gt;
&lt;br /&gt;
==What is the recommended way to edit theme templates like index.php and archive.php?==&lt;br /&gt;
&lt;br /&gt;
See [http://ithemes.com/forum/index.php?/topic/12061-why-is-child-theme-forum-locked/#p56540 this forum post]&lt;br /&gt;
&lt;br /&gt;
==How to change the name of a child theme?==&lt;br /&gt;
&lt;br /&gt;
Follow [http://ithemes.com/forum/index.php?/topic/11935-changed-the-name-of-the-child-theme-and-now-the-site-is-messed-up/#p55943 this] example.&lt;br /&gt;
&lt;br /&gt;
==Where is functions.php?==&lt;br /&gt;
&lt;br /&gt;
One should never make changes in functions.php inside parent Builder directory. functions.php in child theme directory should be the one to make changes in. Some child themes will have functions.php and some don't. If this file is not present in child theme directory, create a new file named functions.php, place opening (&amp;lt;?php) and closing (?&amp;gt;) PHP tags, save and upload it to child theme directory using a FTP client. Alternately cPanel's file manager also lets us create files on the server.&lt;br /&gt;
&lt;br /&gt;
Here is how a sample fresh functions.php file looks like:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Any code that we advise you to add in functions.php must be added before the closing PHP tag.&lt;br /&gt;
&lt;br /&gt;
== Which Builder themes are mobile compatible? ==&lt;br /&gt;
&lt;br /&gt;
With Builder, any of our child themes could be used as mobile themes simply by setting up your layout to be more narrow like the size of the iPhone screen.&lt;br /&gt;
&lt;br /&gt;
Here are a few things to consider with mobile themes though:&lt;br /&gt;
&lt;br /&gt;
Load times are slow, so you will want to use a theme that doesn't have many images to load. Any of the Foundation themes are a good example of this (among others).&lt;br /&gt;
&lt;br /&gt;
None of our existing child themes have any gesturing built in to them, so some of the gestures that are very useful on the iPhone won't exist in child themes.&lt;br /&gt;
&lt;br /&gt;
We do offer the [http://pluginbuddy.com/purchase/mobile/ Mobile plugin], which comes with a set of themes and a simple style manager that will allow you to match the colors of your mobile theme to the colors of your standard theme. You should have access to the Mobile plugin in your member area.&lt;br /&gt;
&lt;br /&gt;
== What are the minimum requirements for running Builder ==&lt;br /&gt;
&lt;br /&gt;
The same as those needed for running WordPress 3.2 namely: at least php 5.2.4 and MySQL 5+.&lt;br /&gt;
&lt;br /&gt;
More info: http://ithemes.com/forum/index.php?/topic/15708-minimum-requirements-for-builder-theme/&lt;br /&gt;
&lt;br /&gt;
== How to setup a server on your computer, develop Builder sites locally and migrate them to another location  ==&lt;br /&gt;
&lt;br /&gt;
If you are on Windows:&lt;br /&gt;
&lt;br /&gt;
# Install [http://www.apachefriends.org/en/xampp.html XAMPP].&lt;br /&gt;
# Set C:\xampp as the installation folder, now your localhost root will be in &amp;quot;htdocs&amp;quot; folder inside C:\xampp.&lt;br /&gt;
# [Optional] Set a password for MySQL.&lt;br /&gt;
# Download WordPress, extract the zip file and copy/move 'wordpress' folder inside C:\xampp\htdocs. Rename 'wordpress' folder to whatever is the name of your project.&lt;br /&gt;
# Install WP [http://codex.wordpress.org/Installing_WordPress#Famous_5-Minute_Install manually].&lt;br /&gt;
# [http://ithemes.com/codex/page/Builder_Documentation#How_to_install_Builder Set up Builder].&lt;br /&gt;
# Once it is all ready, use BackupBuddy to do a full backup. The generated zip file should be in wp-content/uploads. Download importbuddy.php.&lt;br /&gt;
# To learn how to restore the site to another location, watch the video [http://pluginbuddy.com/purchase/backupbuddy/backupbuddy-training/ here].&lt;br /&gt;
&lt;br /&gt;
If you are on Mac, install free version of [http://www.mamp.info/ MAMP] by following [http://www.youtube.com/watch?v=EJFmogQVG8c this] video. Do from step 4 (the root folder on Mac will differ) onwards listed above. I have set &amp;quot;Sites&amp;quot; inside my user directory as the root.&lt;br /&gt;
&lt;br /&gt;
Screenshot:&lt;br /&gt;
&lt;br /&gt;
[[File:Screen shot 2011-07-23 at 9.24.59 AM.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
== Can Builder be used to create a fluid/responsive site? ==&lt;br /&gt;
&lt;br /&gt;
Very soon.&lt;br /&gt;
&lt;br /&gt;
Builder is becoming responsive.&lt;br /&gt;
&lt;br /&gt;
See http://ithemes.com/2012/10/10/responsive-is-coming-to-ithemes-builder/&lt;br /&gt;
&lt;br /&gt;
== I installed my Builder powered WordPress site at site.com/wordpress. How do I move it to site.com? ==&lt;br /&gt;
&lt;br /&gt;
Follow [http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory#Using_a_pre-existing_subdirectory_install this].&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/topic/20738-replacing-old-html-site-with-new-wordpress-site/ Forum topic].&lt;br /&gt;
&lt;br /&gt;
== My site is loading slow ==&lt;br /&gt;
&lt;br /&gt;
The extra divs in the markup generated by Builder aren't going to impact site performance. A standard WordPress site with a fresh installation of Builder with no plugins loads just fine without any slowness on a decent host like HostGator. Site slowness, if present is (in 99% of the cases) not coming from Builder, but from other factors like non-optimized images, a lot of scripts added by plugins, hosting setup etc.&lt;br /&gt;
&lt;br /&gt;
Things to check for when your site is loading slow:&lt;br /&gt;
&lt;br /&gt;
# Ensure that images (like the ones in header, sliders, Pages and Posts) are optimized for web.&lt;br /&gt;
# Ensure that there are no references/calls to URLs (links within the site) that do not exist.&lt;br /&gt;
# Deactivate plugins and see if it makes a difference.&lt;br /&gt;
# Try using a caching plugin like W3 Total Cache and/or a CDN.&lt;br /&gt;
# Analyze your site in http://gtmetrix.com/ &lt;br /&gt;
&lt;br /&gt;
Some useful links:&lt;br /&gt;
&lt;br /&gt;
* http://richwp.com/wordpress-cdn-total-cache-amazon-cloudfront/&lt;br /&gt;
* http://wp.tutsplus.com/tutorials/the-ultimate-quickstart-guide-to-speeding-up-your-wordpress-site/&lt;br /&gt;
* http://www.noupe.com/how-tos/speeding-up-wordpress.html&lt;br /&gt;
* http://wpshout.com/faster-wordpress/&lt;br /&gt;
* http://css-tricks.com/video-screencasts/114-lets-do-simple-stuff-to-make-our-websites-faster/&lt;br /&gt;
&lt;br /&gt;
== What are the requirements for using Builder? ==&lt;br /&gt;
&lt;br /&gt;
At a minimum, we have the same requirements as WordPress. As can be seen on the [http://wordpress.org/about/requirements/ WordPress requirements page], the minimum supported version of PHP at the time of writing this is 5.2.4.&lt;br /&gt;
&lt;br /&gt;
Builder will always be updated to handle any issues present in future PHP releases. A few versions back, Builder had some issues with the PHP 5.4.x releases. These issues have since been fixed.&lt;br /&gt;
&lt;br /&gt;
So, as of this very moment, Builder is officially compatible with 5.2.4+.&lt;br /&gt;
&lt;br /&gt;
== Why do you advise me to add CSS code at the end of style.css versus directly modifying within? ==&lt;br /&gt;
&lt;br /&gt;
The safest way to make css modifications is if you copy the code that our support moderators supply literally and add it in the location suggested. If you feel more confident hacking into existing code through changes that might cripple your site, feel free to do so, but we will not advise you to do so.&lt;br /&gt;
&lt;br /&gt;
For example, if the code doesn't work (which is highly unlikely, since we test all code before we suggest it), and it's added at the end of your stylesheet, it will NOT harm anything, and we can review what you did, and suggest on how to fix it (did you forget a { or a ; or another character). If however something went bad halfway your stylesheet, your site could easily be completely messed up and all css following any invalid code (for example a missing { or } ) will be invalid as well.&lt;br /&gt;
&lt;br /&gt;
This is our professional advise, but of course, you are free to choose whichever solution you think is best. Do note that it will frustrate our support efforts if there is an issue, and we have to search through a couple of hundred lines of css code to see what might or might not have been changed, opposed to just scrolling to the end of your stylesheet, and locate all customisations in one spot.&lt;br /&gt;
&lt;br /&gt;
== Layouts do not appear correctly ==&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
&lt;br /&gt;
[[File:Wp1 2013-04-30 10-27-47.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
[[File:Wp1 2013-04-30 10-28-06.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
If the site does not appear correctly with the container not centered and everything aligned to the left, ensure that permissions of all directories in (including) &amp;lt;code&amp;gt;wp-content/uploads&amp;lt;/code&amp;gt; is '''755'''.&lt;br /&gt;
&lt;br /&gt;
Especially these directories in &amp;lt;code&amp;gt;uploads&amp;lt;/code&amp;gt; directory:&lt;br /&gt;
&lt;br /&gt;
* it-file-cache&lt;br /&gt;
* it-file-cache/builder-core&lt;br /&gt;
* it-file-cache/builder-layouts&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-04-30 at 10.24.25 AM.png|304px|thumb|none]]&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:Screen_Shot_2013-05-03_at_5.15.49_PM.png</id>
		<title>File:Screen Shot 2013-05-03 at 5.15.49 PM.png</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:Screen_Shot_2013-05-03_at_5.15.49_PM.png"/>
				<updated>2013-05-03T11:47:41Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/Plugin_related_and_other_generic_customizations_2</id>
		<title>Plugin related and other generic customizations 2</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/Plugin_related_and_other_generic_customizations_2"/>
				<updated>2013-04-30T07:42:25Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: /* Examples of Using jQuery in Builder */ Added === Easy Accordion jQuery plugin in iThemes Builder ===&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''This is Page 2 of ''Plugin related and other generic customizations in Builder''. [http://ithemes.com/codex/page/Plugin_related_and_other_generic_customizations_in_Builder Here] is Page 1.'''&lt;br /&gt;
&lt;br /&gt;
== How to add social media icons in nav bar ==&lt;br /&gt;
&lt;br /&gt;
This can be done in at least 2 different ways. The primary difference between method 1 and 2 is that in method 2, left margin for first social icon has to be manually adjusted every time a menu item in the nav bar is changed. For this reason, '''method 1 is recommended'''.&lt;br /&gt;
&lt;br /&gt;
=== Method 1 ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-09-02 12-52-02.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Create (if you haven't already) a custom menu at Appearance -&amp;gt; Menus, which should appear in the nav bar.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Instead of a navigation module, use a PHP enabled HTML module having this sample code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php wp_nav_menu( array( 'menu' =&amp;gt; 'primary', 'menu_class' =&amp;gt; 'builder-module-navigation') ); ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;my-social-icons&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
    &amp;lt;li class=&amp;quot;social-icon&amp;quot;&amp;gt;&amp;lt;a target=&amp;quot;_blank&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;http://www.facebook.com/&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;fade&amp;quot; style=&amp;quot;opacity: 1; -moz-opacity: 1;&amp;quot; title=&amp;quot;Follow Us on Facebook&amp;quot; alt=&amp;quot;Follow Us on Facebook&amp;quot; src=&amp;quot;http://ithemes.com/builder/misc/social-media-icons/32/facebook.png&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
    &amp;lt;li class=&amp;quot;social-icon&amp;quot;&amp;gt;&amp;lt;a target=&amp;quot;_blank&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;http://twitter.com/#!/&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;fade&amp;quot; style=&amp;quot;opacity: 1; -moz-opacity: 1;&amp;quot; title=&amp;quot;Follow Us on Twitter&amp;quot; alt=&amp;quot;Follow Us on Twitter&amp;quot; src=&amp;quot;http://ithemes.com/builder/misc/social-media-icons/32/twitter.png&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
    &amp;lt;li class=&amp;quot;social-icon&amp;quot;&amp;gt;&amp;lt;a target=&amp;quot;_blank&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;http://www.yoursite.com/feed/&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;fade&amp;quot; style=&amp;quot;opacity: 1; -moz-opacity: 1;&amp;quot; title=&amp;quot;Follow Us on RSS&amp;quot; alt=&amp;quot;Follow Us on RSS&amp;quot; src=&amp;quot;http://ithemes.com/builder/misc/social-media-icons/32/rss.png&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
    &amp;lt;li class=&amp;quot;social-icon&amp;quot;&amp;gt;&amp;lt;a target=&amp;quot;_blank&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;mailto: admin@yoursite.com&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;fade&amp;quot; style=&amp;quot;opacity: 1; -moz-opacity: 1;&amp;quot; title=&amp;quot;E-mail Us&amp;quot; alt=&amp;quot;E-mail Us&amp;quot; src=&amp;quot;http://ithemes.com/builder/misc/social-media-icons/32/email.png&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt; &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note:&lt;br /&gt;
&lt;br /&gt;
# In the above, change &amp;lt;code&amp;gt;primary&amp;lt;/code&amp;gt; to the slug of your custom menu. Ex.: If the name of your custom menu is &amp;quot;Main Menu&amp;quot;, it slug will be &amp;lt;code&amp;gt;main-menu&amp;lt;/code&amp;gt;.&lt;br /&gt;
# It is recommended to use the social icons from your WordPress site. You should download the icons referred to in the above code, upload them to your site and use those links instead.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add the following sample code at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
/************************************************************************&lt;br /&gt;
    For right floating social icons in a HTML module showing nav bar&lt;br /&gt;
*************************************************************************/&lt;br /&gt;
&lt;br /&gt;
.builder-module-2 {&lt;br /&gt;
	background: #FAA51B;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.menu-primary-container {&lt;br /&gt;
	float: left;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#menu-primary {&lt;br /&gt;
	margin-bottom: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
li.social-icon a, li.social-icon a:hover {&lt;br /&gt;
    padding: 1px 0 0 8px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
li.social-icon a:hover {&lt;br /&gt;
    opacity: 0.8;&lt;br /&gt;
    -moz-opacity: 0.8;&lt;br /&gt;
    background: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
li.social-icon:hover,&lt;br /&gt;
li.social-icon:hover a {&lt;br /&gt;
    background: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.my-social-icons {&lt;br /&gt;
	float: right;&lt;br /&gt;
	margin-right: 10px;&lt;br /&gt;
	padding-top: 8px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.my-social-icons ul {&lt;br /&gt;
	list-style: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.my-social-icons li {&lt;br /&gt;
	float: left;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: In the above&lt;br /&gt;
&lt;br /&gt;
a) Change the number (2) in &amp;lt;code&amp;gt;.builder-module-2&amp;lt;/code&amp;gt; so it is the module number from top in layout.&lt;br /&gt;
&lt;br /&gt;
b) In &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-2 {&lt;br /&gt;
	background: #FAA51B;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
replace &amp;lt;code&amp;gt;background: #FAA51B;&amp;lt;/code&amp;gt; with child theme's styles set for navigation module or in the case of Thinner, those of &amp;lt;code&amp;gt;.builder-module-navigation ul.menu&amp;lt;/code&amp;gt;. i.e.,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-2 {&lt;br /&gt;
	/*background: #FAA51B;*/&lt;br /&gt;
	overflow: hidden;&lt;br /&gt;
	background: #F6F6F6;&lt;br /&gt;
	background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#F6F6F6));&lt;br /&gt;
	background: -webkit-linear-gradient(#FFFFFF, #F6F6F6);&lt;br /&gt;
	background: -moz-linear-gradient(#FFFFFF, #F6F6F6);&lt;br /&gt;
	background: -ms-linear-gradient(#FFFFFF, #F6F6F6);&lt;br /&gt;
	background: -o-linear-gradient(#FFFFFF, #F6F6F6);&lt;br /&gt;
	background: linear-gradient(#FFFFFF, #F6F6F6);&lt;br /&gt;
	border: 1px solid #FFF;&lt;br /&gt;
	-webkit-border-radius: 10px;&lt;br /&gt;
	-khtml-border-radius: 10px;&lt;br /&gt;
	-moz-border-radius: 10px;&lt;br /&gt;
	border-radius: 10px;&lt;br /&gt;
	-webkit-box-shadow: #AAAAAA 1px 1px 2px;&lt;br /&gt;
	-moz-box-shadow: #AAAAAA 1px 1px 2px;&lt;br /&gt;
	-o-box-shadow: #AAAAAA 1px 1px 2px;&lt;br /&gt;
	-khtml-box-shadow: #AAAAAA 1px 1px 2px;&lt;br /&gt;
	box-shadow: #AAAAAA 1px 1px 2px;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
c) &amp;lt;code&amp;gt;primary&amp;lt;/code&amp;gt; to the slug of your custom menu. Ex.: If the name of your custom menu is &amp;quot;Main Menu&amp;quot;, it slug will be &amp;lt;code&amp;gt;main-menu&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Method 2 ===&lt;br /&gt;
&lt;br /&gt;
[[File:Social-icons-navbar.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Create (if you haven't already) a custom menu at Appearance -&amp;gt; Menus, which should appear in the nav bar.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Edit your child theme's [http://ithemes.com/codex/page/Builder_Frequently_Asked_Questions#Where_is_functions.php.3F functions.php].&lt;br /&gt;
&lt;br /&gt;
Add the following at the end (before closing PHP tag, if present):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_filter('wp_nav_menu_main-menu_items','add_images', 10, 2);&lt;br /&gt;
function add_images($items, $args) {&lt;br /&gt;
 &lt;br /&gt;
        $items .= '&amp;lt;li class=&amp;quot;social-icon&amp;quot; id=&amp;quot;first-social-icon&amp;quot;&amp;gt;&amp;lt;a target=&amp;quot;_blank&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;http://www.facebook.com/&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;fade&amp;quot; style=&amp;quot;opacity: 1; -moz-opacity: 1;&amp;quot; title=&amp;quot;Follow Us on Facebook&amp;quot; alt=&amp;quot;Follow Us on Facebook&amp;quot; src=&amp;quot;http://ithemes.com/builder/misc/social-media-icons/32/facebook.png&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;';&lt;br /&gt;
        &lt;br /&gt;
        $items .= '&amp;lt;li class=&amp;quot;social-icon&amp;quot;&amp;gt;&amp;lt;a target=&amp;quot;_blank&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;http://twitter.com/#!/&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;fade&amp;quot; style=&amp;quot;opacity: 1; -moz-opacity: 1;&amp;quot; title=&amp;quot;Follow Us on Twitter&amp;quot; alt=&amp;quot;Follow Us on Twitter&amp;quot; src=&amp;quot;http://ithemes.com/builder/misc/social-media-icons/32/twitter.png&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;';&lt;br /&gt;
        &lt;br /&gt;
        $items .= '&amp;lt;li class=&amp;quot;social-icon&amp;quot;&amp;gt;&amp;lt;a target=&amp;quot;_blank&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;http://www.yoursite.com/feed/&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;fade&amp;quot; style=&amp;quot;opacity: 1; -moz-opacity: 1;&amp;quot; title=&amp;quot;Follow Us on RSS&amp;quot; alt=&amp;quot;Follow Us on RSS&amp;quot; src=&amp;quot;http://ithemes.com/builder/misc/social-media-icons/32/rss.png&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;';&lt;br /&gt;
        &lt;br /&gt;
        $items .= '&amp;lt;li class=&amp;quot;social-icon&amp;quot;&amp;gt;&amp;lt;a target=&amp;quot;_blank&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;mailto: admin@yoursite.com&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;fade&amp;quot; style=&amp;quot;opacity: 1; -moz-opacity: 1;&amp;quot; title=&amp;quot;E-mail Us&amp;quot; alt=&amp;quot;E-mail Us&amp;quot; src=&amp;quot;http://ithemes.com/builder/misc/social-media-icons/32/email.png&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;';&lt;br /&gt;
        &lt;br /&gt;
    return $items;    &lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: In the above code, ''main-menu'' must be replaced with the slug of your custom menu. Ex.: If the name of your custom menu is ''Primary Navigation'', then&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_filter('wp_nav_menu_main-menu_items','add_images', 10, 2);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
must be changed to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_filter('wp_nav_menu_primary-navigation_items','add_images', 10, 2);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''2.''' Add the following at the end of child theme's style.css and customize it if necessary:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
/* Custom Styles For The Social Media Widget Icons in Navigation */&lt;br /&gt;
&lt;br /&gt;
li#first-social-icon {&lt;br /&gt;
    margin-left: 355px; /* Adjust this value so the icons are positioned at your desired location. */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* li.social-icon {&lt;br /&gt;
    height: 36px;&lt;br /&gt;
} */ /* Needed only in certain themes like Traverse */&lt;br /&gt;
&lt;br /&gt;
li.social-icon a, li.social-icon a:hover {&lt;br /&gt;
    padding: 1px 0 0 8px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
li.social-icon a:hover {&lt;br /&gt;
    opacity: 0.8;&lt;br /&gt;
    -moz-opacity: 0.8;&lt;br /&gt;
    background: none;    &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
li.social-icon:hover,&lt;br /&gt;
li.social-icon:hover a {&lt;br /&gt;
    background: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That's it!&lt;br /&gt;
&lt;br /&gt;
This method is also explained [http://ithemesbuilder.com/how-to-add-a-items-to-builders-navigation-menus/ here].&lt;br /&gt;
&lt;br /&gt;
Sample implementations:&lt;br /&gt;
&lt;br /&gt;
'''1.''' Traverse with round icons:&lt;br /&gt;
&lt;br /&gt;
[[File:2011-11-26 10-27-16.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/20491-builder-traverse-theme-navigation-removing-block-behind-icons/#p96994 Forum topic]&lt;br /&gt;
&lt;br /&gt;
== How to display Posts from a specific category on a Page in Magazine Extension style ==&lt;br /&gt;
&lt;br /&gt;
[[File:Page-mag-style.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
The instructions below outline how to have all posts from a category named ''Issues'' (ID = 18) appear on a Page titled ''Issues List'' (slug = ''issues-list'').&lt;br /&gt;
&lt;br /&gt;
'''1.''' Ensure that [http://codex.wordpress.org/Using_Permalinks pretty permalinks] are enabled. Create a Page titled ''Issues''. Do not enter any content in the Page. Just enter the title and publish.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Save [http://d.pr/HBZR this] code as page-issues-list.php. (i.e., page-''&amp;lt;&amp;lt;slug&amp;gt;&amp;gt;''.php)&lt;br /&gt;
&lt;br /&gt;
# Set a title for this Page in line 12.&lt;br /&gt;
# Edit the category ID in line 21.&lt;br /&gt;
&lt;br /&gt;
Upload this file to child theme directory.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Copy ''lib'' directory from parent Builder/extensions/magazine directory into child theme directory.&lt;br /&gt;
&lt;br /&gt;
'''4.''' Add [http://d.pr/ns9k this] at the end of child theme's style.css.&lt;br /&gt;
&lt;br /&gt;
That's it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: If a layout is applied to this Page, ensure that it (the layout) does not have an extension applied.&lt;br /&gt;
&lt;br /&gt;
== How to use CSS3 PIE ==&lt;br /&gt;
&lt;br /&gt;
[http://css3pie.com/ PIE] stands for Progressive Internet Explorer. It is an IE attached behavior which, when applied to an element, allows IE to recognize and display a number of CSS3 properties.&lt;br /&gt;
&lt;br /&gt;
It is used to get CSS3 properties like ''border-radius'' working in IE older than version 9.&lt;br /&gt;
&lt;br /&gt;
'''Follow the steps below to make CSS3 PIE work in Builder''':&lt;br /&gt;
&lt;br /&gt;
'''Update on July 11, 2012''': Builder provides IE browser specific IDs for the html element. These are ie7, ie8 and ie9. It is thus possible to write IE 7, IE 8 and IE 9 specific CSS. [http://ithemes.com/forum/topic/30017-comment-form-text-area-weird-format-in-ie/page__view__findpost__p__139158 This] forum topic provides an example where post comment text area (which already has &amp;lt;code&amp;gt;border-radius&amp;lt;/code&amp;gt; set in style.css) can be made to show rounded corners in IE 8 using CSS3 PIE. The alternate method listed below also works.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Download the latest version of CSS3 PIE from [http://css3pie.com/download-latest here].&lt;br /&gt;
&lt;br /&gt;
'''2.''' Extract the zip flle and upload ''PIE.htc'' to any web reachable directory.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
public_html/assets/PIE.htc&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add &amp;lt;code&amp;gt;position: relative;&amp;lt;/code&amp;gt; style to all those selectors for which you would like to use CSS3 PIE. You will of course be specifying border-radius/box-shadow etc. properties (which are supported by CSS3 PIE).&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#text-6 {&lt;br /&gt;
	-moz-border-radius:10px;&lt;br /&gt;
-webkit-border-radius:10px;&lt;br /&gt;
border-radius:10px;&lt;br /&gt;
position: relative;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#text-6 .widget-title {&lt;br /&gt;
-moz-border-radius:10px 10px 0px 0px;&lt;br /&gt;
-webkit-border-radius:10px 10px 0px 0px;&lt;br /&gt;
border-radius:10px 10px 0px 0px;&lt;br /&gt;
position: relative;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The above CSS is written to make a widget whose ID is ''text-6'' rounded.&lt;br /&gt;
&lt;br /&gt;
Screenshot in Firefox:&lt;br /&gt;
&lt;br /&gt;
[[File:Rounded-corners-ff.png]]&lt;br /&gt;
&lt;br /&gt;
[http://sridhar.internal.ithemes.com/ Live Site]&lt;br /&gt;
&lt;br /&gt;
'''4.''' Add the following in your child theme's functions.php:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function my_render_ie_pie() { ?&amp;gt;&lt;br /&gt;
&amp;lt;!--[if lte IE 8]&amp;gt;&lt;br /&gt;
&amp;lt;style type=&amp;quot;text/css&amp;quot; media=&amp;quot;screen&amp;quot;&amp;gt;&lt;br /&gt;
   #your-css-elements-here { &lt;br /&gt;
          behavior: url('http://www.redkitecreative.com/PIE.htc'); &lt;br /&gt;
    }&lt;br /&gt;
&amp;lt;/style&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;![endif]--&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
}&lt;br /&gt;
add_action('wp_head', 'my_render_ie_pie', 8);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above, replace &lt;br /&gt;
&lt;br /&gt;
# &amp;lt;code&amp;gt;#your-css-elements-here&amp;lt;/code&amp;gt; with CSS selectors for which you have specified CSS 3 properties and for which you would like to use CSS3 PIE.&lt;br /&gt;
# http://www.redkitecreative.com/PIE.htc with the URL of PIE.htc on your server.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
Code in functions.php:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function my_render_ie_pie() { ?&amp;gt;&lt;br /&gt;
&amp;lt;!--[if lte IE 8]&amp;gt;&lt;br /&gt;
&amp;lt;style type=&amp;quot;text/css&amp;quot; media=&amp;quot;screen&amp;quot;&amp;gt;&lt;br /&gt;
   #text-6, #text-6 .widget-title { &lt;br /&gt;
          behavior: url('http://sridhar.internal.ithemes.com/assets/PIE.htc'); &lt;br /&gt;
    }&lt;br /&gt;
&amp;lt;/style&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;![endif]--&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
}&lt;br /&gt;
add_action('wp_head', 'my_render_ie_pie', 8);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now ''border-radius'' property for ''#text-6'' and ''#text-6 .widget-title'' will work in IE 8 and below.&lt;br /&gt;
&lt;br /&gt;
Screenshot in IE 8:&lt;br /&gt;
&lt;br /&gt;
[[File:Rounded-corners-ie8.png]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
# This particular example does not render properly in IE 7 probably because of using PIE on an element inside another element. This is the behavior coming from PIE itself and not Builder. [http://ithemes.com/codex/images/6/63/Rounded-corners-ie7.png Screenshot].&lt;br /&gt;
# IE 9 supports border-radius natively. So PIE will not be used in IE 9.&lt;br /&gt;
&lt;br /&gt;
That's it!&lt;br /&gt;
&lt;br /&gt;
Source: http://www.position-relative.com/2011/01/using-css3-pie-in-wordpress-custom-themes/&lt;br /&gt;
&lt;br /&gt;
== How to set up Shopp in iThemes Builder ==&lt;br /&gt;
&lt;br /&gt;
[http://shopplugin.net/ Shopp] is an e-commerce plugin that adds a feature-rich online store to your WordPress-powered website or blog.&lt;br /&gt;
&lt;br /&gt;
Shopp works out of the box in Builder without the need to edit any template files.&lt;br /&gt;
&lt;br /&gt;
'''The steps below outline how Shopp can be set up in Builder''':&lt;br /&gt;
&lt;br /&gt;
'''1.''' After Shopp has been installed and activated, it will create four placeholder pages.&lt;br /&gt;
&lt;br /&gt;
[[File:Shopp-placeholder-pages.png|690px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Each of these pages include Shopp-specific shortcodes that are replaced with dynamic content generated by Shopp.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Go to Shopp -&amp;gt; Settings, Continue to Shopp Setup...&lt;br /&gt;
&lt;br /&gt;
Go through the various settings and fill them out. Refer to links at the bottom of [http://docs.shopplugin.net/Installation this] page for details on these settings.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Presentation Settings:&lt;br /&gt;
&lt;br /&gt;
Make sure you have saved the settings that have been entered in the previous options thus far, if any, before proceeding further.&lt;br /&gt;
&lt;br /&gt;
a) Click on ''Use Custom Templates'' button.&lt;br /&gt;
&lt;br /&gt;
b) Create a directory in your active theme (Builder child theme) named ''shopp''. You can either use a FTP client or your hosting cPanel file manager for this.&lt;br /&gt;
&lt;br /&gt;
[[File:Creating-shopp-dir-in-child-theme.png]]&lt;br /&gt;
&lt;br /&gt;
c) Reload the Presentation Settings in the WordPress/Shopp admin and click ''Install Theme Templates'' button.&lt;br /&gt;
&lt;br /&gt;
At this point, Shopp will make a copy of the built-in default templates into the newly created shopp directory within your active theme.&lt;br /&gt;
&lt;br /&gt;
d) Tick ''Enable theme templates'' and save changes.&lt;br /&gt;
&lt;br /&gt;
'''4.''' Now you are ready to add products. Go to Shopp -&amp;gt; Products. Click Add New. Enter the details and save the product.&lt;br /&gt;
&lt;br /&gt;
[[File:Products Builder Test Site WordPress 2011-12-03 17-53-00.png|497px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Note: After a product image has been added, if its thumbnail does not appear i.e., if it looks like:&lt;br /&gt;
&lt;br /&gt;
[[File:Product-image-missing-thumbnail.png]]&lt;br /&gt;
&lt;br /&gt;
go to Shopp -&amp;gt; Settings -&amp;gt; System and uncheck ''Enable Flash-based uploading'' next to ''Upload System''. Save changes.&lt;br /&gt;
&lt;br /&gt;
You will have to edit the products and add images again.&lt;br /&gt;
&lt;br /&gt;
'''Screenshots'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Shop page (Products listing page)&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Shop- -Builder-Test-Site-2011-12-03-18-23-09.jpg|744px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Live Demo: http://sridhar.internal.ithemes.com/shop/ (Dummy site, do not place orders)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Product page&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Shop-Catalog-Products-Nike-Men-Downshifter-4-MSL-Black-Sports-Shoes- -Builder-Test-Site-2011-12-03-18-35-09.jpg|508px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Cart page&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Cart- -Builder-Test-Site-2011-12-03-18-42-53.jpg|776px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://webdesign.com/web-design-courses/under-the-hood-with-shopp-videos/ Replay videos of Under the Hood with Shopp training webinar]&lt;br /&gt;
&lt;br /&gt;
== How to float a div at any position on top of other elements in the container ==&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2011-12-19 at 10.37.52 PM.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Add the following in child theme's functions.php:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_action('builder_layout_engine_render_header', 'add_floating_box', 20 );&lt;br /&gt;
&lt;br /&gt;
function add_floating_box() { ?&amp;gt;&lt;br /&gt;
	&amp;lt;div id=&amp;quot;floating-box-container&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;div id=&amp;quot;floating-box&amp;quot;&amp;gt;&lt;br /&gt;
			HTML or PHP code comes here&lt;br /&gt;
		&amp;lt;/div&amp;gt;&lt;br /&gt;
	&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above, place the code needed to display your logo (for example) where &amp;quot;HTML code comes here&amp;quot; is present.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#floating-box-container {&lt;br /&gt;
	width: 1000px; /* set this to container (layout) width */&lt;br /&gt;
	margin: 0 auto;&lt;br /&gt;
	position: relative;&lt;br /&gt;
	z-index: 100;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#floating-box {&lt;br /&gt;
	position: absolute;&lt;br /&gt;
	top: 50px;&lt;br /&gt;
	left: 0;&lt;br /&gt;
	background: yellow;&lt;br /&gt;
	width: 200px;&lt;br /&gt;
	height: 100px;	&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above, you might want to adjust top, left, background, width and height values.&lt;br /&gt;
&lt;br /&gt;
[[File:2011-12-19 22-57-10.png|800px|thumb|none|Screenshot showing the div structure]]&lt;br /&gt;
&lt;br /&gt;
A practical example of implementing this method can be found [http://ithemes.com/codex/page/Plugin_related_and_other_generic_customizations_in_Builder#How_to_add_social_media_icons_floating_at_top_right here].&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/topic/28189-where-is-body-tag/page__view__findpost__p__130559&lt;br /&gt;
&lt;br /&gt;
== Using Easy Custom Content Types in Builder ==&lt;br /&gt;
&lt;br /&gt;
Easy Content Types, a commercial plugin provides an extremely easy to use and intuitive interface for creating custom post types, taxonomies, and meta boxes.&lt;br /&gt;
&lt;br /&gt;
Here are some general tips on using [http://codecanyon.net/item/easy-custom-content-types-for-wordpress/234182 Easy Custom Content Types for WordPress] in Builder.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Do not use &amp;lt;code&amp;gt;Post name&amp;lt;/code&amp;gt; permalink structure. &amp;lt;code&amp;gt;Day and name&amp;lt;/code&amp;gt; works fine.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Go to plugin's settings and tick the first two under &amp;quot;Post Type Templates&amp;quot;. You might also want to tick the option under &amp;quot;Taxonomy Templates&amp;quot; if you plan on using custom taxonomy archives.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-03-01 10-32-06.png|484px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''3.''' Create your Post Types.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
[[File:2012-03-01 10-44-56.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
The URL of archive listing of entries from a CPT is: http://yoursite.com/cptslug&lt;br /&gt;
&lt;br /&gt;
Ex.: http://localhost/builder/testimonials/ &lt;br /&gt;
&lt;br /&gt;
The URL of single CPT entry is: http://yoursite.com/cptslug/entrytitle&lt;br /&gt;
&lt;br /&gt;
Ex.: http://localhost/builder/testimonials/awesome-service/&lt;br /&gt;
&lt;br /&gt;
'''4.''' Check child theme directory using a FTP client or cPanel file manager. If single-''&amp;lt;cpt&amp;gt;''.php has not been automatically created, copy/upload single.php from parent Builder into the child theme and rename it as single-''&amp;lt;cpt&amp;gt;''.php.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
[[File:2012-03-01 10-39-45.png|623px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''5.''' Create any necessary Meta Boxes and Meta Fields.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
[[File:2012-03-01 10-58-00.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[[File:2012-03-01 10-58-18.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''6.''' To display Meta Field in template files like single-''&amp;lt;cpt&amp;gt;''.php, use&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php												&lt;br /&gt;
global $post;												&lt;br /&gt;
echo get_post_meta($post-&amp;gt;ID, 'ecpt_clienturl', true);&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace &amp;quot;ecpt_clienturl&amp;quot; with the name of your field.&lt;br /&gt;
&lt;br /&gt;
'''7.''' To display a Meta Field in LoopBuddy layout, use &amp;quot;Custom Field&amp;quot; tag and enter the field name in &amp;quot;Meta Key&amp;quot; text input.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-03-01 11-11-28.png|547px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''8.''' If comments area is not appearing in single CPT entry pages on the site, go to My Theme -&amp;gt; Settings -&amp;gt; Comments. Uncheck the CPT, save settings, re-check it and save settings.&lt;br /&gt;
&lt;br /&gt;
== How to show top most (latest) post in full and the others as excerpts ==&lt;br /&gt;
&lt;br /&gt;
Screenshot: http://d.pr/nfl1&lt;br /&gt;
&lt;br /&gt;
Edit child theme's index.php and any other needed template files like archive.php that output a list of posts.&lt;br /&gt;
&lt;br /&gt;
Replace the ''the_content()'' or ''the_excerpt()'' function call with the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php /* Conditional output flag set after first post */ ?&amp;gt;&lt;br /&gt;
&amp;lt;?php if($showexcerpt) : ?&amp;gt;&lt;br /&gt;
   &amp;lt;?php the_excerpt(); ?&amp;gt;&lt;br /&gt;
&amp;lt;?php else: ?&amp;gt;&lt;br /&gt;
  &amp;lt;?php the_content(); ?&amp;gt;&lt;br /&gt;
&amp;lt;?php endif; ?&amp;gt;&lt;br /&gt;
&amp;lt;?php $showexcerpt=true; ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ex.: In Foundation Blank's index.php,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php the_content( __( 'Read More&amp;amp;rarr;', 'it-l10n-BuilderChild-Foundation-Blank' ) ); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
should be replaced with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php /* Conditional output flag set after first post */ ?&amp;gt;&lt;br /&gt;
							&amp;lt;?php if($showexcerpt) : ?&amp;gt;&lt;br /&gt;
							   &amp;lt;?php the_excerpt(); ?&amp;gt;&lt;br /&gt;
							&amp;lt;?php else: ?&amp;gt;&lt;br /&gt;
							  &amp;lt;?php the_content( __( 'Read More&amp;amp;rarr;', 'it-l10n-BuilderChild-Foundation-Blank' ) ); ?&amp;gt;&lt;br /&gt;
							&amp;lt;?php endif; ?&amp;gt;&lt;br /&gt;
							&amp;lt;?php $showexcerpt=true; ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With the above change, the top most (latest) post will be shown in full unless more quick tag, &amp;lt;!--more--&amp;gt; is used. If more quick tag is used, &amp;quot;Read More→&amp;quot; will appear at the cut off point.&lt;br /&gt;
&lt;br /&gt;
Source: http://wordpress.org/support/topic/full-article-for-first-post-excerpts-for-the-rest?replies=7#post-1743222&lt;br /&gt;
&lt;br /&gt;
== How to implement Yoast Breadcrumbs in Builder ==&lt;br /&gt;
&lt;br /&gt;
[http://wordpress.org/extend/plugins/breadcrumbs/ Yoast Breadcrumbs on WordPress.org]&lt;br /&gt;
&lt;br /&gt;
Determine where you want the breadcrumbs to appear and edit the appropriate template file(s) in child theme. Use [http://codex.wordpress.org/images/1/18/Template_Hierarchy.png this] image as a reference. If a particular file is not present in the child theme directory, copy it from  parent Builder directory.&lt;br /&gt;
&lt;br /&gt;
Generally speaking, these are the files that you will be modifying: page.php (for static Pages), single.php (for single post pages), index.php (for Posts page) and archive.php (for category pages).&lt;br /&gt;
&lt;br /&gt;
Let's consider Kepler child theme as an example and that we want to add breadcrumbs to all Pages.&lt;br /&gt;
&lt;br /&gt;
Edit page.php.&lt;br /&gt;
&lt;br /&gt;
Below&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php if ( have_posts() ) : ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
add&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php if ( function_exists('yoast_breadcrumb') ) {&lt;br /&gt;
	yoast_breadcrumb('&amp;lt;p id=&amp;quot;breadcrumbs&amp;quot;&amp;gt;','&amp;lt;/p&amp;gt;');&lt;br /&gt;
} ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#breadcrumbs {&lt;br /&gt;
    color: #D0ECF3;&lt;br /&gt;
    margin-top: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#breadcrumbs a {&lt;br /&gt;
    color: #FFFFFF;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: The above CSS code might have to be adjusted depending on the child theme.&lt;br /&gt;
&lt;br /&gt;
This should result in [[File:2012-06-26 21-36-17.png|746px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
== How to remove hyperlink from tagline in Header module ==&lt;br /&gt;
&lt;br /&gt;
Add the following code to child theme's functions.php (at the end, but before the closing ?&amp;gt; line, if any):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
// load our javascript in the footer&lt;br /&gt;
add_action('wp_enqueue_scripts', 'add_my_code');&lt;br /&gt;
function add_my_code() {&lt;br /&gt;
    add_action( 'print_footer_scripts', 'my_footer_script' );&lt;br /&gt;
}  &lt;br /&gt;
&lt;br /&gt;
// Add jQuery to footer&lt;br /&gt;
function my_footer_script() { ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
    jQuery(document).ready(function($) {&lt;br /&gt;
            $('.site-tagline a').replaceWith(function() {&lt;br /&gt;
                    return this.innerHTML; });&lt;br /&gt;
            });&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/topic/29848-remove-link-from-tagline/page__view__findpost__p__138431 Thanks to Ronald (forum post)]&lt;br /&gt;
&lt;br /&gt;
== How to assign layouts to The Events Calendar pages ==&lt;br /&gt;
&lt;br /&gt;
[http://wordpress.org/extend/plugins/the-events-calendar/ The Events Calendar] plugin enables you to rapidly create and manage events. Features include Google Maps integration as well as default templates such as a calendar grid and event list, widget and so much more.&lt;br /&gt;
&lt;br /&gt;
To assign a layout to all pages generated by this plugin, ex.: &amp;lt;code&amp;gt;http://yoursite.com/events/&amp;lt;/code&amp;gt; add the following in child theme's functions.php before closing PHP tag (if present):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function set_custom_layout( $layout_id ) {&lt;br /&gt;
    if ( tribe_is_month() || tribe_is_upcoming() || tribe_is_past() )&lt;br /&gt;
            return '4f5363f3cb8e1';&lt;br /&gt;
&lt;br /&gt;
    return $layout_id;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_current_layout', 'set_custom_layout' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace &amp;lt;code&amp;gt;4f5363f3cb8e1&amp;lt;/code&amp;gt; with the ID of your desired layout.&lt;br /&gt;
&lt;br /&gt;
Source: http://tri.be/tutorial-integrating-the-events-calendar-w-genesis/&lt;br /&gt;
&lt;br /&gt;
It is also possible to set different layouts to different views like&lt;br /&gt;
&lt;br /&gt;
* main calendar page&lt;br /&gt;
* calendar category pages&lt;br /&gt;
* single events&lt;br /&gt;
* single event days&lt;br /&gt;
* single venues&lt;br /&gt;
* events or venue pages&lt;br /&gt;
* events list page&lt;br /&gt;
&lt;br /&gt;
by adding more functions similar to the one above.&lt;br /&gt;
&lt;br /&gt;
The needed if conditionals can be obtained from the source linked above.&lt;br /&gt;
&lt;br /&gt;
== Jetpack and Builder ==&lt;br /&gt;
&lt;br /&gt;
=== Sharing ===&lt;br /&gt;
&lt;br /&gt;
If you would like to use Jetpack's Sharing Buttons in Widget Content widgets, go to &lt;br /&gt;
&lt;br /&gt;
# Settings -&amp;gt; Sharing. Tick &amp;lt;code&amp;gt;Widget Content&amp;lt;/code&amp;gt; under &amp;quot;Show buttons on&amp;quot;.&lt;br /&gt;
# My Theme -&amp;gt; Settings -&amp;gt; Widget Content. Select &amp;quot;Use the the_content filter to format Widget Content entries.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Sample screenshot:&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2012-12-07 at 5.22.34 PM.png|396px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
==== How to prevent automatic placement of Jetpack's Share buttons and place them manually ====&lt;br /&gt;
&lt;br /&gt;
Sample scenario:&lt;br /&gt;
&lt;br /&gt;
1) At WP Dashboard -&amp;gt; Settings -&amp;gt; Sharing,&lt;br /&gt;
&lt;br /&gt;
a) Few services have been enabled by dragging them under &amp;quot;Enabled Services&amp;quot; area.&lt;br /&gt;
&lt;br /&gt;
b) &amp;lt;code&amp;gt;Show buttons on&amp;lt;/code&amp;gt; is ticked for &amp;quot;Front Page, Archive Pages, and Search Results&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
2) Active theme: Builder Child Theme - Acute Purple - 1.1.0&lt;br /&gt;
&lt;br /&gt;
3) 'Teasers Layout - Image Left' Builder extension is applied to the Posts page with [http://ithemes.com/codex/page/Builder_Extensions#How_to_show_Read_More_below_each_excerpt_when_using_.27Teasers_Layout_-_Image_Left.27_extension Read More set to appear for all excerpts].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=178px heights=598px&amp;gt;&lt;br /&gt;
File:My iThemes Builder Test Site 2013-01-25 15-38-08.png|Before&lt;br /&gt;
File:My iThemes Builder Test Site 2013-01-25 15-39-07.png|After&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To prevent automatic placement of Jetpack's Share buttons and place them manually, follow this:&lt;br /&gt;
&lt;br /&gt;
'''1.''' Add the following at end of child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
// Remove automatically-inserted Jetpack's share buttons&lt;br /&gt;
function jptweak_remove_share() {&lt;br /&gt;
	//remove_filter( 'the_content', 'sharing_display',19 );&lt;br /&gt;
	remove_filter( 'the_excerpt', 'sharing_display',19 );&lt;br /&gt;
}&lt;br /&gt;
add_action( 'loop_end', 'jptweak_remove_share' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source: http://wordpress.org/support/topic/share-buttons-position-above-other-plugins#post-3686704&lt;br /&gt;
&lt;br /&gt;
'''2.''' Wherever you would like to place the Jetpack's Share buttons, edit the [http://codex.wordpress.org/images/1/18/Template_Hierarchy.png appropriate template file] and paste the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php if (function_exists('sharing_display')) echo sharing_display(); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In our sample scenario, the file would be wp-content/themes/BuilderChild-Acute-Purple/extensions/post-teasers-left/functions.php and the above code would be placed below&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php the_excerpt(); ?&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php the_permalink(); ?&amp;gt;&amp;quot; class=&amp;quot;more-link&amp;quot;&amp;gt;Read More &amp;amp;rarr;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-01-25 at 8.31.03 PM.png|587px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
That's it.&lt;br /&gt;
&lt;br /&gt;
=== Jetpack Comments ===&lt;br /&gt;
&lt;br /&gt;
Sample screenshot:&lt;br /&gt;
&lt;br /&gt;
[[File:2012-12-07 17-49-39.png|778px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
# Edit &amp;lt;code&amp;gt;comments.php&amp;lt;/code&amp;gt; in active theme (should be a child theme of Builder). If the file is not present, copy it from parent Builder directory into the child theme directory and edit it.&lt;br /&gt;
&lt;br /&gt;
Delete code similar to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;&amp;lt;?php comment_form_title( __( 'Leave a Reply', 'it-l10n-BuilderChild-Ionic' ), __( 'Leave a Reply to %s', 'it-l10n-BuilderChild-Ionic' ) ); ?&amp;gt;&amp;lt;/h3&amp;gt;&lt;br /&gt;
		&lt;br /&gt;
		&amp;lt;div class=&amp;quot;cancel-comment-reply&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;small&amp;gt;&amp;lt;?php cancel_comment_reply_link(); ?&amp;gt;&amp;lt;/small&amp;gt;&lt;br /&gt;
		&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and replace&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;form action=&amp;quot;&amp;lt;?php echo site_url( '/wp-comments-post.php' ); ?&amp;gt;&amp;quot; method=&amp;quot;post&amp;quot; id=&amp;quot;commentform&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;?php if ( is_user_logged_in() ) : ?&amp;gt;&lt;br /&gt;
					&amp;lt;p class=&amp;quot;logged-in-as&amp;quot;&amp;gt;&amp;lt;?php printf( __( 'Logged in as &amp;lt;a href=&amp;quot;%1$s&amp;quot;&amp;gt;%2$s&amp;lt;/a&amp;gt;. &amp;lt;a href=&amp;quot;%3$s&amp;quot; title=&amp;quot;Log out of this account&amp;quot;&amp;gt;Log out?&amp;lt;/a&amp;gt;', 'it-l10n-BuilderChild-Ionic' ), admin_url( 'profile.php' ), $user_identity, $logout_url ); ?&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
				&amp;lt;?php else : ?&amp;gt;&lt;br /&gt;
					&amp;lt;p class=&amp;quot;comment-form-author&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;author&amp;quot; id=&amp;quot;author&amp;quot; value=&amp;quot;&amp;lt;?php echo esc_attr( $commenter['comment_author'] ); ?&amp;gt;&amp;quot; size=&amp;quot;22&amp;quot;&amp;lt;?php echo $aria_req; ?&amp;gt; /&amp;gt;&lt;br /&gt;
						&amp;lt;label for=&amp;quot;author&amp;quot;&amp;gt;&amp;lt;small&amp;gt;&amp;lt;?php _e( 'Name', 'it-l10n-BuilderChild-Ionic' ); ?&amp;gt; &amp;lt;?php if ( $req ) _e( &amp;quot;&amp;lt;span class='required'&amp;gt;(required)&amp;lt;/span&amp;gt;&amp;quot;, 'it-l10n-BuilderChild-Ionic' ); ?&amp;gt;&amp;lt;/small&amp;gt;&amp;lt;/label&amp;gt;&lt;br /&gt;
					&amp;lt;/p&amp;gt;&lt;br /&gt;
					&lt;br /&gt;
					&amp;lt;p class=&amp;quot;comment-form-email&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;email&amp;quot; id=&amp;quot;email&amp;quot; value=&amp;quot;&amp;lt;?php echo esc_attr(  $commenter['comment_author_email'] ); ?&amp;gt;&amp;quot; size=&amp;quot;22&amp;quot;&amp;lt;?php echo $aria_req; ?&amp;gt; /&amp;gt;&lt;br /&gt;
						&amp;lt;label for=&amp;quot;email&amp;quot;&amp;gt;&amp;lt;small&amp;gt;&amp;lt;?php _e( 'Mail (will not be published)', 'it-l10n-BuilderChild-Ionic' ); ?&amp;gt; &amp;lt;?php if ( $req ) _e( &amp;quot;&amp;lt;span class='required'&amp;gt;(required)&amp;lt;/span&amp;gt;&amp;quot;, 'it-l10n-BuilderChild-Ionic' ); ?&amp;gt;&amp;lt;/small&amp;gt;&amp;lt;/label&amp;gt;&lt;br /&gt;
					&amp;lt;/p&amp;gt;&lt;br /&gt;
					&lt;br /&gt;
					&amp;lt;p class=&amp;quot;comment-form-url&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;url&amp;quot; id=&amp;quot;url&amp;quot; value=&amp;quot;&amp;lt;?php echo esc_attr( $commenter['comment_author_url'] ); ?&amp;gt;&amp;quot; size=&amp;quot;22&amp;quot; /&amp;gt;&lt;br /&gt;
						&amp;lt;label for=&amp;quot;url&amp;quot;&amp;gt;&amp;lt;small&amp;gt;&amp;lt;?php _e( 'Website', 'it-l10n-BuilderChild-Ionic' ); ?&amp;gt;&amp;lt;/small&amp;gt;&amp;lt;/label&amp;gt;&lt;br /&gt;
					&amp;lt;/p&amp;gt;&lt;br /&gt;
				&amp;lt;?php endif; ?&amp;gt;&lt;br /&gt;
				&lt;br /&gt;
				&amp;lt;!--&amp;lt;p&amp;gt;&amp;lt;small&amp;gt;&amp;lt;strong&amp;gt;XHTML:&amp;lt;/strong&amp;gt; You can use these tags: &amp;lt;code&amp;gt;&amp;lt;?php echo allowed_tags(); ?&amp;gt;&amp;lt;/code&amp;gt;&amp;lt;/small&amp;gt;&amp;lt;/p&amp;gt;--&amp;gt;&lt;br /&gt;
				&amp;lt;p&amp;gt;&amp;lt;textarea name=&amp;quot;comment&amp;quot; id=&amp;quot;comment&amp;quot; cols=&amp;quot;45&amp;quot; rows=&amp;quot;10&amp;quot;&amp;gt;&amp;lt;/textarea&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
				&lt;br /&gt;
				&amp;lt;p class=&amp;quot;comment-submit-wrapper&amp;quot;&amp;gt;&lt;br /&gt;
					&amp;lt;input name=&amp;quot;submit&amp;quot; type=&amp;quot;submit&amp;quot; id=&amp;quot;submit&amp;quot; value=&amp;quot;&amp;lt;?php _e( 'Submit Comment &amp;amp;rarr;', 'it-l10n-BuilderChild-Ionic' ); ?&amp;gt;&amp;quot; /&amp;gt;&lt;br /&gt;
					&amp;lt;?php comment_id_fields(); ?&amp;gt;&lt;br /&gt;
				&amp;lt;/p&amp;gt;&lt;br /&gt;
				&lt;br /&gt;
				&amp;lt;?php do_action( 'comment_form', $post-&amp;gt;ID ); ?&amp;gt;&lt;br /&gt;
			&amp;lt;/form&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php comment_form(); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Infinite Scroll ===&lt;br /&gt;
&lt;br /&gt;
Jetpack's Infinite Scroll can either enabled by adding code in child theme's functions.php or simply by just using a plugin.&lt;br /&gt;
&lt;br /&gt;
Details: http://ithemes.com/2012/12/03/builder-jetpack-infinite-scroll/&lt;br /&gt;
&lt;br /&gt;
=== Carousel ===&lt;br /&gt;
&lt;br /&gt;
Beginning [http://ithemes.com/codex/page/Builder/Release_Notes/4.0.15 Builder 4.0.15], [http://jetpack.me/2012/07/13/jetpack-1-5-with-carousel/ Jetpack's Carousel] module works fine in iThemes Builder.&lt;br /&gt;
&lt;br /&gt;
=== Tiled Galleries ===&lt;br /&gt;
&lt;br /&gt;
[http://jetpack.me/support/tiled-galleries/ JetPack's Tiled Galleries] module works in iThemes Builder (v4.0.15 and above) by using a workaround.&lt;br /&gt;
&lt;br /&gt;
Add the following in child theme's &amp;lt;tt&amp;gt;functions.php&amp;lt;/tt&amp;gt; file (after the &amp;lt;code&amp;gt;&amp;amp;lt;?php&amp;lt;/code&amp;gt; line):&lt;br /&gt;
&lt;br /&gt;
 function custom_disable_builder_gallery() {&lt;br /&gt;
     remove_filter( 'post_gallery', 'builder_custom_post_gallery', 10 );&lt;br /&gt;
 }&lt;br /&gt;
 add_action( 'builder_theme_features_loaded', 'custom_disable_builder_gallery' );&lt;br /&gt;
 &lt;br /&gt;
 $content_width = 604;&lt;br /&gt;
&lt;br /&gt;
Note that the &amp;lt;code&amp;gt;$content_width&amp;lt;/code&amp;gt; variable has to be set to a value that refers to the pixel width of the area displaying the gallery. The &amp;lt;tt&amp;gt;604&amp;lt;/tt&amp;gt; number refers to the total pixel width area of the Default child theme's Content Module without any Layout modifications (960 pixel wide Layout with a 320 pixel wide sidebar). Until a better solution can be found, this variable will have to be manually adjusted so that the gallery properly fills the content area. Fortunately, if you are running a responsive Builder child theme, you can set this value to be larger than required, and it will automatically shrink down (this may work in some non-responsive child themes as well, the results vary).&lt;br /&gt;
&lt;br /&gt;
Set &amp;lt;code&amp;gt;$content_width&amp;lt;/code&amp;gt; value to the width of actual content portion (.builder-module-content .builder-module-element) that is available after any padding. Firebug makes it easy to find this.&lt;br /&gt;
&lt;br /&gt;
[[File:2013-01-31 11-10-53.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Source: [http://ithemes.com/codex/page/Builder/Release_Notes/4.0.15 Builder 4.0.15 release notes].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Limitation&amp;lt;/u&amp;gt;: When the above code is used, output of standard gallery shortcode, for example, &amp;lt;code&amp;gt;[gallery ids=&amp;quot;1072,1070,1062,1050&amp;quot;]&amp;lt;/code&amp;gt; will be affected. This is a known issue for the time being.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Screen Shot 2013-01-31 at 11.43.35 AM.png|Before&lt;br /&gt;
File:Screen Shot 2013-01-31 at 11.44.35 AM.png|After&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to embed a Gravity Forms form at the bottom of all single posts ==&lt;br /&gt;
&lt;br /&gt;
[[File:2013-02-01 19-34-41.png|308px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Go to Forms -&amp;gt; Forms in WP dashboard. Hover mouse on the title of form that you wish to embed and note the number at the end of URL in browser status bar. That would be the form's ID.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Edit child theme's &amp;lt;code&amp;gt;single.php&amp;lt;/code&amp;gt;. If the child theme does not have this, copy it from parent Builder directory into the child theme directory.&lt;br /&gt;
&lt;br /&gt;
Below&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php comments_template(); // include comments template ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
paste&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php gravity_form(2, true, false, false, '', false); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above change &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt; to the ID of form you wish to embed.&lt;br /&gt;
&lt;br /&gt;
Source: http://www.gravityhelp.com/documentation/page/Embedding_A_Form&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
#gform_wrapper_2 {&lt;br /&gt;
    margin-top: 4em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above change &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt; to the ID of form that's embedded.&lt;br /&gt;
&lt;br /&gt;
== Examples of Using jQuery in Builder ==&lt;br /&gt;
&lt;br /&gt;
=== Disclaimer ===&lt;br /&gt;
'''iThemes will not be responsible for any issues that may be the result of your attempts to change your site's functions.php file. You do not HAVE to change it. All code samples are for your information, possibly inspiration, and provided &amp;quot;as is&amp;quot;. However, when properly implemented, the code samples are accurate and will work.'''&lt;br /&gt;
&lt;br /&gt;
=== Warning ===&lt;br /&gt;
If you do not understand what it is you are doing, if the words &amp;quot;php&amp;quot;, &amp;quot;opening tag&amp;quot;, &amp;quot;FTP&amp;quot;, &amp;quot;functions&amp;quot; and &amp;quot;backup&amp;quot; are not familiar to you proceed with caution. You can blow up your site due to invalid code in the functions.php file. Actually, even if you know or think you know it all, it still happens (it happens to me at least once a week - Ronald).&lt;br /&gt;
&lt;br /&gt;
A single missing } or even a , or a semi-colon is all it takes to take your site down. This can be resolved by undoing the changes, however, this can not be done through the wp-dashboard &amp;gt; Appearance &amp;gt; Editor anymore (since your site is down). You then have to restore the functions.php file either through FTP or your hosting cPanel File Manager. &lt;br /&gt;
&lt;br /&gt;
'''If you think you can not do that, or do not understand what all the above means, I suggest you refrain from editing functions.php.'''&lt;br /&gt;
&lt;br /&gt;
Should anything go wrong, do not blame the code posted here. The code works. It just needs to be inserted a) the right way, and b) in the right place.&lt;br /&gt;
&lt;br /&gt;
For everyone else feeling confident, and having read the Disclaimer and the paragraph on how to add PHP code to a PHP file, DO MAKE A BACKUP, at least of the file you are editing. It is also not recommended to do these changes through the wp-dashboard &amp;gt; Appearance &amp;gt; Editor. Setup a localhost server on your computer, and use a simple PHP Editor (with syntax checking), ensure that your additions do not break the site and only THEN FTP your files to your server.&lt;br /&gt;
&lt;br /&gt;
=== How to add PHP code to a PHP file ===&lt;br /&gt;
When adding code to the &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; file (or any PHP file), make sure it is in PHP format. HTML code is not PHP code, and it '''WILL''' break things when coded inside a block of PHP code.&lt;br /&gt;
&lt;br /&gt;
PHP code can be identified by an opening tag: &amp;lt;code&amp;gt;&amp;lt;?php&amp;lt;/code&amp;gt;&lt;br /&gt;
and a closing tag &amp;lt;code&amp;gt;?&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
all code between these tags should be PHP code.&lt;br /&gt;
&lt;br /&gt;
Most WordPress themes have the opening &amp;lt;code&amp;gt;&amp;lt;?php&amp;lt;/code&amp;gt; tag in functions.php, coded all the way at the top of the file. Most (Builder Child theme) &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; files do not have a closing &amp;lt;code&amp;gt;?&amp;gt;&amp;lt;/code&amp;gt; tag (ALL THE WAY) at the end of the file, since it is not required.&lt;br /&gt;
&lt;br /&gt;
So if you add code at the end of your &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; file, and do so before the closing &amp;lt;code&amp;gt;?&amp;gt;&amp;lt;/code&amp;gt; PHP tag (if any!) you (generally!) are inside a PHP block of code. But this is '''NOT''' guaranteed.&lt;br /&gt;
&lt;br /&gt;
*You can't add html code inside PHP tags.&lt;br /&gt;
*You can't add PHP code outside PHP tags.&lt;br /&gt;
*You can't add opening PHP tags INSIDE a block of PHP code (nesting &amp;lt;code&amp;gt;&amp;lt;?php some php code ?&amp;gt;&amp;lt;/code&amp;gt; when there is no closing php tag before it).&lt;br /&gt;
&lt;br /&gt;
Before making the final edits and saving and uploading the file to your server, make sure that the syntax of the entire functions.php is valid syntax. You can do so by using a PHP Editor, and there are online tools such as this one: http://www.piliapp.com/php-syntax-check/&lt;br /&gt;
&lt;br /&gt;
====example of correct PHP code====&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
PHP code&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
html code&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
some more PHP code&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====example of incorrect PHP code 1====&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
php code&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;?php&lt;br /&gt;
   some more php code&lt;br /&gt;
   ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====example of incorrect PHP code 2====&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
html code&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====example of incorrect PHP code 3====&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
php code&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
more php code&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Introduction ===&lt;br /&gt;
&lt;br /&gt;
Please note that code shown is for a particular child theme and for a specific version used when writing the articles. It would usually have to be modified to suit your needs. All code samples use certain selector names (for menus, for builder selectors etc.) This is entirely arbitrary, and it is ''highly unlikely'' that your selectors are the same. '''You have to adapt the code accordingly'''.&lt;br /&gt;
&lt;br /&gt;
'''All code samples provided here ASSUME that it will be placed in already existing PHP tags. Therefore, you will not find an opening &amp;lt;?php code at the start, or a closing ?&amp;gt; tag at the end.'''&lt;br /&gt;
&lt;br /&gt;
=== How to assign odd and even classes to menu items in nav bar ===&lt;br /&gt;
&lt;br /&gt;
One typical usage of this would be to set different background colors to alternate menu items.&lt;br /&gt;
&lt;br /&gt;
[[File:2013-02-02 21-15-52.png|567px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// Assign even and odd classes to nav bar menu items&lt;br /&gt;
&lt;br /&gt;
add_action('wp_enqueue_scripts', 'add_my_code_1');&lt;br /&gt;
&lt;br /&gt;
function add_my_code_1() {&lt;br /&gt;
    add_action( 'print_footer_scripts', 'my_footer_script_1' );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function my_footer_script_1() { ?&amp;gt;&lt;br /&gt;
    &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
        jQuery(document).ready(function($) {&lt;br /&gt;
        	$(&amp;quot;#menu-main-menu &amp;gt; li:nth-child(odd)&amp;quot;).addClass(&amp;quot;odd&amp;quot;);&lt;br /&gt;
        	$(&amp;quot;#menu-main-menu &amp;gt; li:nth-child(even)&amp;quot;).addClass(&amp;quot;even&amp;quot;);&lt;br /&gt;
        });&lt;br /&gt;
    &amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;menu-main-menu&amp;lt;/code&amp;gt; is the CSS ID of custom menu shown in the nav bar.&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation li.even a {&lt;br /&gt;
    background: red;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation li.odd a {&lt;br /&gt;
    background: blue;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation li.even li a,&lt;br /&gt;
.builder-module-navigation li.odd li a {&lt;br /&gt;
    background: #FFF;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation li a:hover,&lt;br /&gt;
.builder-module-navigation li.even li a:hover,&lt;br /&gt;
.builder-module-navigation li.odd li a:hover {&lt;br /&gt;
    background: #333;&lt;br /&gt;
    color: #FFF;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation .current_page_item.even a, .builder-module-navigation .current_page_item.odd a&lt;br /&gt;
.builder-module-navigation .current-cat.even a, .builder-module-navigation .current-cat.odd a&lt;br /&gt;
.builder-module-navigation .current-menu-item.even a, .builder-module-navigation .current-menu-item.odd a {&lt;br /&gt;
	background: #333;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation li a,&lt;br /&gt;
.builder-module-navigation .current_page_item li a,&lt;br /&gt;
.builder-module-navigation .current-cat li a {&lt;br /&gt;
	color: #FFF;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation li li a {&lt;br /&gt;
    color: #333;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
[http://www.wpcon186.info/ Live Demo]. Code used on this site: [http://pastebin.com/Kwr3Q1g7 functions.php], [http://pastebin.com/irx9GtC8 style.css].&lt;br /&gt;
&lt;br /&gt;
=== How to spread/space out menu items equally across the nav bar ===&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-02-02 at 9.43.51 PM.png|800px|thumb|none|Before]]&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-02-02 at 9.39.19 PM.png|800px|thumb|none|After]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// =========================================&lt;br /&gt;
// = Space out nav bar menu items equally =&lt;br /&gt;
// =========================================&lt;br /&gt;
&lt;br /&gt;
// load javascript in the footer&lt;br /&gt;
add_action('wp_enqueue_scripts', 'add_my_code_37742');&lt;br /&gt;
function add_my_code_37742() {&lt;br /&gt;
        add_action( 'print_footer_scripts', 'my_footer_script_37742' );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// Add Javascript to footer&lt;br /&gt;
function my_footer_script_37742() { ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
jQuery(document).ready(function($) {&lt;br /&gt;
&lt;br /&gt;
        var menuItems = $(&amp;quot;ul#menu-main-menu&amp;quot;).children().length;&lt;br /&gt;
        var menuWidth = $(&amp;quot;ul#menu-main-menu&amp;quot;).width();&lt;br /&gt;
        var percentage = (menuWidth / menuItems) / (menuWidth / 100);&lt;br /&gt;
&lt;br /&gt;
        $(&amp;quot;ul#menu-main-menu&amp;quot;).children().each(function() {&lt;br /&gt;
                $(this).css('width',  percentage + '%');&lt;br /&gt;
        });&lt;br /&gt;
&lt;br /&gt;
});&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;menu-main-menu&amp;lt;/code&amp;gt; is the ID of custom menu shown in the nav bar.&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
/*********************************************&lt;br /&gt;
    Space out nav bar menu items equally&lt;br /&gt;
*********************************************/&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation ul {&lt;br /&gt;
	width: 100%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation li a, .builder-module-navigation .current_page_item li a, .builder-module-navigation .current-cat li a {&lt;br /&gt;
	text-align: center;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thanks to Ronald. Source: http://ithemes.com/forum/topic/37742-navigation-spread-items-to-length-of-the-nav-bar/#entry173441&lt;br /&gt;
&lt;br /&gt;
=== How to add a slow transition effect for second level menus in nav bar ===&lt;br /&gt;
&lt;br /&gt;
[http://jsfiddle.net/ronald/nBFm3/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// =========================================&lt;br /&gt;
// = Smoothen transition of 2nd level menu =&lt;br /&gt;
// =========================================&lt;br /&gt;
&lt;br /&gt;
// load javascript in footer&lt;br /&gt;
add_action('wp_enqueue_scripts', 'add_my_code_2');&lt;br /&gt;
function add_my_code_2() {&lt;br /&gt;
	add_action( 'print_footer_scripts', 'print_my_footer_scripts_2' );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// Add required javascript to footer (for delayed opening of subnav)&lt;br /&gt;
function print_my_footer_scripts_2() { ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script type='text/javascript'&amp;gt;&lt;br /&gt;
jQuery(document).ready(function($) {&lt;br /&gt;
	    $(&amp;quot;#menu-main-menu li&amp;quot;).hover(function(){&lt;br /&gt;
	    $(this).find('ul:first').css({visibility: &amp;quot;visible&amp;quot;,display: &amp;quot;none&amp;quot;}).show(400);&lt;br /&gt;
	    },function(){&lt;br /&gt;
	    $(this).find('ul:first').css({visibility: &amp;quot;hidden&amp;quot;});&lt;br /&gt;
	});&lt;br /&gt;
&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;menu-main-menu&amp;lt;/code&amp;gt; is the CSS ID of custom menu (usually &amp;lt;code&amp;gt;&amp;amp;lt;ul id=&amp;quot;menu-main-menu&amp;quot;&amp;gt;&amp;lt;/code&amp;gt;) shown in the nav bar. This is entirely arbitrary, and it is highly unlikely that your selectors are the same. You need to adapt the code accordingly.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Alternate Method&amp;lt;/u&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
Go to My Theme -&amp;gt; Settings -&amp;gt; Analytics and JavaScript Code. Paste the following in the text area under&lt;br /&gt;
&lt;br /&gt;
&amp;quot;List any JavaScript or other code to be manually inserted inside the site's &amp;lt;head&amp;gt; tag in the input below.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;script type='text/javascript'&amp;gt;&lt;br /&gt;
jQuery(document).ready(function($) {&lt;br /&gt;
	    $(&amp;quot;#menu-main-menu li&amp;quot;).hover(function(){&lt;br /&gt;
	    $(this).find('ul:first').css({visibility: &amp;quot;visible&amp;quot;,display: &amp;quot;none&amp;quot;}).show(400);&lt;br /&gt;
	    },function(){&lt;br /&gt;
	    $(this).find('ul:first').css({visibility: &amp;quot;hidden&amp;quot;});&lt;br /&gt;
	});&lt;br /&gt;
&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;menu-main-menu&amp;lt;/code&amp;gt; is the CSS ID of custom menu shown in the nav bar.&lt;br /&gt;
&lt;br /&gt;
Save settings.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thanks to Ronald. Source: http://ithemes.com/forum/topic/30998-is-it-possible-to-add-a-slow-transition-effect-to-the-navbar/#entry144025&lt;br /&gt;
&lt;br /&gt;
Another similar forum topic: http://ithemes.com/forum/topic/21002-navigation-with-animated-effect/&lt;br /&gt;
&lt;br /&gt;
=== How to Clear Placeholder Text Upon Focus in Gravity Forms Fields ===&lt;br /&gt;
&lt;br /&gt;
[http://wordpress.org/extend/plugins/gravity-forms-placeholders/ Gravity Forms - Placeholders add-on] plugin can be used to add HTML5 placeholder support to Gravity Forms' fields with a javascript fallback. &amp;lt;code&amp;gt;gplaceholder&amp;lt;/code&amp;gt; CSS class should be added to text fields or textareas as needed, or to the form itself to enable this feature to all fields within it.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
[[File:2013-02-04 20-35-47.png|513px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Now all Gravity Forms' field labels will appear inside the fields as placeholder text.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Screen Shot 2013-02-04 at 8.39.24 PM.png|Before&lt;br /&gt;
File:Screen Shot 2013-02-04 at 8.39.33 PM.png|After&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The placeholder text will continue to appear when clicked or tabbed to inside a field, but will disappear when user starts typing.&lt;br /&gt;
&lt;br /&gt;
If you would like the fields' placeholder text to be cleared when a field gets focus, add the following at the end of child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// =========================================&lt;br /&gt;
// = Auto hide placeholder text upon focus =&lt;br /&gt;
// =========================================&lt;br /&gt;
&lt;br /&gt;
// load javascript in footer&lt;br /&gt;
add_action('wp_enqueue_scripts', 'add_my_code_3');&lt;br /&gt;
&lt;br /&gt;
function add_my_code_3() {&lt;br /&gt;
    add_action( 'print_footer_scripts', 'my_footer_script_3' );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// Add jQuery to footer&lt;br /&gt;
&lt;br /&gt;
function my_footer_script_3() { ?&amp;gt;&lt;br /&gt;
    &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
        jQuery(document).ready(function($) {&lt;br /&gt;
            $('.gform_wrapper').find(':input').each(function() {&lt;br /&gt;
                $(this).data('saveplaceholder', $(this).attr('placeholder'));&lt;br /&gt;
&lt;br /&gt;
                $(this).focusin(function() {&lt;br /&gt;
                    $(this).attr('placeholder', '');&lt;br /&gt;
                });&lt;br /&gt;
&lt;br /&gt;
                $(this).focusout(function() {&lt;br /&gt;
                    $(this).attr('placeholder', $(this).data('saveplaceholder'));&lt;br /&gt;
                });&lt;br /&gt;
&lt;br /&gt;
            })&lt;br /&gt;
        })&lt;br /&gt;
    &amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thanks to Ronald for providing this code [http://jsfiddle.net/ronald/KfZTp/ here].&lt;br /&gt;
&lt;br /&gt;
=== Loading Script in Footer on All Pages Except One ===&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
/* JMAC script load */&lt;br /&gt;
// load jquery and prepare javascript in footer&lt;br /&gt;
add_action('wp_enqueue_scripts', 'jmac_scripts_method');&lt;br /&gt;
function jmac_scripts_method() {&lt;br /&gt;
	wp_enqueue_script('jquery');&lt;br /&gt;
    add_action('print_footer_scripts', 'jmac_print_footer_scripts');&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// Add required javascript to footer&lt;br /&gt;
function jmac_print_footer_scripts() { if(!is_page('videoconferencing')) { ?&amp;gt;&lt;br /&gt;
	&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
		jQuery(document).ready(function($) {&lt;br /&gt;
		function toggleVideo(state) {&lt;br /&gt;
		    // if state == 'hide', hide. Else: show video&lt;br /&gt;
		    var div = document.getElementById(&amp;quot;popupVid&amp;quot;);&lt;br /&gt;
		    var iframe = div.getElementsByTagName(&amp;quot;iframe&amp;quot;)[0].contentWindow;&lt;br /&gt;
		    div.style.display = state == 'hide' ? 'none' : '';&lt;br /&gt;
		    func = state == 'hide' ? 'pauseVideo' : 'playVideo';&lt;br /&gt;
		    iframe.postMessage('{&amp;quot;event&amp;quot;:&amp;quot;command&amp;quot;,&amp;quot;func&amp;quot;:&amp;quot;' + func + '&amp;quot;,&amp;quot;args&amp;quot;:&amp;quot;&amp;quot;}','*');&lt;br /&gt;
		}&lt;br /&gt;
&lt;br /&gt;
		});&lt;br /&gt;
	&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
} }&lt;br /&gt;
/* JMAC script load end */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: The focus of this wiki entry is not what the jQuery code does, but rather the if conditional used:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;if(!is_page('videoconferencing'))&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;quot;videoconferencing&amp;quot; is the slug of Page in which jQuery code should NOT be loaded.&lt;br /&gt;
&lt;br /&gt;
Forum topic: http://ithemes.com/forum/topic/33305-script-in-footer-on-all-pages-except-one/&lt;br /&gt;
&lt;br /&gt;
=== Loading Script in Footer Only on Site's Front Page ===&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// prepare javascript in footer&lt;br /&gt;
add_action('wp_enqueue_scripts', 'add_my_script_4');&lt;br /&gt;
&lt;br /&gt;
function add_my_script_4() {&lt;br /&gt;
	add_action( 'print_footer_scripts', 'home_page_only_script' );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
// Add javascript to footer&lt;br /&gt;
function home_page_only_script() {&lt;br /&gt;
    if ( is_front_page() ) : ?&amp;gt;&lt;br /&gt;
        &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
        	//your javascript here...&lt;br /&gt;
        &amp;lt;/script&amp;gt;&lt;br /&gt;
	&amp;lt;?php endif;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thanks to Ronald. Source: http://ithemes.com/forum/topic/33473-adding-javascipt-to-home-page/#entry155302&lt;br /&gt;
&lt;br /&gt;
=== How to Create a &amp;quot;Stay-On-Top&amp;quot; element ===&lt;br /&gt;
&lt;br /&gt;
==== Method 1 ====&lt;br /&gt;
&lt;br /&gt;
Live Demos: [http://ithemes.com/ iThemes.com], [http://webdesign.com/ WebDesign.com]&lt;br /&gt;
&lt;br /&gt;
[[File:Parent page Builder Responsive Test Site.png|800px|thumb|none|Standard nav bar]]&lt;br /&gt;
&lt;br /&gt;
As the user scrolls down..&lt;br /&gt;
&lt;br /&gt;
[[File:2013-02-14 16-52-24.png|800px|thumb|none|As user scrolls below past the standard nav bar, it gets replaced by a nav bar in a fixed position at the top of browser. When user scrolls to top, it goes away]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Identify the selector of the element that you wish to stay on top. Firebug can be used for this.&lt;br /&gt;
&lt;br /&gt;
Ex.: &amp;lt;code&amp;gt;.builder-module-navigation-background-wrapper&amp;lt;/code&amp;gt; in case of a navigation module.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Add the following at the end of child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; (before closing PHP tag, if present):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// =========================================&lt;br /&gt;
// = &amp;quot;Stay-On-Top&amp;quot; element =&lt;br /&gt;
// =========================================&lt;br /&gt;
&lt;br /&gt;
add_action('wp_enqueue_scripts', 'add_my_code');&lt;br /&gt;
&lt;br /&gt;
function add_my_code() {&lt;br /&gt;
    add_action( 'print_footer_scripts', 'my_footer_script' );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
function my_footer_script() { ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    jQuery(function($) {&lt;br /&gt;
&lt;br /&gt;
      var filter = $('.builder-module-navigation-background-wrapper');&lt;br /&gt;
&lt;br /&gt;
      pos = filter.offset();&lt;br /&gt;
&lt;br /&gt;
      var filterSpacer = $('&amp;lt;div /&amp;gt;', {&lt;br /&gt;
        &amp;quot;class&amp;quot;: &amp;quot;filter-drop-spacer&amp;quot;,&lt;br /&gt;
        &amp;quot;height&amp;quot;: filter.outerHeight()&lt;br /&gt;
      });&lt;br /&gt;
&lt;br /&gt;
      var fixed = false;&lt;br /&gt;
&lt;br /&gt;
      $(window).scroll(function() {&lt;br /&gt;
&lt;br /&gt;
        if($(this).scrollTop() &amp;gt;= pos.top+filter.height() )&lt;br /&gt;
&lt;br /&gt;
          {&lt;br /&gt;
            if( !fixed )&lt;br /&gt;
              {&lt;br /&gt;
                fixed = true;&lt;br /&gt;
&lt;br /&gt;
                filter.fadeOut('fast', function() {&lt;br /&gt;
                  $(this).addClass('fixed').fadeIn('fast');&lt;br /&gt;
                  // $('.search_in_nav, .my-social-icons').hide();&lt;br /&gt;
                  $(this).before(filterSpacer);&lt;br /&gt;
                  });&lt;br /&gt;
              }&lt;br /&gt;
          }&lt;br /&gt;
&lt;br /&gt;
          else&lt;br /&gt;
&lt;br /&gt;
          {&lt;br /&gt;
            if( fixed )&lt;br /&gt;
              {&lt;br /&gt;
                fixed = false;&lt;br /&gt;
&lt;br /&gt;
                filter.fadeOut('fast', function() {&lt;br /&gt;
                  $(this).removeClass('fixed').fadeIn('fast');&lt;br /&gt;
                  // $('.search_in_nav, .my-social-icons').show();&lt;br /&gt;
                  filterSpacer.remove();&lt;br /&gt;
                });&lt;br /&gt;
              }&lt;br /&gt;
        }&lt;br /&gt;
      });&lt;br /&gt;
&lt;br /&gt;
    });&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above, enter the selector from step 1 in the following line:&lt;br /&gt;
&lt;br /&gt;
 var filter = $('.builder-module-navigation-background-wrapper');&lt;br /&gt;
&lt;br /&gt;
(Optional) If you would like to hide any children of the element in fixed state, specify their selectors in the line below and remove the comment.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// $('.search_in_nav, .my-social-icons').hide();&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Remember to do similarly in the line below:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// $('.search_in_nav, .my-social-icons').show();&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation-background-wrapper.fixed {&lt;br /&gt;
	position: fixed;&lt;br /&gt;
	left: 0;&lt;br /&gt;
	top: 0;&lt;br /&gt;
	width: 100%;&lt;br /&gt;
&lt;br /&gt;
	-webkit-box-shadow: 0 0 40px #222;&lt;br /&gt;
	-moz-box-shadow: 0 0 40px #222;&lt;br /&gt;
	box-shadow: 0 0 40px #222;&lt;br /&gt;
&lt;br /&gt;
	background: rgba(255, 255, 255, 0.92);&lt;br /&gt;
	z-index: 100;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.admin-bar .builder-module-navigation-background-wrapper.fixed {&lt;br /&gt;
	top: 28px;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above CSS code, ensure that correct selector is being used.&lt;br /&gt;
&lt;br /&gt;
Source: http://www.1stwebdesigner.com/tutorials/create-stay-on-top-menu-css3-jquery/ and http://ithemes.com/wp-content/themes/iThemes2012/js/ui.js&lt;br /&gt;
&lt;br /&gt;
==== Method 2: Using Sticky jQuery plugin in iThemes Builder  ====&lt;br /&gt;
&lt;br /&gt;
Below instructions can be used to make nav bar and a widget as sticky (fixed position and always visible) using the Sticky jQuery plugin.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|Pv8dZcmMr9E|640|none|Watch in 1080p HD and in full screen for best viewing experience}}&lt;br /&gt;
&lt;br /&gt;
Please note that I have tested it only in Builder Default child theme. Numbers in the code and CSS may have to be adjusted for other child themes.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Download [http://stickyjs.com/ Sticky jQuery plugin]. Extract the zip file and upload jquery.sticky.js to /assets/sticky under site root.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Add the following in child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; (before closing PHP tag if any):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
add_action('wp_enqueue_scripts', 'add_my_code');&lt;br /&gt;
&lt;br /&gt;
function add_my_code() {&lt;br /&gt;
	wp_enqueue_script( 'jquery-sticky', get_bloginfo('wpurl') . '/assets/sticky/jquery.sticky.js', array('jquery'), '1.0', true );&lt;br /&gt;
    add_action( 'print_footer_scripts', 'my_footer_script' );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function my_footer_script() { ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;?php if(is_admin_bar_showing()) : ?&amp;gt;&lt;br /&gt;
	    &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
	    	jQuery(function($) {&lt;br /&gt;
            $(&amp;quot;.builder-module-navigation&amp;quot;).sticky({topSpacing: 28, getWidthFrom: &amp;quot;.builder-module-navigation-outer-wrapper&amp;quot;});&lt;br /&gt;
            $(&amp;quot;#meta-5&amp;quot;).sticky({topSpacing: 64});&lt;br /&gt;
        });&lt;br /&gt;
	    &amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;?php else : ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	    &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
	        jQuery(function($) {&lt;br /&gt;
	            $(&amp;quot;.builder-module-navigation&amp;quot;).sticky({topSpacing: 0, getWidthFrom: &amp;quot;.builder-module-navigation-outer-wrapper&amp;quot;});&lt;br /&gt;
	            $(&amp;quot;#meta-5&amp;quot;).sticky({topSpacing: 36});&lt;br /&gt;
	        });&lt;br /&gt;
	    &amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;?php endif;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
} ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above, &lt;br /&gt;
&lt;br /&gt;
a) replace &amp;lt;code&amp;gt;meta-5&amp;lt;/code&amp;gt; with the ID of widget that you would like to make sticky.&lt;br /&gt;
&lt;br /&gt;
b) replace 36 with height of nav bar&lt;br /&gt;
&lt;br /&gt;
c) replace 64 with height of nav bar + 28&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.sticky-wrapper.is-sticky .builder-module-navigation {&lt;br /&gt;
	border-bottom: 1px solid #d6d6d6;&lt;br /&gt;
	box-shadow: 0px 0px 16px rgba(0,0,0,0.1);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-content .widget {&lt;br /&gt;
	background: #DDD;&lt;br /&gt;
	border-bottom: 3px solid #F1F0F0;&lt;br /&gt;
	width: 264px !important;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace 264 with width of widget w/o left and right padding.&lt;br /&gt;
&lt;br /&gt;
=== How to Style All First Words of Widget Titles Differently ===&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-03-20 at 9.31.42 AM.png|216px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Add the following in child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; (before closing PHP tag if any):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// ==================================================&lt;br /&gt;
// = Assign a Class to First Word of Widget Titles =&lt;br /&gt;
// ==================================================&lt;br /&gt;
&lt;br /&gt;
// load javascript in footer&lt;br /&gt;
&lt;br /&gt;
add_action('wp_enqueue_scripts', 'add_my_code');&lt;br /&gt;
&lt;br /&gt;
function add_my_code() {&lt;br /&gt;
	add_action( 'print_footer_scripts', 'my_footer_script' );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// Add jQuery to footer&lt;br /&gt;
&lt;br /&gt;
function my_footer_script() { ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
    	jQuery(function($) {&lt;br /&gt;
&lt;br /&gt;
			$('.builder-module-sidebar h4.widget-title').each(function() {&lt;br /&gt;
			   var h = $(this).html();&lt;br /&gt;
			   var index = h.indexOf(' ');&lt;br /&gt;
			   if(index == -1) {&lt;br /&gt;
			       index = h.length;&lt;br /&gt;
			   }&lt;br /&gt;
			   $(this).html('&amp;lt;span class=&amp;quot;widget-title-first-word&amp;quot;&amp;gt;' + h.substring(0, index) + '&amp;lt;/span&amp;gt;' + h.substring(index, h.length));&lt;br /&gt;
			});&lt;br /&gt;
&lt;br /&gt;
    	});&lt;br /&gt;
    &amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''2.''' Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
/****************************************************&lt;br /&gt;
    Styling First Word of Widget Titles&lt;br /&gt;
*****************************************************/&lt;br /&gt;
&lt;br /&gt;
.widget-title-first-word {&lt;br /&gt;
    color: red;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source: http://blog.codez.in/jquery-css-styling-first-word-of-a-text-differently/jquery/2010/08/23&lt;br /&gt;
&lt;br /&gt;
=== How to incorporate jQuery Kwicks Accordion in Builder ===&lt;br /&gt;
&lt;br /&gt;
See [http://ithemes.com/forum/topic/40780-jquery-kwiks/#entry183718 this] forum post.&lt;br /&gt;
&lt;br /&gt;
=== Animated Responsive Image Grid ===&lt;br /&gt;
&lt;br /&gt;
Below is how I implemented a jQuery plugin by [http://tympanus.net/Development/AnimatedResponsiveImageGrid/ codrops] in WordPress for creating a responsive image grid that will switch images using different animations and timings.&lt;br /&gt;
&lt;br /&gt;
[http://websitesetuppro.com/demos/builder-responsive/animated-responsive-image-grid/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Downloaded source, extracted zip file and uploaded the &amp;lt;code&amp;gt;AnimatedResponsiveImageGrid&amp;lt;/code&amp;gt; folder to &amp;lt;code&amp;gt;/assets&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:2013-04-10 14-17-19.png|365px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''2.''' Added the following at the end of child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
// =========================================&lt;br /&gt;
// = My Changes Below =&lt;br /&gt;
// =========================================&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
// load javascript and styles in footer or head&lt;br /&gt;
&lt;br /&gt;
// only on http://websitesetuppro.com/demos/builder-responsive/animated-responsive-image-grid/&lt;br /&gt;
add_action('wp_enqueue_scripts', 'AnimatedResponsiveImageGrid_code');&lt;br /&gt;
&lt;br /&gt;
function AnimatedResponsiveImageGrid_code() {&lt;br /&gt;
    if(is_page( '1155' )) {&lt;br /&gt;
    	wp_enqueue_script( 'modernizr', get_bloginfo('wpurl') . '/assets/AnimatedResponsiveImageGrid/js/modernizr.custom.26633.js', '2.6.2', false ); /* in head */&lt;br /&gt;
        wp_enqueue_script( 'AnimatedResponsiveImageGrid', get_bloginfo('wpurl') . '/assets/AnimatedResponsiveImageGrid/js/jquery.gridrotator.js', array('jquery'), true );&lt;br /&gt;
&lt;br /&gt;
        wp_enqueue_style( 'AnimatedResponsiveImageGrid-style', get_bloginfo('wpurl') . '/assets/AnimatedResponsiveImageGrid/css/style.css' );&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
add_action('wp_enqueue_scripts', 'add_my_code');&lt;br /&gt;
&lt;br /&gt;
function add_my_code() {&lt;br /&gt;
&lt;br /&gt;
    add_action( 'print_footer_scripts', 'my_footer_script' );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// Add jQuery to footer&lt;br /&gt;
&lt;br /&gt;
function my_footer_script() { ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;!-- only on http://websitesetuppro.com/demos/builder-responsive/animated-responsive-image-grid/ --&amp;gt;&lt;br /&gt;
    &amp;lt;?php if(is_page( '1155' )) { ?&amp;gt;&lt;br /&gt;
    &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
        jQuery(function($) {&lt;br /&gt;
            $( '#ri-grid' ).gridrotator( {&lt;br /&gt;
				w320 : {&lt;br /&gt;
					rows : 3,&lt;br /&gt;
					columns : 4&lt;br /&gt;
				},&lt;br /&gt;
				w240 : {&lt;br /&gt;
					rows : 3,&lt;br /&gt;
					columns : 3&lt;br /&gt;
				}&lt;br /&gt;
			} );&lt;br /&gt;
&lt;br /&gt;
			$( '#ri-grid-2' ).gridrotator( {&lt;br /&gt;
				rows		: 3,&lt;br /&gt;
				columns		: 15,&lt;br /&gt;
				animType	: 'fadeInOut',&lt;br /&gt;
				animSpeed	: 1000,&lt;br /&gt;
				interval	: 600,&lt;br /&gt;
				step		: 1,&lt;br /&gt;
				w320		: {&lt;br /&gt;
					rows	: 3,&lt;br /&gt;
					columns	: 4&lt;br /&gt;
				},&lt;br /&gt;
				w240		: {&lt;br /&gt;
					rows	: 3,&lt;br /&gt;
					columns	: 4&lt;br /&gt;
				}&lt;br /&gt;
			} );&lt;br /&gt;
        });&lt;br /&gt;
    &amp;lt;/script&amp;gt;&lt;br /&gt;
    &amp;lt;?php }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''3.''' &lt;br /&gt;
&lt;br /&gt;
a) Placed this (in Text view) in &amp;quot;Animated Responsive Image Grid&amp;quot; Page:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;h2&amp;gt;Demo 1: Random animations / 55% container width / 3s between switching&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;ri-grid&amp;quot; class=&amp;quot;ri-grid ri-grid-size-1 ri-shadow&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;img class=&amp;quot;ri-loading-image&amp;quot; src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/loading.gif&amp;quot;/&amp;gt;&lt;br /&gt;
	&amp;lt;ul&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/1.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/2.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/3.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/4.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/5.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/6.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/7.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/8.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/9.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/10.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/11.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/12.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/13.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/14.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/15.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/16.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/17.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/18.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/19.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/20.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/21.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/22.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/23.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/24.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/25.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/26.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/27.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/28.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/29.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/30.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/31.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/32.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/33.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/34.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/35.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/36.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/37.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/38.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/39.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/40.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/41.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/42.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/43.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/44.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/45.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/46.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/47.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/48.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/49.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/50.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/51.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/52.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/53.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/54.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
	&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
b) Placed this in HTML module below the content module in layout used by that Page:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;h2 style=&amp;quot;margin-left: 1em; margin-right: 1em;&amp;quot;&amp;gt;Demo 2: &amp;quot;fadeInOut&amp;quot; animation / 100% container width / 1 image switch at a time / 600ms between switching&amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div id=&amp;quot;ri-grid-2&amp;quot; class=&amp;quot;ri-grid ri-grid-size-2&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;img class=&amp;quot;ri-loading-image&amp;quot; src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/loading.gif&amp;quot;/&amp;gt;&lt;br /&gt;
	&amp;lt;ul&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/1.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/2.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/3.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/4.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/5.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/6.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/7.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/8.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/9.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/10.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/11.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/12.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/13.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/14.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/15.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/16.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/17.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/18.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/19.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/20.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/21.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/22.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/23.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/24.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/25.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/26.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/27.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/28.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/29.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/30.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/31.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/32.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/33.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/34.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/35.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/36.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/37.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/38.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/39.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/40.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/41.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/42.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/43.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/44.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/45.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/46.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/47.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/48.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/49.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/50.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/51.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/52.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/53.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://websitesetuppro.com/demos/builder-responsive/assets/AnimatedResponsiveImageGrid/images/medium/54.jpg&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
	&amp;lt;/ul&amp;gt;&lt;br /&gt;
				&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''4.''' Added the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
/* http://websitesetuppro.com/demos/builder-responsive/animated-responsive-image-grid/ */&lt;br /&gt;
&lt;br /&gt;
.ri-grid-size-1 {&lt;br /&gt;
    width: 90% !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.ri-grid ul li,&lt;br /&gt;
.ri-grid ul li a {&lt;br /&gt;
    width: 98px !important;&lt;br /&gt;
    height: 97px !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#builder-module-516519f61bcba-outer-wrapper {&lt;br /&gt;
    max-width: 100% !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#ri-grid-2 ul li,&lt;br /&gt;
#ri-grid-2 ul li a {&lt;br /&gt;
    width: 94px !important;&lt;br /&gt;
    height: 94px !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.page-id-1155 .builder-module-content .builder-module-element {&lt;br /&gt;
	margin-bottom: 0 !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.page-id-1155 .hentry {&lt;br /&gt;
	margin-bottom: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Easy Accordion jQuery plugin in iThemes Builder ===&lt;br /&gt;
&lt;br /&gt;
[http://buildersnippets.com/easy-accordion-test-page/ Live Demo] [Note: Due to differences in CSS properties like font sizes between child themes and other minor customizations, the demo (which uses Air child theme) looks slightly different than the screenshot below, which was taken in Default child theme]&lt;br /&gt;
&lt;br /&gt;
[[File:Easy Accordion Test Page - WordPress Dev Site 2013-04-30 13-03-49.png|441px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://www.madeincima.it/en/articles/resources-and-tools/easy-accordion-plugin/ Easy Accordion] is a jQuery plugin to create a horizontal accordion and is a free alternative to Slidedeck.&lt;br /&gt;
&lt;br /&gt;
The following steps outline how the [http://www.madeincima.it/download/samples/jquery/easyAccordion/ plugin's demo] can be set up in a WordPress site running iThemes Builder. Once you have the following working, you can then edit the HTML, javascript parameters and CSS to suit your needs.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Download the full sample zip file from [http://www.madeincima.it/en/articles/resources-and-tools/easy-accordion-plugin/ here] under the Conclusion section. Extract the zip file and upload the resulting &amp;lt;code&amp;gt;jQuery-easyAccordion&amp;lt;/code&amp;gt; folder to &amp;lt;code&amp;gt;assets&amp;lt;/code&amp;gt; directory under your site's root.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Upload all the contents of &amp;lt;code&amp;gt;jQuery-easyAccordion/images&amp;lt;/code&amp;gt; folder to active child theme's &amp;lt;code&amp;gt;images&amp;lt;/code&amp;gt; directory.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Wherever you want the Easy Accordion to appear (in a Page or Post or HTML module etc), paste the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;sample&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;h1&amp;gt;jQuery Easy Accordion Plugin&amp;lt;/h1&amp;gt;&lt;br /&gt;
        &lt;br /&gt;
        &amp;lt;h2&amp;gt;Horizontal Accordion with Autoplay&amp;lt;/h2&amp;gt;&lt;br /&gt;
        &amp;lt;p&amp;gt;Set the '&amp;lt;strong&amp;gt;autoStart&amp;lt;/strong&amp;gt;' parameter to '&amp;lt;strong&amp;gt;true&amp;lt;/strong&amp;gt;' to get a timed slideshow. You can also define the interval between each slide in milliseconds using the '&amp;lt;strong&amp;gt;slideInterval&amp;lt;/strong&amp;gt;' parameter.&amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;div id=&amp;quot;accordion-1&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;dl&amp;gt;&lt;br /&gt;
                &amp;lt;dt&amp;gt;First slide&amp;lt;/dt&amp;gt;&lt;br /&gt;
                &amp;lt;dd&amp;gt;&amp;lt;h2&amp;gt;This is the first slide&amp;lt;/h2&amp;gt;&amp;lt;p&amp;gt;&amp;lt;img src=&amp;quot;http://buildersnippets.com/assets/jQuery-easyAccordion/images/monsters/img1.png&amp;quot; alt=&amp;quot;Alt text to go here&amp;quot; /&amp;gt;Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, enim.&amp;lt;br /&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot; class=&amp;quot;more&amp;quot;&amp;gt;Read more&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
                &amp;lt;dt&amp;gt;Second slide&amp;lt;/dt&amp;gt;&lt;br /&gt;
                &amp;lt;dd&amp;gt;&amp;lt;h2&amp;gt;Here is the second slide&amp;lt;/h2&amp;gt;&amp;lt;p&amp;gt;&amp;lt;img src=&amp;quot;http://buildersnippets.com/assets/jQuery-easyAccordion/images/monsters/img2.png&amp;quot; alt=&amp;quot;Alt text to go here&amp;quot; /&amp;gt;Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, enim.&amp;lt;br /&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot; class=&amp;quot;more&amp;quot;&amp;gt;Read more&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
                &amp;lt;dt&amp;gt;One more slide&amp;lt;/dt&amp;gt;&lt;br /&gt;
                &amp;lt;dd&amp;gt;&amp;lt;h2&amp;gt;One more slide to go here&amp;lt;/h2&amp;gt;&amp;lt;p&amp;gt;&amp;lt;img src=&amp;quot;http://buildersnippets.com/assets/jQuery-easyAccordion/images/monsters/img3.png&amp;quot; alt=&amp;quot;Alt text to go here&amp;quot; /&amp;gt;Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, enim.&amp;lt;br /&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot; class=&amp;quot;more&amp;quot;&amp;gt;Read more&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
                &amp;lt;dt&amp;gt;Another slide&amp;lt;/dt&amp;gt;&lt;br /&gt;
                &amp;lt;dd&amp;gt;&amp;lt;h2&amp;gt;Another slide to go here&amp;lt;/h2&amp;gt;&amp;lt;p&amp;gt;&amp;lt;img src=&amp;quot;http://buildersnippets.com/assets/jQuery-easyAccordion/images/monsters/img4.png&amp;quot; alt=&amp;quot;Alt text to go here&amp;quot; /&amp;gt;Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, enim.&amp;lt;br /&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot; class=&amp;quot;more&amp;quot;&amp;gt;Read more&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
                &amp;lt;dt&amp;gt;Wow one more&amp;lt;/dt&amp;gt;&lt;br /&gt;
                &amp;lt;dd&amp;gt;&amp;lt;h2&amp;gt;Unbilievable one more slide here&amp;lt;/h2&amp;gt;&amp;lt;p&amp;gt;&amp;lt;img src=&amp;quot;http://buildersnippets.com/assets/jQuery-easyAccordion/images/monsters/img5.png&amp;quot; alt=&amp;quot;Alt text to go here&amp;quot; /&amp;gt;Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, enim.&amp;lt;br /&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot; class=&amp;quot;more&amp;quot;&amp;gt;Read more&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
                &amp;lt;dt&amp;gt;Last one&amp;lt;/dt&amp;gt;&lt;br /&gt;
                &amp;lt;dd&amp;gt;&amp;lt;h2&amp;gt;This is definitely the last one&amp;lt;/h2&amp;gt;&amp;lt;p&amp;gt;&amp;lt;img src=&amp;quot;http://buildersnippets.com/assets/jQuery-easyAccordion/images/monsters/img6.png&amp;quot; alt=&amp;quot;Alt text to go here&amp;quot; /&amp;gt;Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, enim.&amp;lt;br /&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot; class=&amp;quot;more&amp;quot;&amp;gt;Read more&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
            &amp;lt;/dl&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
        &lt;br /&gt;
        &amp;lt;h2&amp;gt;Simple Horizontal Accordion&amp;lt;/h2&amp;gt;&lt;br /&gt;
        &amp;lt;p&amp;gt;If you don't specify the '&amp;lt;strong&amp;gt;autoStart&amp;lt;/strong&amp;gt;' parameter or if you set it to '&amp;lt;strong&amp;gt;false&amp;lt;/strong&amp;gt;' you get a simple slideshow.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;div id=&amp;quot;accordion-2&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;dl&amp;gt;&lt;br /&gt;
                &amp;lt;dt&amp;gt;Slide title&amp;lt;/dt&amp;gt;&lt;br /&gt;
                &amp;lt;dd&amp;gt;&amp;lt;h2&amp;gt;First mammoth here&amp;lt;/h2&amp;gt;&amp;lt;p&amp;gt;&amp;lt;img src=&amp;quot;http://buildersnippets.com/assets/jQuery-easyAccordion/images/mammoths/img1.png&amp;quot; alt=&amp;quot;Alt text to go here&amp;quot; /&amp;gt;Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean commodo ligula eget dolor.&amp;lt;/p&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
                &amp;lt;dt&amp;gt;Another slide&amp;lt;/dt&amp;gt;&lt;br /&gt;
                &amp;lt;dd&amp;gt;&amp;lt;h2&amp;gt;Over the moon!&amp;lt;/h2&amp;gt;&amp;lt;p&amp;gt;&amp;lt;img src=&amp;quot;http://buildersnippets.com/assets/jQuery-easyAccordion/images/mammoths/img2.png&amp;quot; alt=&amp;quot;Alt text to go here&amp;quot; /&amp;gt;Aenean commodo ligula eget dolor. Aenean massa. Nascetur aenean commodo ligula eget dolor. Aenean massa eget. &amp;lt;/p&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
                &amp;lt;dt&amp;gt;Third slide&amp;lt;/dt&amp;gt;&lt;br /&gt;
                &amp;lt;dd&amp;gt;&amp;lt;h2&amp;gt;Another mammoth&amp;lt;/h2&amp;gt;&amp;lt;p&amp;gt;&amp;lt;img src=&amp;quot;http://buildersnippets.com/assets/jQuery-easyAccordion/images/mammoths/img3.png&amp;quot; alt=&amp;quot;Alt text to go here&amp;quot; /&amp;gt;Ipsum dolor sit amet.Aenean ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur.&amp;lt;/p&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
                &amp;lt;dt&amp;gt;Last slide&amp;lt;/dt&amp;gt;&lt;br /&gt;
                &amp;lt;dd&amp;gt;&amp;lt;h2&amp;gt;This is my favourite&amp;lt;/h2&amp;gt;&amp;lt;p&amp;gt;&amp;lt;img src=&amp;quot;http://buildersnippets.com/assets/jQuery-easyAccordion/images/mammoths/img4.png&amp;quot; alt=&amp;quot;Alt text to go here&amp;quot; /&amp;gt;Cum sociis natoque penatibus et donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.&amp;lt;/p&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
           &amp;lt;/dl&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
        &lt;br /&gt;
        &amp;lt;h2&amp;gt;Set the initial Active Slide&amp;lt;/h2&amp;gt;&lt;br /&gt;
        &amp;lt;p&amp;gt;You can easily set the &amp;lt;strong&amp;gt;initial active slide&amp;lt;/strong&amp;gt; by adding the '&amp;lt;strong&amp;gt;active&amp;lt;/strong&amp;gt;' class to the respective DT element.&lt;br /&gt;
        &amp;lt;br /&amp;gt;Notice that you could also remove the slide number by setting the '&amp;lt;strong&amp;gt;slideNum&amp;lt;/strong&amp;gt;' parameter to '&amp;lt;strong&amp;gt;false&amp;lt;/strong&amp;gt;'.&amp;lt;/p&amp;gt;&lt;br /&gt;
        &amp;lt;div id=&amp;quot;accordion-3&amp;quot;&amp;gt;&lt;br /&gt;
            &amp;lt;dl&amp;gt;&lt;br /&gt;
                &amp;lt;dt&amp;gt;Slide title&amp;lt;/dt&amp;gt;&lt;br /&gt;
                &amp;lt;dd&amp;gt;&amp;lt;h2&amp;gt;First slide here&amp;lt;/h2&amp;gt;&amp;lt;p&amp;gt;&amp;lt;img src=&amp;quot;http://buildersnippets.com/assets/jQuery-easyAccordion/images/bugs/img2.png&amp;quot; alt=&amp;quot;Alt text to go here&amp;quot; /&amp;gt;Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean commodo ligula eget dolor.&amp;lt;/p&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
                &amp;lt;dt&amp;gt;Another slide&amp;lt;/dt&amp;gt;&lt;br /&gt;
                &amp;lt;dd&amp;gt;&amp;lt;h2&amp;gt;Title to go here&amp;lt;/h2&amp;gt;&amp;lt;p&amp;gt;&amp;lt;img src=&amp;quot;http://buildersnippets.com/assets/jQuery-easyAccordion/images/bugs/img4.png&amp;quot; alt=&amp;quot;Alt text to go here&amp;quot; /&amp;gt;Aenean commodo ligula eget dolor. Aenean massa. Nascetur aenean commodo ligula eget dolor. Aenean massa eget. &amp;lt;/p&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
                &amp;lt;dt class=&amp;quot;active&amp;quot;&amp;gt;Third slide&amp;lt;/dt&amp;gt;&lt;br /&gt;
                &amp;lt;dd&amp;gt;&amp;lt;h2&amp;gt;Here is the title&amp;lt;/h2&amp;gt;&amp;lt;p&amp;gt;&amp;lt;img src=&amp;quot;http://buildersnippets.com/assets/jQuery-easyAccordion/images/bugs/img1.png&amp;quot; alt=&amp;quot;Alt text to go here&amp;quot; /&amp;gt;Ipsum dolor sit amet.Aenean ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur.&amp;lt;/p&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
                &amp;lt;dt&amp;gt;Last slide&amp;lt;/dt&amp;gt;&lt;br /&gt;
                &amp;lt;dd&amp;gt;&amp;lt;h2&amp;gt;Last slide title&amp;lt;/h2&amp;gt;&amp;lt;p&amp;gt;&amp;lt;img src=&amp;quot;http://buildersnippets.com/assets/jQuery-easyAccordion/images/bugs/img3.png&amp;quot; alt=&amp;quot;Alt text to go here&amp;quot; /&amp;gt;Cum sociis natoque penatibus et donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.&amp;lt;/p&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
           &amp;lt;/dl&amp;gt;&lt;br /&gt;
        &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
        &amp;lt;p&amp;gt;&amp;lt;a href=&amp;quot;http://www.madeincima.eu/blog/jquery-plugin-easy-accordion/&amp;quot;&amp;gt;Go back to the post!&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the case of [http://buildersnippets.com/easy-accordion-test-page/ my demo], the above code has been placed in a static Page.&lt;br /&gt;
&lt;br /&gt;
'''4.''' Add the following in child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; before closing PHP tag (if any):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// load javascript and styles in footer or header&lt;br /&gt;
&lt;br /&gt;
// only on http://buildersnippets.com/easy-accordion-test-page/&lt;br /&gt;
add_action('wp_enqueue_scripts', 'easyAccordion_code');&lt;br /&gt;
&lt;br /&gt;
function easyAccordion_code() {&lt;br /&gt;
    if(is_page( '127' )) {&lt;br /&gt;
        wp_enqueue_script( 'easyAccordion', get_bloginfo('wpurl') . '/assets/jQuery-easyAccordion/scripts/jquery.easyAccordion.js', array('jquery'), '0.1', true );&lt;br /&gt;
&lt;br /&gt;
        wp_enqueue_style( 'easy-accordion', get_bloginfo('wpurl') . '/assets/jQuery-easyAccordion/css/styles.css' );&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
add_action('wp_enqueue_scripts', 'add_my_code_ea');&lt;br /&gt;
&lt;br /&gt;
function add_my_code_ea() {&lt;br /&gt;
&lt;br /&gt;
    add_action( 'print_footer_scripts', 'my_footer_script_ea' );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// Add jQuery to footer&lt;br /&gt;
&lt;br /&gt;
function my_footer_script_ea() { ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;!-- only on http://buildersnippets.com/easy-accordion-test-page/ --&amp;gt;&lt;br /&gt;
    &amp;lt;?php if(is_page( '127' )) { ?&amp;gt;&lt;br /&gt;
    &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
        var accordion;&lt;br /&gt;
        jQuery(function($) {&lt;br /&gt;
        	$('#accordion-1').easyAccordion({&lt;br /&gt;
				autoStart: true,&lt;br /&gt;
				slideInterval: 3000&lt;br /&gt;
			});&lt;br /&gt;
&lt;br /&gt;
			$('#accordion-2').easyAccordion({&lt;br /&gt;
				autoStart: false&lt;br /&gt;
			});&lt;br /&gt;
&lt;br /&gt;
			$('#accordion-3').easyAccordion({&lt;br /&gt;
				autoStart: true,&lt;br /&gt;
				slideInterval: 5000,&lt;br /&gt;
				slideNum:false&lt;br /&gt;
			});&lt;br /&gt;
&lt;br /&gt;
			$('#accordion-4').easyAccordion({&lt;br /&gt;
				autoStart: false,&lt;br /&gt;
				slideInterval: 5000&lt;br /&gt;
			});&lt;br /&gt;
        });&lt;br /&gt;
    &amp;lt;/script&amp;gt;&lt;br /&gt;
    &amp;lt;?php }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;code&amp;gt;if(is_page( '127' ))&amp;lt;/code&amp;gt; conditional is in place to ensure that javascript is loaded and called only where needed (in this case, a specific Page vs site-wide). You would need to either change the ID or remove the conditional to suit your needs.&lt;br /&gt;
&lt;br /&gt;
'''5.''' Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
/* Easy Accordion Styling */&lt;br /&gt;
&lt;br /&gt;
.sample{border:1px solid #92cdec;background:#d7e7ff;padding:30px}&lt;br /&gt;
.easy-accordion h2{margin:0px 0 20px 0;padding:0;font-size:1.6em;}&lt;br /&gt;
&lt;br /&gt;
dd p{line-height:120%}&lt;br /&gt;
&lt;br /&gt;
#accordion-1{width:800px;height:245px;padding:30px;background:#fff;border:1px solid #b5c9e8}&lt;br /&gt;
#accordion-1 dl{width:800px;height:245px}&lt;br /&gt;
#accordion-1 dt{height:46px;line-height:44px;text-align:right;padding:0 15px 0 0;font-size:1.1em;font-weight:bold;font-family: Tahoma, Geneva, sans-serif;text-transform:uppercase;letter-spacing:1px;background:#fff url(images/slide-title-inactive-1.jpg) 0 0 no-repeat;color:#26526c}&lt;br /&gt;
#accordion-1 dt.active{cursor:pointer;color:#fff;background:#fff url(images/slide-title-active-1.jpg) 0 0 no-repeat}&lt;br /&gt;
#accordion-1 dt.hover{color:#68889b;}&lt;br /&gt;
#accordion-1 dt.active.hover{color:#fff}&lt;br /&gt;
#accordion-1 dd{padding:25px;background:url(images/slide.jpg) bottom left repeat-x;border:1px solid #dbe9ea;border-left:0;margin-right:3px}&lt;br /&gt;
#accordion-1 .slide-number{color:#68889b;left:10px;font-weight:bold}&lt;br /&gt;
#accordion-1 .active .slide-number{color:#fff;}&lt;br /&gt;
#accordion-1 a{color:#68889b}&lt;br /&gt;
#accordion-1 dd img{float:right;margin:0 0 0 30px;}&lt;br /&gt;
#accordion-1 h2{font-size:2.5em;margin-top:10px}&lt;br /&gt;
#accordion-1 .more{padding-top:10px;display:block}&lt;br /&gt;
&lt;br /&gt;
#accordion-2{width:700px;height:195px;padding:30px;background:#fff;border:1px solid #b5c9e8}&lt;br /&gt;
#accordion-2 h2{font-size:2.5em;margin-top:10px;}&lt;br /&gt;
#accordion-2 dl{width:700px;height:195px}&lt;br /&gt;
#accordion-2 dt{height:56px;line-height:44px;text-align:right;padding:10px 15px 0 0;font-size:1.1em;font-weight:bold;font-family: Tahoma, Geneva, sans-serif;text-transform:uppercase;letter-spacing:1px;background:#fff url(images/slide-title-inactive-2.jpg) 0 0 no-repeat;color:#26526c}&lt;br /&gt;
#accordion-2 dt.active{cursor:pointer;color:#fff;background:#fff url(images/slide-title-active-2.jpg) 0 0 no-repeat}&lt;br /&gt;
#accordion-2 dt.hover{color:#68889b;}&lt;br /&gt;
#accordion-2 dt.active.hover{color:#fff}&lt;br /&gt;
#accordion-2 dd{padding:25px;background:url(images/slide.jpg) bottom left repeat-x;border:1px solid #dbe9ea;border-left:0;margin-right:3px}&lt;br /&gt;
#accordion-2 .slide-number{color:#68889b;left:10px;font-weight:bold}&lt;br /&gt;
#accordion-2 .active .slide-number{color:#fff}&lt;br /&gt;
#accordion-2 a{color:#68889b}&lt;br /&gt;
#accordion-2 dd img{float:right;margin:0 0 0 30px;position:relative;top:-20px}&lt;br /&gt;
&lt;br /&gt;
#accordion-3{width:700px;height:195px;padding:30px;background:#fff;border:1px solid #b5c9e8}&lt;br /&gt;
#accordion-3 h2{font-size:2.5em;margin-top:10px}&lt;br /&gt;
#accordion-3 dl{width:700px;height:195px}&lt;br /&gt;
#accordion-3 dt{height:56px;line-height:44px;text-align:right;padding:10px 15px 0 0;font-size:1.1em;font-weight:bold;font-family: Tahoma, Geneva, sans-serif;text-transform:uppercase;letter-spacing:1px;background:#fff url(images/slide-title-inactive-2.jpg) 0 0 no-repeat;color:#26526c}&lt;br /&gt;
#accordion-3 dt.active{cursor:pointer;color:#fff;background:#fff url(images/slide-title-active-2.jpg) 0 0 no-repeat}&lt;br /&gt;
#accordion-3 dt.hover{color:#68889b;}&lt;br /&gt;
#accordion-3 dt.active.hover{color:#fff}&lt;br /&gt;
#accordion-3 dd{padding:25px;background:url(images/slide.jpg) bottom left repeat-x;border:1px solid #dbe9ea;border-left:0;margin-right:3px}&lt;br /&gt;
#accordion-3 .slide-number{color:#68889b;left:13px;font-weight:bold}&lt;br /&gt;
#accordion-3 .active .slide-number{color:#fff}&lt;br /&gt;
#accordion-3 a{color:#68889b}&lt;br /&gt;
#accordion-3 dd img{float:right;margin:0 0 0 30px;position:relative;top:-20px}&lt;br /&gt;
&lt;br /&gt;
.sample h1 {&lt;br /&gt;
	margin-top: 0;&lt;br /&gt;
	line-height: 1;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hentry .easy-accordion img {&lt;br /&gt;
	background: none;&lt;br /&gt;
	border: none;&lt;br /&gt;
	-moz-border-radius: 0;&lt;br /&gt;
	-webkit-border-radius: 0;&lt;br /&gt;
	border-radius: 0;&lt;br /&gt;
	padding: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.easy-accordion h2 {&lt;br /&gt;
	line-height: 1;&lt;br /&gt;
	margin-top: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Using a Shortcode in HTML Module for Custom Header ==&lt;br /&gt;
&lt;br /&gt;
A user in the forum asked the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;On one of my customer sites (a Builder site), we have many similar, but slightly different layouts. On all of them, we want the same custom header (in a Custom HTML module). I’d like to maintain the HTML for that custom header in one place so that I don’t have to copy and paste the header code into each layout each time I want to make a change.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
One of the ways this can be done is by creating a shortcode having the HTML code needed to display the custom header and place this shortcode in HTML module of all the layouts in use. The advantage of doing so is that should you decide later on to make any changes in the HTML, it has to be done only in one place.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Install and activate [http://wordpress.org/extend/plugins/global-content-blocks/ Global Content Blocks] plugin.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Go to Settings -&amp;gt; Global Content Blocks -&amp;gt; Add a New Content Block.&lt;br /&gt;
&lt;br /&gt;
Enter a Name. This is only for your reference and is not used while executing the shortcode.&lt;br /&gt;
&lt;br /&gt;
In the Content editor, enter the HTML code needed to display your custom header image.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;http://localhost/builder3/&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;http://localhost/builder-responsive/wp-content/themes/BuilderChild-Default/images/header.jpg&amp;quot; alt=&amp;quot;Home&amp;quot; /&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Click Save.&lt;br /&gt;
&lt;br /&gt;
[[File:Global Content Blocks ‹ iThemes Builder Test Site — WordPress 2013-03-16 15-38-32.png|453px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Note the generated shortcode which will be in the form of&lt;br /&gt;
&lt;br /&gt;
 [contentblock id=1] &lt;br /&gt;
&lt;br /&gt;
Now add a HTML module wherever you want to the custom header image to appear and paste the shortcode. Save the module and layout.&lt;br /&gt;
&lt;br /&gt;
[[File:2013-03-16 15-43-28.png|657px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Output on the webpage:&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-03-16 at 3.48.56 PM.png|799px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Depending on the active theme, there could be padding around the image which can be gotten rid of by using CSS like so:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 .builder-module-element {&lt;br /&gt;
    padding: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-1 img {&lt;br /&gt;
    vertical-align: top;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to have:&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-03-16 at 3.51.35 PM.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
As you may probably be thinking, the output can simply be achieved by using a Image module but then it will not have the advantage of &amp;quot;update in one place – change everywhere&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Instead of using the plugin, we can write code similar to following in child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; to create shortcode and use it as above.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
//logo in header&lt;br /&gt;
add_shortcode('headercontent','getlogo');&lt;br /&gt;
function getlogo() {&lt;br /&gt;
	echo '&amp;lt;div class=&amp;quot;headerlogo&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;'.get_bloginfo('home').'&amp;quot;&amp;gt;&amp;lt;img src=&amp;quot;'.get_bloginfo('stylesheet_directory').'/images/company-logo.png&amp;quot; alt=&amp;quot;web design&amp;quot; /&amp;gt;&amp;lt;/a&amp;gt;';&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above example, shortcode to be used would be &amp;lt;code&amp;gt;[headercontent]&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thanks to Valerie Cudnik for providing the above code [http://pastebin.com/9kXf71bF here].&lt;br /&gt;
&lt;br /&gt;
== How to fix positioning problem of event pop up trigger bar of All In One Calendar By Timely ==&lt;br /&gt;
&lt;br /&gt;
Applies to plugin version: 1.9&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-02-15 at 9.27.01 AM.png|758px|thumb|none|Before]]&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-02-15 at 9.21.18 AM.png|7586px|thumb|none|After]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
a.ai1ec-popup-trigger {&lt;br /&gt;
    top: 0 !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.timely .hide.ai1ec-popup + a.ai1ec-popup-trigger {&lt;br /&gt;
    padding-top: 1em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Forum topic: http://ithemes.com/forum/topic/38506-all-in-one-calendar-by-timely-builder-conflict/&lt;br /&gt;
&lt;br /&gt;
== How to get the output of a Header module in a HTML module ==&lt;br /&gt;
&lt;br /&gt;
Using a HTML module gives more control than a Header module in situations like [http://ithemes.com/forum/topic/38496-problem-with-header-module/ this].&lt;br /&gt;
&lt;br /&gt;
[[File:Header Module Settings.png|463px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Output of above Header module can be simulated by using a PHP enabled HTML module having the following code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php if (is_front_page()) : ?&amp;gt;&lt;br /&gt;
	&amp;lt;h1 class=&amp;quot;site-title&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php bloginfo('url'); ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php bloginfo('name'); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;h3 class=&amp;quot;site-tagline&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php bloginfo('url'); ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php bloginfo('description'); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/h3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php else : ?&amp;gt;&lt;br /&gt;
	&amp;lt;h3 class=&amp;quot;site-title&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php bloginfo('url'); ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php bloginfo('name'); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/h3&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;h5 class=&amp;quot;site-tagline&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php bloginfo('url'); ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php bloginfo('description'); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/h5&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php endif; ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== LayerSlider WP in Builder ==&lt;br /&gt;
&lt;br /&gt;
[http://codecanyon.net/item/layerslider-wp-the-wordpress-parallax-slider/1362246 LayerSlider WP]&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
&lt;br /&gt;
[[File:2013-02-26 07-11-10.jpg|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
[[File:2013-02-26 07-07-40.jpg|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
To fix LayerSlider from being cut off at the bottom, use the following sample CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-512b538d8a958-outer-wrapper, #builder-module-512b538d8a958, #builder-module-512b538d8a958 .widget-wrapper {&lt;br /&gt;
    overflow: visible !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.ls-thumbnail-slide img {&lt;br /&gt;
    height: 100% !important;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace &amp;lt;code&amp;gt;builder-module-512b538d8a958&amp;lt;/code&amp;gt; with the ID of module (typically, a widget bar) in which LayerSlider is placed.&lt;br /&gt;
&lt;br /&gt;
== How to Set Up a Vertical Custom Menu in a Widget using Uber Menu in iThemes Builder ==&lt;br /&gt;
&lt;br /&gt;
[[File:2013-03-04 18-31-39.png|406px|thumb|none|Vertical menu in iThemes Builder]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Install and activate [http://wpmegamenu.com/ Uber Menu].&lt;br /&gt;
&lt;br /&gt;
'''2.''' Go to Appearance -&amp;gt; UberMenu. &lt;br /&gt;
&lt;br /&gt;
a) &amp;lt;code&amp;gt;Set Orientation&amp;lt;/code&amp;gt; to Vertical. There is no need to enter a value for &amp;lt;code&amp;gt;Vertical Mega Submenu Width&amp;lt;/code&amp;gt; (even if entered, it doesn't take effect).&lt;br /&gt;
&lt;br /&gt;
b) Theme Integration -&amp;gt; Easy Integration -&amp;gt; ON.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Go to Appearance -&amp;gt; Menus.&lt;br /&gt;
&lt;br /&gt;
a) Create a custom menu that you would like to show vertically in a widget.&lt;br /&gt;
&lt;br /&gt;
b) Tick &amp;lt;code&amp;gt;UberMenu&amp;lt;/code&amp;gt; under 'Activate Uber Menu Locations'. Select your desired menu in 'Theme Locations'.&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-03-04 at 6.42.00 PM.png|758px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''4.''' At Appearance -&amp;gt; Widgets, drag a text widget in whichever sidebar you would like to show the vertical menu and paste:&lt;br /&gt;
&lt;br /&gt;
 [uberMenu_easyIntegrate]&lt;br /&gt;
&lt;br /&gt;
Refresh your site and adjust the width of sidebar if necessary.&lt;br /&gt;
&lt;br /&gt;
'''5.''' [Optional] To improve the appearance of the menu, add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
#megaMenu ul.megaMenu {&lt;br /&gt;
    width: 100%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#megaMenu ul li.ss-nav-menu-mega ul li.ss-nav-menu-item-depth-1 {&lt;br /&gt;
    padding: 0px 27px !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#megaMenu ul.megaMenu li li li ul {&lt;br /&gt;
    margin-left: 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* if the widget is placed in content module's sidebar and if sub menu appears to be cut off */&lt;br /&gt;
.builder-module-content .builder-module-sidebar-outer-wrapper {&lt;br /&gt;
    overflow: visible !important;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== WooCommerce and iThemes Builder ==&lt;br /&gt;
&lt;br /&gt;
=== How to Assign a Layout to the Main Shop page ===&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; (before closing PHP, if any):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// =================================================&lt;br /&gt;
// = Assign a layout to WooCommerce main shop page =&lt;br /&gt;
// =================================================&lt;br /&gt;
&lt;br /&gt;
function custom_filter_shop_layout( $layout_id ) {&lt;br /&gt;
    if ( is_shop() )&lt;br /&gt;
            return '5088b68b45105';&lt;br /&gt;
&lt;br /&gt;
    return $layout_id;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_current_layout', 'custom_filter_shop_layout' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Change &amp;lt;code&amp;gt;5088b68b45105&amp;lt;/code&amp;gt; in the above to ID of layout that you wish to assign to the shop page.&lt;br /&gt;
&lt;br /&gt;
To find the ID for a Layout, go to the Layouts listing, copy the edit link for the desired Layout, paste the link somewhere, and grab the text after the last equal sign. For example, consider the following link:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;http://example.com/wp-admin/admin.php?page=layout-editor&amp;amp;editor_tab=layouts&amp;amp;layout=5088b68b45105&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The Layout's ID for the above is &amp;lt;code&amp;gt;5088b68b45105&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Source: http://docs.woothemes.com/document/conditional-tags/&lt;br /&gt;
&lt;br /&gt;
=== How to Change the Number of Products Per Row and Number of Products Per Page ===&lt;br /&gt;
&lt;br /&gt;
By default, 4 products per row and per page are visible in WooCommerce shop page.&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-03-07 at 10.31.59 AM.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
If you would like to show more number of products per page, add the following in child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; (before closing PHP tag, if any):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// Display 24 products per page.&lt;br /&gt;
add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 24;' ), 20 );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above change 24 to number of products you would like per page.&lt;br /&gt;
&lt;br /&gt;
Source: http://docs.woothemes.com/document/change-number-of-products-displayed-per-page/&lt;br /&gt;
&lt;br /&gt;
[[File:2013-03-07 10-36-24.png|771px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
To change the number of products shown per row, add the following in child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; (before closing PHP tag, if any):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// Change number or products per row to 5&lt;br /&gt;
add_filter('loop_shop_columns', 'loop_columns');&lt;br /&gt;
if (!function_exists('loop_columns')) {&lt;br /&gt;
	function loop_columns() {&lt;br /&gt;
		return 5; // 5 products per row&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source: http://docs.woothemes.com/document/change-number-of-products-per-row/#customtheme&lt;br /&gt;
&lt;br /&gt;
That should result in something like&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-03-07 at 10.39.01 AM.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Since the width of each product is set to be 22.05% via CSS, the last 2 products fall down as there is not enough space for them to fit in a single row.&lt;br /&gt;
&lt;br /&gt;
The solution is to add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {&lt;br /&gt;
    width: 16% !important;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You will need to adjust the number 16 in the above to whatever is required so all the products get fit on a single line.&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-03-07 at 10.44.59 AM.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
=== Item 3 ===&lt;br /&gt;
&lt;br /&gt;
== How to Show Featured Image Below Navigation Module on Static Pages ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;builder_module_render_navigation&amp;lt;/code&amp;gt; hook can be used to inject content below and/or above all nav bars in Builder.&lt;br /&gt;
&lt;br /&gt;
In this example, the goal is to show featured image attached to Pages below the nav bar as a header. This way each Page can have its own unique header image.&lt;br /&gt;
&lt;br /&gt;
[[File:2013-03-22 13-59-21.png|640px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[[File:2013-03-22 13-26-02.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Add the following in child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; (before closing PHP tag if present):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
add_action( 'builder_module_render_navigation', 'show_featured_image', 20 );&lt;br /&gt;
&lt;br /&gt;
function show_featured_image() {&lt;br /&gt;
	if (has_post_thumbnail() &amp;amp;&amp;amp; is_page()) { ?&amp;gt;&lt;br /&gt;
		&amp;lt;div class=&amp;quot;my-featured-image-header&amp;quot;&amp;gt;&lt;br /&gt;
	        &amp;lt;?php the_post_thumbnail(); ?&amp;gt;&lt;br /&gt;
	    &amp;lt;/div&amp;gt;&lt;br /&gt;
	&amp;lt;?php }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''2.''' Add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.my-featured-image-header img {&lt;br /&gt;
	margin-top: 0;&lt;br /&gt;
	margin-bottom: 0;&lt;br /&gt;
	vertical-align: top;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation .builder-module-element-outer-wrapper { /* if needed */&lt;br /&gt;
	margin-bottom: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If &amp;lt;code&amp;gt;20&amp;lt;/code&amp;gt; in&lt;br /&gt;
&lt;br /&gt;
 add_action( 'builder_module_render_navigation', 'show_featured_image', 20 );&lt;br /&gt;
&lt;br /&gt;
is changed to &amp;lt;code&amp;gt;0&amp;lt;/code&amp;gt;, then the function will be output ABOVE the nav bar(s).&lt;br /&gt;
&lt;br /&gt;
Forum topic: http://ithemes.com/forum/topic/40690-featured-image-on-each-page/&lt;br /&gt;
&lt;br /&gt;
== How to Fix &amp;quot;Missing required fields&amp;quot; warnings in Structured Data Testing Tool ==&lt;br /&gt;
&lt;br /&gt;
[http://www.google.com/webmasters/tools/richsnippets Rich Snippets Testing Tool] can be used to check whether Google can correctly parse your structured data markup and display it in search results.&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-03-29 at 6.25.24 PM.png|774px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-03-29 at 6.57.00 PM.png|768px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
The fix is to edit these active theme (ideally, should be a child theme of Builder) template files (at the minimum): index.php, archive.php, single.php, page.php and search.php.&lt;br /&gt;
&lt;br /&gt;
You might have to edit other/more template files depending on your need. See http://codex.wordpress.org/images/1/18/Template_Hierarchy.png&lt;br /&gt;
&lt;br /&gt;
If any of these files are not present in the child theme, copy them from parent Builder directory into the child theme's directory and edit them.&lt;br /&gt;
&lt;br /&gt;
* Title of the post should be marked with class &amp;lt;code&amp;gt;entry-title&amp;lt;/code&amp;gt;&lt;br /&gt;
* Posting date should be marked with class &amp;lt;code&amp;gt;updated&amp;lt;/code&amp;gt;&lt;br /&gt;
* Full name of the post author should be marked with class &amp;lt;code&amp;gt;author&amp;lt;/code&amp;gt; accomplished by elements from hCard microformat – &amp;lt;code&amp;gt;vcard&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;fn&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Sample generated HTML code should be:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;entry-title&amp;quot;&amp;gt;How to fix &amp;quot;missing required fields&amp;quot; warnings in Rich Snippets Testing Tool&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;updated&amp;quot;&amp;gt;December 24, 2011&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;vcard author&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;Anton Khitrenovich&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== To fix &amp;lt;code&amp;gt;Warning: Missing required field &amp;quot;updated&amp;quot;&amp;lt;/code&amp;gt; in Builder ===&lt;br /&gt;
&lt;br /&gt;
Locate the &amp;lt;code&amp;gt;date&amp;lt;/code&amp;gt; div and add &amp;lt;code&amp;gt;updated&amp;lt;/code&amp;gt; class to it.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
Change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;entry-meta date&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;entry-meta date updated&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== To fix &amp;lt;code&amp;gt;Warning: Missing required hCard &amp;quot;author&amp;quot;&amp;lt;/code&amp;gt; in Builder ===&lt;br /&gt;
&lt;br /&gt;
Change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php printf( __( 'By %s', 'it-l10n-Builder' ), '&amp;lt;span class=&amp;quot;author&amp;quot;&amp;gt;' . builder_get_author_link() . '&amp;lt;/span&amp;gt;' ); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php printf( __( 'By %s', 'it-l10n-Builder' ), '&amp;lt;span class=&amp;quot;vcard author&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;' . builder_get_author_link() . '&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;' ); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Family name and Given names are taken from values entered for Last Name and First Name respectively in author's profile page.&lt;br /&gt;
&lt;br /&gt;
Example of doing the above changes in Kepler child theme: http://ithemes.com/forum/topic/33858-google-rich-snippet-tool-warning-missing-required-field-entry-title/#entry156972 &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap&amp;quot;&amp;gt;&lt;br /&gt;
Tip: If a static Page is set to be shown on front page, then page.php would be the main file to edit and do the above changes. As it does not have the code for displaying author and date, the below lines can be added in the loop and CSS display property set to none to not show them on the homepage.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;entry-meta date updated&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;?php echo get_the_date(); ?&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php printf( __( 'By %s', 'it-l10n-Builder' ), '&amp;lt;span class=&amp;quot;vcard author&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;' . builder_get_author_link() . '&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;' ); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
was added above&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!-- post content --&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:2013-03-29 19-20-58.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
In child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.home .entry-title,&lt;br /&gt;
.page .date,&lt;br /&gt;
.page .author {&lt;br /&gt;
	display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source:&lt;br /&gt;
&lt;br /&gt;
http://technotes.khitrenovich.com/fix-missing-required-fields-warnings-rich-snippets-testing-tool/&lt;br /&gt;
&lt;br /&gt;
http://nepallica.com/fix-google-rich-snippets-warning-missing-required-field-wordpress/&lt;br /&gt;
&lt;br /&gt;
== How to Make Entire Text Widgets Clickable ==&lt;br /&gt;
&lt;br /&gt;
[[File:2013-03-31 17-48-29.png|237px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
When a text link is placed in a text widget, only the text will be clickable as hyperlinks are inline elements.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;display: block&amp;lt;/code&amp;gt; CSS can be used so the entire widget becomes clickable.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
Code in a text widget:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:html; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;a href=&amp;quot;#&amp;quot; class=&amp;quot;my-widget-link&amp;quot;&amp;gt;Mold Removal and Remediation&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
a.my-widget-link {&lt;br /&gt;
 	display: block;&lt;br /&gt;
 	font-size: 1.65em;&lt;br /&gt;
 	padding: 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#builder-module-514372ec66190 .widget {&lt;br /&gt;
 	padding: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;builder-module-514372ec66190&amp;lt;/code&amp;gt; is the ID of widget bar module having the widget.&lt;br /&gt;
&lt;br /&gt;
== How to Enable Comments For Custom Post Types ==&lt;br /&gt;
&lt;br /&gt;
'''1.''' Ensure that support for Comments is enabled in the CPT.&lt;br /&gt;
&lt;br /&gt;
How this is done depends on the method being used to set up the CPTs.&lt;br /&gt;
&lt;br /&gt;
Here's an example when using CustomPress:&lt;br /&gt;
&lt;br /&gt;
[[File:2013-04-02 12-35-15.png|608px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''2.''' Go to My Theme -&amp;gt; Settings -&amp;gt; Comments.&lt;br /&gt;
&lt;br /&gt;
Even though the CPT might be shown as selected, it won't actually work until it is unchecked and checked again. Therefore, untick your CPT under Comments, save settings, tick it and again save settings.&lt;br /&gt;
&lt;br /&gt;
'''3.''' In the CPT add/edit screen, tick &amp;lt;code&amp;gt;Allow comments&amp;lt;/code&amp;gt; in Discussion meta box. If Discussion meta box is not visible, pull down Screen Options at the top right of the page and tick &amp;lt;code&amp;gt;Discussion&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== How to Create Mobile Navigation like the new Air Theme ==&lt;br /&gt;
&lt;br /&gt;
There are several steps involved to accomplish this. The solution was tested on a couple of Builder Child themes, but not all, so this may not work for all Child themes. As such, these instructions are provided &amp;quot;as is&amp;quot; and are unsupported. Further customisation is beyond the scope of our theme support.&lt;br /&gt;
&lt;br /&gt;
===Pre-requisites===&lt;br /&gt;
&lt;br /&gt;
* Builder parent theme AND your Builder child theme should be at least at version 4, since these are responsive capable themes.&lt;br /&gt;
* Responsive needs to be enabled in the child theme (functions.php should contain: &amp;lt;code&amp;gt;add_theme_support( 'builder-responsive' );&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Include the javascript code that enables the Mobile dropdown===&lt;br /&gt;
&lt;br /&gt;
* Copy the &amp;lt;code&amp;gt;js&amp;lt;/code&amp;gt; folder and contents from the Air child theme to your child theme.&lt;br /&gt;
* Add the following code at the end of your child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; file, yet before the closing &amp;lt;code&amp;gt;?&amp;gt;&amp;lt;/code&amp;gt; (if any):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// Enqueuing and Using Custom Javascript/Jquery &lt;br /&gt;
function it_air_load_custom_scripts() {&lt;br /&gt;
	wp_register_script( 'it_air_jquery_additions', get_stylesheet_directory_uri() . '/js/it_air_jquery_additions.js', array('jquery'), false, true );&lt;br /&gt;
	wp_enqueue_script('it_air_jquery_additions');&lt;br /&gt;
}&lt;br /&gt;
add_action( 'wp_enqueue_scripts', 'it_air_load_custom_scripts' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Enable the Mobile Nav as an Alternative Navigation Module Style===&lt;br /&gt;
Following the code added in step 1, add the following code in &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; (again, before a closing ?&amp;gt;)&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// Add Support for Alternate Module Styles&lt;br /&gt;
if ( ! function_exists( 'it_builder_loaded' ) ) {&lt;br /&gt;
	function it_builder_loaded() {&lt;br /&gt;
		builder_register_module_style( 'navigation', 'Mobile Navigation', 'mobile-nav' );&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
add_action( 'it_libraries_loaded', 'it_builder_loaded' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Add the css code for the Mobile navigation===&lt;br /&gt;
Add the following code at the end of your child themes '''mobile''' stylesheet &amp;lt;code&amp;gt;style-mobile.css&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
/*********************************************&lt;br /&gt;
	Navigation Module (Mobile)&lt;br /&gt;
*********************************************/&lt;br /&gt;
.builder-module-navigation.mobile {&lt;br /&gt;
	padding-top: .5em !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation.mobile ul {&lt;br /&gt;
	margin-top: .5em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation.mobile li {&lt;br /&gt;
	width: 100%;&lt;br /&gt;
	position: relative;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* second level stuff */&lt;br /&gt;
.builder-module-navigation.mobile li ul {&lt;br /&gt;
	position: relative !important;&lt;br /&gt;
	left: 0 !important;&lt;br /&gt;
	border: 0;&lt;br /&gt;
	width: 100%;&lt;br /&gt;
	margin: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation.mobile li a,&lt;br /&gt;
.builder-module-navigation.mobile .current_page_item li a,&lt;br /&gt;
.builder-module-navigation.mobile .current-cat li a,&lt;br /&gt;
.builder-module-navigation.mobile .current-menu-item li a {&lt;br /&gt;
	margin: 0;&lt;br /&gt;
	background: transparent;&lt;br /&gt;
	border-color: transparent;&lt;br /&gt;
	color: #3B3F42;&lt;br /&gt;
	border-bottom: 1px solid rgba(0,0,0,0.1);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation.mobile li a:hover,&lt;br /&gt;
.builder-module-navigation.mobile .current_page_item li a:hover,&lt;br /&gt;
.builder-module-navigation.mobile .current-cat li a li a:hover,&lt;br /&gt;
.builder-module-navigation.mobile .current-menu-item li a:hover {&lt;br /&gt;
	background: #3B3F42;&lt;br /&gt;
	color: #ECECEC;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation.mobile li li {&lt;br /&gt;
	border: 0;&lt;br /&gt;
	width: 100%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation.mobile li ul ul {&lt;br /&gt;
	margin: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation.mobile li li a {&lt;br /&gt;
	padding: .25em 0 .25em 2em;&lt;br /&gt;
	line-height: inherit;&lt;br /&gt;
	border-radius: 2px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation.mobile li li li a {&lt;br /&gt;
	padding-left: 4em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation.mobile-nav .menu.hidden {&lt;br /&gt;
	display: none;&lt;br /&gt;
}&lt;br /&gt;
#it-mobile-menu {&lt;br /&gt;
	background: #3B3F42;&lt;br /&gt;
	color: #ECECEC;&lt;br /&gt;
	padding: .25em .75em;	&lt;br /&gt;
	display: block;&lt;br /&gt;
	cursor: pointer;&lt;br /&gt;
	border-radius: 2px;&lt;br /&gt;
	-webkit-font-smoothing: antialiased;	&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation.mobile.borderless {&lt;br /&gt;
	border: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Make sure the Mobile navigation only shows when in Mobile mode (style-mobile.css is active)===&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
/*********************************************&lt;br /&gt;
	Mobile Navigation Menu (Alternate Module Style - hidden above 500px wide)&lt;br /&gt;
*********************************************/&lt;br /&gt;
&lt;br /&gt;
#it-mobile-menu {&lt;br /&gt;
	display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Activate the Mobile Navigation===&lt;br /&gt;
Select the Mobile navigation Style in the Builder Layout Manager for your Navigation Module.&lt;br /&gt;
&lt;br /&gt;
== How to set up a responsive Full Width slideshow in iThemes Builder ==&lt;br /&gt;
&lt;br /&gt;
In this tutorial, we are going to use [http://ithemes.com/purchase/slideshow/ iThemes Slideshow] plugin to set up a responsive full width slideshow in Builder.&lt;br /&gt;
&lt;br /&gt;
[[File:WordPress-Dev-Site-2013-04-24-11-34-20.jpg|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Install and activate [http://ithemes.com/purchase/slideshow/ Slideshow] plugin. Add a new group named say, &amp;lt;code&amp;gt;Homepage Slider&amp;lt;/code&amp;gt;. Edit the group and set dimensions to 1500px by 430px.&lt;br /&gt;
Note that these are just recommended dimensions and are not set in stone and you are free to experiment and change them as you see them fit for your needs.&lt;br /&gt;
&lt;br /&gt;
Under &amp;lt;code&amp;gt;Render Mode&amp;lt;/code&amp;gt;, select &amp;lt;code&amp;gt;Responsive&amp;lt;/code&amp;gt;. Save settings.&lt;br /&gt;
&lt;br /&gt;
Upload the images you wish to appear in the slide group.&lt;br /&gt;
&lt;br /&gt;
[[File:Slideshow ‹ WordPress Dev Site — WordPress 2013-04-24 12-03-05.png|362px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''2.''' Add the following in child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; before closing PHP tag (if any):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
add_theme_support( 'builder-full-width-modules' );&lt;br /&gt;
&lt;br /&gt;
if ( ! function_exists( 'it_builder_loaded' ) ) {&lt;br /&gt;
	function it_builder_loaded() {&lt;br /&gt;
		builder_register_module_style( 'widget-bar', 'Full Width Slider', 'widget-bar-full-width-slider' );&lt;br /&gt;
	}&lt;br /&gt;
	add_action( 'it_libraries_loaded', 'it_builder_loaded' );&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: If the first line in above, i.e., for adding full width modules support is already present, do not add it again.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Edit your layout and add a Widget Bar module with 1 column wherever you want the Slideshow to appear.&lt;br /&gt;
&lt;br /&gt;
Select &amp;lt;code&amp;gt;Full Width Slider&amp;lt;/code&amp;gt; from Style dropdown.&lt;br /&gt;
&lt;br /&gt;
You might want to name the module &amp;lt;code&amp;gt;Slider&amp;lt;/code&amp;gt; for easy identification.&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-04-24 at 11.49.50 AM.png|668px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''4.''' Go to Appearance -&amp;gt; Widgets page for this layout and drag iThemes Slideshow widget into the Widget bar module's sidebar and ensure that your full width slider group is the selected one.&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-04-24 at 11.51.54 AM.png|299px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''5.''' Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
/* For full width slideshow */&lt;br /&gt;
&lt;br /&gt;
.widget-bar-full-width-slider-background-wrapper {&lt;br /&gt;
    padding: 0;&lt;br /&gt;
    margin-bottom: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.widget-bar-full-width-slider-outer-wrapper {&lt;br /&gt;
    max-width: 100% !important;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''6.''' Add the following in &amp;lt;code&amp;gt;style-mobile.css&amp;lt;/code&amp;gt; (create this file if it is not existing):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
/* For full width slideshow */&lt;br /&gt;
&lt;br /&gt;
#pb_slideshow_rslider-1 .nivo-prevNav {&lt;br /&gt;
	margin-left: 0 !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#pb_slideshow_rslider-1 .nivo-nextNav {&lt;br /&gt;
	margin-right: 0 !important;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''7.''' Create a new file named &amp;lt;code&amp;gt;style-responsive.css&amp;lt;/code&amp;gt; in the child theme and paste the following in it:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
/* For full width slideshow */&lt;br /&gt;
&lt;br /&gt;
.widget-bar-full-width-slider-background-wrapper {&lt;br /&gt;
    padding: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:Easy_Accordion_Test_Page_-_WordPress_Dev_Site_2013-04-30_13-03-49.png</id>
		<title>File:Easy Accordion Test Page - WordPress Dev Site 2013-04-30 13-03-49.png</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:Easy_Accordion_Test_Page_-_WordPress_Dev_Site_2013-04-30_13-03-49.png"/>
				<updated>2013-04-30T07:35:51Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/Builder_Frequently_Asked_Questions</id>
		<title>Builder Frequently Asked Questions</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/Builder_Frequently_Asked_Questions"/>
				<updated>2013-04-30T05:01:42Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: /* Less Frequently Asked Questions */ Added == Layouts do not appear correctly ==&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Most Frequently Asked Questions=&lt;br /&gt;
&lt;br /&gt;
==Where can I learn about the basics of how Builder works?==&lt;br /&gt;
&lt;br /&gt;
Please start here: http://ithemes.com/builder-basics-training/&lt;br /&gt;
&lt;br /&gt;
==What are child themes? Should I use a child theme?==&lt;br /&gt;
&lt;br /&gt;
It is a good idea to use a child theme (of Builder) as your active theme and not Builder directly. This will protect any modifications and customizations you might have done from being erased when you upgrade Builder.&lt;br /&gt;
&lt;br /&gt;
To learn how to do this, go to:&lt;br /&gt;
[http://ithemes.com/ithemes-and-child-themes-introduction/ Child Themes Introduction]&lt;br /&gt;
[http://ithemes.com/ithemes-and-child-themes-a-quick-tutorial-1/ Child Themes Tutorial]&lt;br /&gt;
&lt;br /&gt;
Screenshots of the [[Builder Child Themes|available child themes]] for Builder&lt;br /&gt;
&lt;br /&gt;
==Activated a child theme. How come my site does not look like the demo site?==&lt;br /&gt;
&lt;br /&gt;
To get a Builder site with a child theme active to look like the child theme's demo site, it has to be built by way of arranging layouts, modules, widgets and in some cases, editing style.css.&lt;br /&gt;
&lt;br /&gt;
When a child theme is activated, the site will NOT look like the demo site out of the box.&lt;br /&gt;
&lt;br /&gt;
When we create the demo sites, we make no adjustments to any .php or .css files within the theme. The only adjustments we make are within the WordPress dashboard. Like with all themes and child themes (both iThemes and other companies), every site need a little set up. For example, one will need to add some pages, write some posts, create menus, etc. In other words, every site need content. There is no way any theme can do all of these things for customers.&lt;br /&gt;
&lt;br /&gt;
For Thinner child theme (as an example), if one writes some posts, sets a [http://codex.wordpress.org/Post_Thumbnails#Setting_a_Post_Thumbnail post thumbnail] for seven or more of those posts, and selects the slider extension in his/her layout (My Theme &amp;gt; Layouts &amp;amp; Views) that points to his/her main blog, he/she will find a comparable layout as the Thinner home page.&lt;br /&gt;
&lt;br /&gt;
As one can see, there is no way we can provide content for a customer. However, if one takes the time to set up WordPress and add default WordPress items, he/she will see that our child theme demos do represent what a child theme would look like when on a site with content.&lt;br /&gt;
&lt;br /&gt;
If time permits, we will provide instructions on how to create a layout similar to the demo. &lt;br /&gt;
&lt;br /&gt;
Example: [http://ithemes.com/codex/page/Americana#How_to_set_up_Americana_to_look_like_the_demo_site This link] has instructions on how a Builder site with Americana child theme can be made to look like its demo site.&lt;br /&gt;
&lt;br /&gt;
==Use a static page as front page==&lt;br /&gt;
&lt;br /&gt;
Q: I want to have a static page as front page (i.e., at www.mysite.com) and the blog posts to appear at another page, say www.mysite.com/blog. How do I do this?&lt;br /&gt;
*Go to Settings -&amp;gt; Permalinks and set the permalink structure to something like /%postname%/&lt;br /&gt;
*Create two empty pages (with no content in them) titled '''Home''' and '''Blog'''.&lt;br /&gt;
*Go to Settings -&amp;gt; Reading. Under ''Front page displays'', select &amp;quot;A static page (select below)&amp;quot;, choose '''Home''' for Front page and '''Blog''' for Posts page. Save changes.&lt;br /&gt;
&lt;br /&gt;
==Apply a layout to the Posts page==&lt;br /&gt;
&lt;br /&gt;
Q:I have created a layout for my Posts page. How do I apply this layout to the Posts page?&lt;br /&gt;
&lt;br /&gt;
A: Go to My Theme -&amp;gt; Layouts and Views. Click on Views tab, then Add View and associate '''Blog''' view with the layout you have created for the Posts page.&lt;br /&gt;
&lt;br /&gt;
==All the pages are getting re-directed to front(home) page==&lt;br /&gt;
&lt;br /&gt;
# Ensure that the default layout has a content module. It is a common occurrence to construct site's home/front page layout with just widget bars, HTML modules etc. and leave it as default. The layout used for Pages, posts, archives, search, category pages etc. must have a content module or else, there will be no place for the content to show up in. Therefore, it is highly recommended that default layout has content module.&lt;br /&gt;
# If you using some sort of Redirection plugin, check its settings/deactivate it (for troubleshooting)&lt;br /&gt;
&lt;br /&gt;
==Is it possible to have a 100% full width modules in Builder?==&lt;br /&gt;
It is possible to have 100% fluid modules using by editing theme's functions.php. Click [http://ithemes.com/codex/page/Builder_Tips_and_Tricks#Use_a_100.25_width_background_for_one_or_more_modules here] for details.&lt;br /&gt;
&lt;br /&gt;
When using the above method, to specify 100% width to more than 1 module see [http://ithemes.com/forum/index.php?/topic/8624-how-to-get-100-background-for-specific-modules/ this forum thread] and [http://ithemes.com/forum/index.php?/topic/10676-styling-the-content-area-from-builder-274-how-to/#p50101 this].&lt;br /&gt;
&lt;br /&gt;
You might also want to check out http://vanweerd.com/how-to-add-full-width-header-and-footer-to-the-builder-theme/&lt;br /&gt;
&lt;br /&gt;
==How do I display post excerpts as opposed to the full posts in my Posts page?==&lt;br /&gt;
&lt;br /&gt;
Edit your active theme's (should be a child theme of Builder) ''index.php''. (Note: for the Acute theme, edit ''content.php'').&lt;br /&gt;
&lt;br /&gt;
Replace a line similar to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php the_content( __( 'Read More&amp;amp;rarr;', 'it-l10n-Builder' ) ); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php the_excerpt(); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: To do the same for other views like category pages, edit the appropriate template file - archive.php, in this case. See http://codex.wordpress.org/images/1/18/Template_Hierarchy.png&lt;br /&gt;
&lt;br /&gt;
If you would like to control the number of characters to appear in excerpts and change the cut-off character from &amp;quot;...&amp;quot; to something else, you might want to use [http://wordpress.org/extend/plugins/the-excerpt-re-reloaded/ The Excerpt re-reloaded] or [http://wordpress.org/extend/plugins/excerpts-deluxe/ Excerpts Deluxe] or [http://wordpress.org/extend/plugins/advanced-excerpt/ Advanced Excerpt].&lt;br /&gt;
&lt;br /&gt;
Also see http://codex.wordpress.org/Function_Reference/the_excerpt&lt;br /&gt;
&lt;br /&gt;
==How do I display full posts as opposed to post excerpts in my Posts page?==&lt;br /&gt;
&lt;br /&gt;
Edit your active theme's '''index.php'''. (Note: for the Acute theme, edit ''content.php'').&lt;br /&gt;
&lt;br /&gt;
Replace&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php the_excerpt(); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php the_content('Read more...'); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to place nav bar to the right of logo ==&lt;br /&gt;
&lt;br /&gt;
Follow http://ithemes.com/codex/page/BuilderChild-Default#How_to_place_nav_bar_to_the_right_of_logo&lt;br /&gt;
&lt;br /&gt;
==How do I edit the footer?==&lt;br /&gt;
&lt;br /&gt;
=== Method 1 ===&lt;br /&gt;
&lt;br /&gt;
Make a copy of ''footer.php'' from parent Builder directory, edit it and place in your child theme's (active theme) directory.&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/builder-tip-how-to-edit-footer/ Video and detailed instructions]&lt;br /&gt;
&lt;br /&gt;
Examples of customized footer.php: [http://d.pr/MwxJ 1]&lt;br /&gt;
&lt;br /&gt;
'''If you would like to have a footer.php that looks like the screenshot below as starting point to use as is or further customize''', download [http://cl.ly/0z1C1X32243A30462F1q this] zip file, extract it and upload footer.php to your child theme directory.&lt;br /&gt;
&lt;br /&gt;
[[File:Custom-footer.png|800px|thumb|none|Screenshot showing customized footer - Click to enlarge]]&lt;br /&gt;
&lt;br /&gt;
This is the code in footer.php just in case the download link does not work:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
function render_footer() {&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
	&amp;lt;!-- Begin changes --&amp;gt;&lt;br /&gt;
	&amp;lt;div class=&amp;quot;alignmiddle&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;p&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php bloginfo('url'); ?&amp;gt;&amp;quot;&amp;gt;Home&amp;lt;/a&amp;gt; | &amp;lt;a href=&amp;quot;&amp;lt;?php bloginfo('url'); ?&amp;gt;/privacy-policy/&amp;quot;&amp;gt;Privacy Policy&amp;lt;/a&amp;gt; | &amp;lt;a href=&amp;quot;&amp;lt;?php bloginfo('url'); ?&amp;gt;/terms-conditions/&amp;quot;&amp;gt;Terms &amp;amp;amp; Conditions&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
		&amp;lt;p&amp;gt;&amp;lt;?php echo date( 'Y' ); ?&amp;gt; - Copyright &amp;amp;copy; All Rights Reserved&amp;lt;/p&amp;gt;&lt;br /&gt;
	&amp;lt;/div&amp;gt;&lt;br /&gt;
	&amp;lt;!-- End changes --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;?php wp_footer(); ?&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
add_action( 'builder_layout_engine_render_footer', 'render_footer' );&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace &amp;amp;amp; with '''&amp;amp; a m p ;''' without spaces and © with '''&amp;amp; c o p y ;''' without the spaces.&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.alignmiddle {&lt;br /&gt;
	text-align: center;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Method 2 ===&lt;br /&gt;
&lt;br /&gt;
To remove the credit to iThemes Builder (but leave the standard copyright notice, powered by WordPress etc.) you could also include this function in your child theme's functions.php:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_filter( 'builder_footer_credit', 'custom_builder_footer_credit' );&lt;br /&gt;
&lt;br /&gt;
function custom_builder_footer_credit( $footer_credit ) {&lt;br /&gt;
    $footer_credit = 'Powered by &amp;lt;a href=&amp;quot;http://wordpress.org&amp;quot;&amp;gt;WordPress&amp;lt;/a&amp;gt;&amp;lt;br /&amp;gt;Customized by &amp;lt;a href=&amp;quot;http://me.com/&amp;quot;&amp;gt;Myself!&amp;lt;/a&amp;gt;';&lt;br /&gt;
    &lt;br /&gt;
    return $footer_credit;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ensure that line numbers are not present in the code in functions.php.&lt;br /&gt;
&lt;br /&gt;
See http://www.screencast.com/t/R2hJBzCRk and http://www.screencast.com/t/ZajvGiQGo&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/index.php?/topic/12687-edit-footer/#p59955&lt;br /&gt;
&lt;br /&gt;
== How to backup and restore a WordPress site that uses Builder ==&lt;br /&gt;
&lt;br /&gt;
=== Manually ===&lt;br /&gt;
&lt;br /&gt;
The standard method of backing up database, editing the resulting .sql file to do a find and replace of source and destination URLs, importing the modified .sql to the new server and then uploading the files will not work in case of Builder sites.&lt;br /&gt;
&lt;br /&gt;
The reason for this is that simple find and replace can not handle [http://wpgarage.com/tips/data-portability-and-data-serialization-in-wordpress/ serialized data]. A solution that handles serialized data must be used. We have tested [http://wordpress.org/extend/plugins/wp-migrate-db/ WP Migrate DB] successfully to manually copy a Builder site with no loss of data (layouts incl their IDs, Style Manager Styles, widgets etc.) from one location to another.&lt;br /&gt;
&lt;br /&gt;
=== Automated (simpler and faster) ===&lt;br /&gt;
&lt;br /&gt;
[http://pluginbuddy.com/purchase/backupbuddy/ BackupBuddy] is the only solution that lets you completely backup and restore a Builder site. For a discussion on the reason behind this, see post #8 at [http://ithemes.com/forum/index.php?/topic/7451-how-do-i-restore-a-site-to-a-different-host-wo-losing-layouts-and-wo-using-backupbuddy/ this] forum thread.&lt;br /&gt;
&lt;br /&gt;
==How to add a custom favicon==&lt;br /&gt;
&lt;br /&gt;
# go to using wp-dashboard &amp;gt; My Theme &amp;gt; Settings, click Favicon and select an icon, or upload your own&lt;br /&gt;
# alternatively (but not recommended) you can upload favicon.ico file to your child theme's images directory. Ex.: wp-content/themes/BuilderChild-Foundation/images&lt;br /&gt;
&lt;br /&gt;
Tip: There are services like [http://www.htmlkit.com/services/favicon/ this] and [http://tools.dynamicdrive.com/favicon/ this] which lets you upload a regular image (jpg, png, gif etc.) and convert them to a .ico file.&lt;br /&gt;
&lt;br /&gt;
==How to upgrade Builder?==&lt;br /&gt;
&lt;br /&gt;
See [[Builder_Documentation#How_to_upgrade_Builder|How to upgrade Builder]]&lt;br /&gt;
&lt;br /&gt;
==How to fix &amp;quot;Fatal Error: Class 'ITStorage2' not found&amp;quot;==&lt;br /&gt;
&lt;br /&gt;
This happens because of upgrading Builder without first updating the associated plugins like Style Manager and SEO plugin. &lt;br /&gt;
&lt;br /&gt;
This could have been avoided by following the instructions we provided on how to upgrade Builder [[Builder_Documentation#How_to_upgrade_Builder|here]].&lt;br /&gt;
&lt;br /&gt;
To fix the issue,&lt;br /&gt;
&lt;br /&gt;
# Connect to your web server using either the file manager in cPanel of your hosting account or a FTP client.&lt;br /&gt;
# Download the latest versions of Style Manager (if you are using this plugin) and Builder SEO plugin (if you are using this plugin) zip files from your [http://ithemes.com/member/member.php Member Panel].&lt;br /&gt;
# Extract the contents of these plugins (whichever is being used i.e., present at wp-content/plugins) and upload them to the corresponding directories in wp-content/plugins overwriting the existing ones.&lt;br /&gt;
&lt;br /&gt;
==How to upgrade Builder when a child theme isn't being used?==&lt;br /&gt;
&lt;br /&gt;
It is always good to use a child theme of Builder as the active theme and not Builder directly. This will avoid custom changes to the theme files from being overwritten by the upgrade.&lt;br /&gt;
&lt;br /&gt;
If you were not aware of this and have been directly using Builder as the active theme and would like to now upgrade to the latest version, follow this approach:&lt;br /&gt;
&lt;br /&gt;
# Take a full backup of your site using [http://pluginbuddy.com/purchase/backupbuddy/ BackupBuddy]. If purchasing BackupBuddy is not an option, take a backup of wp-content/themes/Builder directory and WordPress database (using phpMyAdmin or otherwise) at the least.&lt;br /&gt;
# Make a note of all file changes (modifications and new additions) inside Builder directory. Usually modifications will be done to templates like index.php, single.php, archive.php and style.css.&lt;br /&gt;
# Upload the latest default child theme to wp-content/themes. It can be downloaded from [http://ithemes.com/member/member.php member panel].&lt;br /&gt;
# Apply all changes that were noted in step 2 in wp-content/themes/BuilderChild-Default&lt;br /&gt;
# Upgrade Builder to the latest version by following the steps in http://ithemes.com/codex/page/Builder_Documentation#How_to_upgrade_Builder&lt;br /&gt;
# Activate the child theme.&lt;br /&gt;
# Check your site and fix anything that is amiss. If there are any links whose URLs point to files inside Builder directory, they may have to be changed to point to the child theme directory.&lt;br /&gt;
&lt;br /&gt;
==How do I add search at the right side of my nav bar?==&lt;br /&gt;
&lt;br /&gt;
=== Method 1 ===&lt;br /&gt;
Pre-requisite: WordPress 3+, Builder 2.4.10+&lt;br /&gt;
&lt;br /&gt;
Rather than using the navigation module, add an HTML module where you want the navigation to appear&lt;br /&gt;
*add the following content to the textbox  (assuming your menu is called &amp;quot;menu1&amp;quot;, change of course if needed):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;nav_container&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php wp_nav_menu( array( 'menu' =&amp;gt; 'menu1', 'menu_class' =&amp;gt; 'builder-module-navigation') ); ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;search_in_nav&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;?php get_search_form(); ?&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*save the html module, select &amp;lt;tt&amp;gt;no sidebars&amp;lt;/tt&amp;gt;, and &amp;lt;tt&amp;gt;enable PHP&amp;lt;/tt&amp;gt;,&lt;br /&gt;
*save the Builder layout&lt;br /&gt;
*add the following code to your stylesheet:&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#nav_container {&lt;br /&gt;
    height: 34px;&lt;br /&gt;
    display: block;&lt;br /&gt;
    width: 100%;&lt;br /&gt;
    background: #FFFFFF url('images/nav_bg.png') repeat top left;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.search_in_nav {&lt;br /&gt;
    float: right;&lt;br /&gt;
    display: block;&lt;br /&gt;
    width: 250px;&lt;br /&gt;
    height: 24px;&lt;br /&gt;
    padding: 0px 5px;&lt;br /&gt;
    margin: 0px;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
*play around a bit with the margins and paddings, heights and widths.&lt;br /&gt;
&lt;br /&gt;
'''Note: This method can also be applied to place a image or RSS feed or any HTML in the nav bar.'''&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/5151-dps-solutions-builder/#p23629 this topic on the forum]&lt;br /&gt;
&lt;br /&gt;
[http://vanweerd.com/how-to-replace-text-links-with-icon-links-in-wp-3-navigation-menus/ Additional Resource 1], [http://ithemes.com/forum/index.php?/topic/10290-adding-social-media-icons-to-the-main-menu-nav/ Additional Resource 2]&lt;br /&gt;
&lt;br /&gt;
=== Method 2 ===&lt;br /&gt;
&lt;br /&gt;
http://ithemes.com/codex/page/Builder_Tips_and_Tricks#How_to_add_a_search_form_at_the_right_side_in_a_nav_bar&lt;br /&gt;
&lt;br /&gt;
==At Appearance -&amp;gt; Editor, templates like footer.php do not appear==&lt;br /&gt;
&lt;br /&gt;
See [http://ithemes.com/forum/index.php?/topic/12061-why-is-child-theme-forum-locked/#p56540 this] and [http://wordpress.org/support/topic/child-themes-in-31-rc2?replies=8 this].&lt;br /&gt;
&lt;br /&gt;
==PCLZIP_ERR_BAD_FORMAT==&lt;br /&gt;
&lt;br /&gt;
When Builder is being installed, if the following appears&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Installing Theme from uploaded file: Builder.zip&lt;br /&gt;
&lt;br /&gt;
Unpacking the package…&lt;br /&gt;
&lt;br /&gt;
Incompatible Archive. PCLZIP_ERR_BAD_FORMAT (-10) : Unable to find End of Central Dir Record signature&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
it means that the zip file is corrupt. Try re-downloading it using another browser.&lt;br /&gt;
&lt;br /&gt;
From our observation, this is happening only on Macs. So if you have a spare Windows computer, try downloading Builder again from PC.&lt;br /&gt;
&lt;br /&gt;
==How to center my navigation menu==&lt;br /&gt;
&lt;br /&gt;
http://ithemes.com/codex/page/Builder_CSS_Guide#To_center_the_content_of_nav_bar&lt;br /&gt;
&lt;br /&gt;
== How to assign a layout to all posts belonging to a specific category ==&lt;br /&gt;
&lt;br /&gt;
No view exists which can be used for all single post pages belonging to a particular category.&lt;br /&gt;
&lt;br /&gt;
There are design questions that need to be addressed before implementing such a view. What will happen if a post belongs to multiple categories? In such case suppose the user sets a view associating all posts from Category A and another one for all posts from Category B, and if a post belongs to both the categories there will be conflicting views which leads to the question: which layout should be applied for that post's single page?&lt;br /&gt;
&lt;br /&gt;
The only way currently is to edit each post and set the layout manually.&lt;br /&gt;
&lt;br /&gt;
Forum topic on this: http://ithemes.com/forum/topic/17616-layout-for-single-post-page-of-only-one-post-category/&lt;br /&gt;
&lt;br /&gt;
===Update: There now is a fairly straightforward solution for this===&lt;br /&gt;
Chris has come up with a code snippet that needs to be placed in child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; which allows you to specify a specific layout using specific conditions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function custom_filter_category_layouts( $layout_id ) {&lt;br /&gt;
    if ( is_single() &amp;amp;&amp;amp; in_category( 'news' ) )&lt;br /&gt;
            return '4e5f997043d8e';&lt;br /&gt;
    &lt;br /&gt;
    return $layout_id;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_current_layout', 'custom_filter_category_layouts' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The builder_filter_current_layout filter runs after the Layout selection process has finished and allows custom code to have the final say on what Layout is used. The example code will force the current Layout to be the one with an ID of &amp;quot;4e5f997043d8e&amp;quot; if the site is currently showing an individual post that is in the &amp;quot;news&amp;quot; category. If this condition isn't met, it returns the current Layout ID so that it doesn't change any of the other portions of the site. This can be modified to use any category and any Layout ID.&lt;br /&gt;
&lt;br /&gt;
To find the ID for a Layout, go to the Layouts listing, copy the edit link for the desired Layout, paste the link somewhere, and grab the text after the last equal sign. For example, consider the following link:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;http://example.com/wp-admin/admin.php?page=layout-editor&amp;amp;editor_tab=layouts&amp;amp;layout=4e5f997043849&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The Layout's ID is 4e5f997043849.&lt;br /&gt;
&lt;br /&gt;
To use the code, simply add it to your child theme's functions.php file.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
See also: http://ithemes.com/forum/topic/22220-assigning-a-layout-for-post-page-by-category&lt;br /&gt;
&lt;br /&gt;
==Does WordPress 3.0 menu system work in Builder?==&lt;br /&gt;
&lt;br /&gt;
Oh yes! Even before the WordPress 3.0 menu system's final version got released. Then what about this message &amp;quot;Your theme supports 0 menus. Select which menu appears in each location.&amp;quot;?, you may be asking. Well, just ignore it. Go ahead and create your menu at Appearance -&amp;gt; Menus, then edit your layout and in the navigation module's settings, select &amp;quot;Custom Menu - ''name''&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
You might want to watch [http://ithemes.com/wordpress-3-0-menus-demo-video-on-ithemes-builder/ WordPress 3.0 Menus Demo Video on iThemes Builder].&lt;br /&gt;
&lt;br /&gt;
== How to use a custom font in Builder? ==&lt;br /&gt;
&lt;br /&gt;
See [http://ithemes.com/forum/topic/29969-how-to-add-custom-menu-fonts-to-builder/page__view__findpost__p__138928 this] forum post for an example.&lt;br /&gt;
&lt;br /&gt;
== Builder and BuddyPress ==&lt;br /&gt;
&lt;br /&gt;
Builder's child theme [http://ithemes.com/codex/page/Builder_Child_Themes#Yukon Yukon] has built-in support for BuddyPress. It is designed specifically to work with BuddyPress, and does not require the template pack.&lt;br /&gt;
&lt;br /&gt;
To install BuddyPress while using Builder Yukon as a child theme, follow these steps:&lt;br /&gt;
&lt;br /&gt;
# Install WordPress&lt;br /&gt;
# Upload the [http://wordpress.org/extend/plugins/buddypress/ BuddyPress plugin] (from WP repository)&lt;br /&gt;
# Activate and follow the BuddyPress installation five-step walkthrough (during step #4 choose to use the included BuddyPress theme, and then finish the installation)&lt;br /&gt;
# Upload Builder Theme (Core)&lt;br /&gt;
# Upload the Builder child Yukon theme and activate. With Builder and BuddyPress now setup, begin customization.&lt;br /&gt;
&lt;br /&gt;
For all other Builder child themes, BuddyPress need to be installed like it will be installed for any other WordPress theme. Those will require the BuddyPress template pack plugin. On using the template pack: http://wordpress.org/extend/plugins/bp-template-pack/&lt;br /&gt;
&lt;br /&gt;
More [http://ithemes.com/2012/03/14/our-first-builder-child-theme-for-buddypress-yukon/ here] and a follow up post [http://ithemes.com/forum/topic/25458-when-to-activate-buddypress-template-packmembership/ here].&lt;br /&gt;
&lt;br /&gt;
= Less Frequently Asked Questions =&lt;br /&gt;
&lt;br /&gt;
== How do I disable comments on all Pages? ==&lt;br /&gt;
&lt;br /&gt;
Use the [http://wordpress.org/extend/plugins/no-comments-on-pages/ no comments on pages] plugin&lt;br /&gt;
&lt;br /&gt;
==I want to get rid of the text &amp;quot;Comments are closed&amp;quot; at the bottom of the content==&lt;br /&gt;
&lt;br /&gt;
Add the following to your theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.nocomments {&lt;br /&gt;
   display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Uploaded images do not appear==&lt;br /&gt;
&lt;br /&gt;
'''1.''' Ensure that the image is saved in the right format (extension). For example, if a png file is incorrectly saved as .jpg, then it won't work. Two ways of checking this is opening the image in a) Photoshop b) Irfanview.&lt;br /&gt;
&lt;br /&gt;
'''2.''' WordPress 3.5 has taken away the option to manually change the path through WordPress settings, but one can follow [http://www.wpbeginner.com/wp-tutorials/how-to-change-the-default-media-upload-location-in-wordpress-3-5/ these] instructions, and set it to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
define( 'UPLOADS', 'wp-content/'.'uploads' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In your WP dashboard go to Settings -&amp;gt; Media. Tick the option to organize uploads in year and month based folders.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Check to see if GD image library support is enabled in your hosting. This can be checked by saving the following as a php file, say phpinfo.php and accessing it from the URL like yoursite.com/phpinfo.php.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;?php phpinfo();?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Tip: While uploading an image in image module if you want a fully wide image (i.e., no sidebar) ensure that image width is the same as that of layout. Also specify the exact image height in the module's settings. This will avoid the image from getting stretched disproportionately.&lt;br /&gt;
&lt;br /&gt;
==I am unable to drag and drop widgets onto the sidebar==&lt;br /&gt;
&lt;br /&gt;
*Deactivate all your plugins and try.&lt;br /&gt;
*See also this [http://ithemes.com/forum/index.php?/topic/619-widget-problem-no-sidebars-defined/#p2769 support forum thread]&lt;br /&gt;
&lt;br /&gt;
==Add Module shows a blank window==&lt;br /&gt;
Q: When I go into My Theme, Layout, Create Layout then choose Add Module, a blank window comes up and just seems to hang there.&lt;br /&gt;
&lt;br /&gt;
A: Deactivate FCKEditor plugin.&lt;br /&gt;
&lt;br /&gt;
B. Deactivate White Label CMS plugin&lt;br /&gt;
&lt;br /&gt;
==Is it possible to have vertical navigation?==&lt;br /&gt;
See [http://ithemes.com/forum/index.php?/topic/4697-vertical-navigation/#p23709 this video], the content of interest starts at 07:38 in the video&lt;br /&gt;
&lt;br /&gt;
Pages and/or Categories widget can be used in the sidebar of any widget.&lt;br /&gt;
&lt;br /&gt;
Other solutions:&lt;br /&gt;
*[http://wordpress.org/extend/plugins/page-tree/ page tree] plugin&lt;br /&gt;
*[http://wordpress.org/extend/plugins/flexi-pages-widget/ flexi pages widget] plugin&lt;br /&gt;
*[http://wordpress.org/extend/plugins/simple-sidebar-navigation/ simple sidebar navigation] plugin&lt;br /&gt;
*[http://wordpress.org/extend/plugins/allwebmenus-wordpress-menu-plugin/ allwebmenus wordpress menu]  plugin&lt;br /&gt;
*[http://green-beast.com/blog/?p=157 this] article&lt;br /&gt;
&lt;br /&gt;
==The theme you are currently using isn't widget-aware==&lt;br /&gt;
Q: I can't put any widgets in the theme and keep getting this pop-up &amp;quot;The theme you are currently using isn’t widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
A: &lt;br /&gt;
* Go to the Appearance &amp;gt; Widgets page&lt;br /&gt;
* Click the Screen Options tab towards the top-right of the page&lt;br /&gt;
* Click the &amp;quot;Disable accessibility mode&amp;quot; link&lt;br /&gt;
&lt;br /&gt;
See also this [http://ithemes.com/forum/index.php?/topic/2056-widgets-not-working/#p9231 Support forum thread]&lt;br /&gt;
&lt;br /&gt;
==How to I remove the space at the top of the page==&lt;br /&gt;
Add the following code at the end of your child theme's style.css.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-container-outer-wrapper {&lt;br /&gt;
    margin-top: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==The last image in billboard appears below compared with the others==&lt;br /&gt;
&lt;br /&gt;
To fix this, add the following at the end of your theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.ithemes-billboard :last-child {&lt;br /&gt;
    margin-bottom: 1.5em !important;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==How do I get notified by email whenever there's a Builder update?==&lt;br /&gt;
&lt;br /&gt;
Updates to [http://ithemes.com/codex/page/Category:Builder/Release_Notes Builder Release Notes] page can be tracked via its RSS feed. We can use a service like [http://www.feedmyinbox.com/ Feed My Inbox] to have this RSS feed delivered to your email inbox automatically.&lt;br /&gt;
&lt;br /&gt;
==array_merge() warning==&lt;br /&gt;
When a child theme of Builder is activated, if a warning similar to the one below appears on the site&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;Warning: array_merge() [function.array-merge]: Argument #1 is not an array in ..\themes\Builder\lib\layout-engine\sidebars.php on line 264&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
the fix is to reset the theme.&lt;br /&gt;
&lt;br /&gt;
Go to My Theme -&amp;gt; Settings. Click ''Reset Options'' button.&lt;br /&gt;
&lt;br /&gt;
==Author link contains spaces==&lt;br /&gt;
&lt;br /&gt;
For description of the problem and the solution, visit [http://ithemes.com/forum/index.php?/topic/9701-author-link-produces-404-page-not-found-error/#p45268 this forum post].&lt;br /&gt;
&lt;br /&gt;
==Make parent navigation item not clickable==&lt;br /&gt;
&lt;br /&gt;
Q: I want to create a menu item in the navigation (page defined nav) that has child pages but this menu item shouldn't be clickable.&lt;br /&gt;
&lt;br /&gt;
A: Check [http://ithemes.com/forum/index.php?/topic/5123-wp-30-creating-a-drop-down-menu-without-the-top-level-item-opening-a-page/ this forum post] or you can use a plugin, such as the [http://wordpress.org/extend/plugins/page-lists-plus/ page lists plus plugin]&lt;br /&gt;
&lt;br /&gt;
== How to remove bullets above tabs in Tabber Widget widgets ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Tabber-bullets-before.png&lt;br /&gt;
File:Tabber-bullets-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of your theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
ul.tabber-widget-tabs {&lt;br /&gt;
    list-style: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==How to show blog posts at site's front page (/) as well as at another Page (/blog)==&lt;br /&gt;
&lt;br /&gt;
# At Settings -&amp;gt; Reading, ensure that Front page is set to display latest posts. This is the default setting in WordPress.&lt;br /&gt;
# Create a new Page (or edit an existing one) named say, Blog, ensure that it is blank, set the Template to ''Blog Template'' and publish/update it.&lt;br /&gt;
# [Optional] If you would like to apply a layout to front page, go to My Theme -&amp;gt; Layouts, create a layout (or duplicate existing one) for it, go to Configure Views, Add View and add associate Home view with the layout created for front page.&lt;br /&gt;
# [Optional] If you would like to apply a layout to Blog page, edit the Page and select your desired layout from Custom Layout meta box.&lt;br /&gt;
&lt;br /&gt;
==How to disable Builders built-in SEO functions==&lt;br /&gt;
In your WordPress backend, go to My Theme -&amp;gt; Settings and set 'Would You like to use post tags as META keywords on single posts?' to NO (Yes is the default).&lt;br /&gt;
&lt;br /&gt;
Then add the following code your child theme's functions.php as described.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
// Remove Parent themes SEO&lt;br /&gt;
function remove_seo() {&lt;br /&gt;
    remove_action( 'builder_add_meta_data', 'builder_seo_options' );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_action('init', 'remove_seo');&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
See also this [http://ithemes.com/forum/index.php?/topic/1243-seo/#p6094 support forum thread]&lt;br /&gt;
&lt;br /&gt;
==What is the recommended way to edit theme templates like index.php and archive.php?==&lt;br /&gt;
&lt;br /&gt;
See [http://ithemes.com/forum/index.php?/topic/12061-why-is-child-theme-forum-locked/#p56540 this forum post]&lt;br /&gt;
&lt;br /&gt;
==How to change the name of a child theme?==&lt;br /&gt;
&lt;br /&gt;
Follow [http://ithemes.com/forum/index.php?/topic/11935-changed-the-name-of-the-child-theme-and-now-the-site-is-messed-up/#p55943 this] example.&lt;br /&gt;
&lt;br /&gt;
==Where is functions.php?==&lt;br /&gt;
&lt;br /&gt;
One should never make changes in functions.php inside parent Builder directory. functions.php in child theme directory should be the one to make changes in. Some child themes will have functions.php and some don't. If this file is not present in child theme directory, create a new file named functions.php, place opening (&amp;lt;?php) and closing (?&amp;gt;) PHP tags, save and upload it to child theme directory using a FTP client. Alternately cPanel's file manager also lets us create files on the server.&lt;br /&gt;
&lt;br /&gt;
Here is how a sample fresh functions.php file looks like:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Any code that we advise you to add in functions.php must be added before the closing PHP tag.&lt;br /&gt;
&lt;br /&gt;
== Which Builder themes are mobile compatible? ==&lt;br /&gt;
&lt;br /&gt;
With Builder, any of our child themes could be used as mobile themes simply by setting up your layout to be more narrow like the size of the iPhone screen.&lt;br /&gt;
&lt;br /&gt;
Here are a few things to consider with mobile themes though:&lt;br /&gt;
&lt;br /&gt;
Load times are slow, so you will want to use a theme that doesn't have many images to load. Any of the Foundation themes are a good example of this (among others).&lt;br /&gt;
&lt;br /&gt;
None of our existing child themes have any gesturing built in to them, so some of the gestures that are very useful on the iPhone won't exist in child themes.&lt;br /&gt;
&lt;br /&gt;
We do offer the [http://pluginbuddy.com/purchase/mobile/ Mobile plugin], which comes with a set of themes and a simple style manager that will allow you to match the colors of your mobile theme to the colors of your standard theme. You should have access to the Mobile plugin in your member area.&lt;br /&gt;
&lt;br /&gt;
== What are the minimum requirements for running Builder ==&lt;br /&gt;
&lt;br /&gt;
The same as those needed for running WordPress 3.2 namely: at least php 5.2.4 and MySQL 5+.&lt;br /&gt;
&lt;br /&gt;
More info: http://ithemes.com/forum/index.php?/topic/15708-minimum-requirements-for-builder-theme/&lt;br /&gt;
&lt;br /&gt;
== How to setup a server on your computer, develop Builder sites locally and migrate them to another location  ==&lt;br /&gt;
&lt;br /&gt;
If you are on Windows:&lt;br /&gt;
&lt;br /&gt;
# Install [http://www.apachefriends.org/en/xampp.html XAMPP].&lt;br /&gt;
# Set C:\xampp as the installation folder, now your localhost root will be in &amp;quot;htdocs&amp;quot; folder inside C:\xampp.&lt;br /&gt;
# [Optional] Set a password for MySQL.&lt;br /&gt;
# Download WordPress, extract the zip file and copy/move 'wordpress' folder inside C:\xampp\htdocs. Rename 'wordpress' folder to whatever is the name of your project.&lt;br /&gt;
# Install WP [http://codex.wordpress.org/Installing_WordPress#Famous_5-Minute_Install manually].&lt;br /&gt;
# [http://ithemes.com/codex/page/Builder_Documentation#How_to_install_Builder Set up Builder].&lt;br /&gt;
# Once it is all ready, use BackupBuddy to do a full backup. The generated zip file should be in wp-content/uploads. Download importbuddy.php.&lt;br /&gt;
# To learn how to restore the site to another location, watch the video [http://pluginbuddy.com/purchase/backupbuddy/backupbuddy-training/ here].&lt;br /&gt;
&lt;br /&gt;
If you are on Mac, install free version of [http://www.mamp.info/ MAMP] by following [http://www.youtube.com/watch?v=EJFmogQVG8c this] video. Do from step 4 (the root folder on Mac will differ) onwards listed above. I have set &amp;quot;Sites&amp;quot; inside my user directory as the root.&lt;br /&gt;
&lt;br /&gt;
Screenshot:&lt;br /&gt;
&lt;br /&gt;
[[File:Screen shot 2011-07-23 at 9.24.59 AM.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
== Can Builder be used to create a fluid/responsive site? ==&lt;br /&gt;
&lt;br /&gt;
Very soon.&lt;br /&gt;
&lt;br /&gt;
Builder is becoming responsive.&lt;br /&gt;
&lt;br /&gt;
See http://ithemes.com/2012/10/10/responsive-is-coming-to-ithemes-builder/&lt;br /&gt;
&lt;br /&gt;
== I installed my Builder powered WordPress site at site.com/wordpress. How do I move it to site.com? ==&lt;br /&gt;
&lt;br /&gt;
Follow [http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory#Using_a_pre-existing_subdirectory_install this].&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/topic/20738-replacing-old-html-site-with-new-wordpress-site/ Forum topic].&lt;br /&gt;
&lt;br /&gt;
== My site is loading slow ==&lt;br /&gt;
&lt;br /&gt;
The extra divs in the markup generated by Builder aren't going to impact site performance. A standard WordPress site with a fresh installation of Builder with no plugins loads just fine without any slowness on a decent host like HostGator. Site slowness, if present is (in 99% of the cases) not coming from Builder, but from other factors like non-optimized images, a lot of scripts added by plugins, hosting setup etc.&lt;br /&gt;
&lt;br /&gt;
Things to check for when your site is loading slow:&lt;br /&gt;
&lt;br /&gt;
# Ensure that images (like the ones in header, sliders, Pages and Posts) are optimized for web.&lt;br /&gt;
# Ensure that there are no references/calls to URLs (links within the site) that do not exist.&lt;br /&gt;
# Deactivate plugins and see if it makes a difference.&lt;br /&gt;
# Try using a caching plugin like W3 Total Cache and/or a CDN.&lt;br /&gt;
# Analyze your site in http://gtmetrix.com/ &lt;br /&gt;
&lt;br /&gt;
Some useful links:&lt;br /&gt;
&lt;br /&gt;
* http://richwp.com/wordpress-cdn-total-cache-amazon-cloudfront/&lt;br /&gt;
* http://wp.tutsplus.com/tutorials/the-ultimate-quickstart-guide-to-speeding-up-your-wordpress-site/&lt;br /&gt;
* http://www.noupe.com/how-tos/speeding-up-wordpress.html&lt;br /&gt;
* http://wpshout.com/faster-wordpress/&lt;br /&gt;
* http://css-tricks.com/video-screencasts/114-lets-do-simple-stuff-to-make-our-websites-faster/&lt;br /&gt;
&lt;br /&gt;
== What are the requirements for using Builder? ==&lt;br /&gt;
&lt;br /&gt;
At a minimum, we have the same requirements as WordPress. As can be seen on the [http://wordpress.org/about/requirements/ WordPress requirements page], the minimum supported version of PHP at the time of writing this is 5.2.4.&lt;br /&gt;
&lt;br /&gt;
Builder will always be updated to handle any issues present in future PHP releases. A few versions back, Builder had some issues with the PHP 5.4.x releases. These issues have since been fixed.&lt;br /&gt;
&lt;br /&gt;
So, as of this very moment, Builder is officially compatible with 5.2.4+.&lt;br /&gt;
&lt;br /&gt;
== Why do you advise me to add CSS code at the end of style.css versus directly modifying within? ==&lt;br /&gt;
&lt;br /&gt;
The safest way to make css modifications is if you copy the code that our support moderators supply literally and add it in the location suggested. If you feel more confident hacking into existing code through changes that might cripple your site, feel free to do so, but we will not advise you to do so.&lt;br /&gt;
&lt;br /&gt;
For example, if the code doesn't work (which is highly unlikely, since we test all code before we suggest it), and it's added at the end of your stylesheet, it will NOT harm anything, and we can review what you did, and suggest on how to fix it (did you forget a { or a ; or another character). If however something went bad halfway your stylesheet, your site could easily be completely messed up and all css following any invalid code (for example a missing { or } ) will be invalid as well.&lt;br /&gt;
&lt;br /&gt;
This is our professional advise, but of course, you are free to choose whichever solution you think is best. Do note that it will frustrate our support efforts if there is an issue, and we have to search through a couple of hundred lines of css code to see what might or might not have been changed, opposed to just scrolling to the end of your stylesheet, and locate all customisations in one spot.&lt;br /&gt;
&lt;br /&gt;
== Layouts do not appear correctly ==&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
&lt;br /&gt;
[[File:Wp1 2013-04-30 10-27-47.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
[[File:Wp1 2013-04-30 10-28-06.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
If the site does not appear correctly with the container not centered and everything aligned to the left, ensure that permissions of all directories in (including) &amp;lt;code&amp;gt;wp-content/uploads&amp;lt;/code&amp;gt; is '''755'''.&lt;br /&gt;
&lt;br /&gt;
Especially these directories in &amp;lt;code&amp;gt;uploads&amp;lt;/code&amp;gt; directory:&lt;br /&gt;
&lt;br /&gt;
* it-file-cache&lt;br /&gt;
* it-file-cache/builder-core&lt;br /&gt;
* it-file-cache/builder-layouts&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-04-30 at 10.24.25 AM.png|304px|thumb|none]]&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:Screen_Shot_2013-04-30_at_10.24.25_AM.png</id>
		<title>File:Screen Shot 2013-04-30 at 10.24.25 AM.png</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:Screen_Shot_2013-04-30_at_10.24.25_AM.png"/>
				<updated>2013-04-30T05:00:43Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:Wp1_2013-04-30_10-28-06.png</id>
		<title>File:Wp1 2013-04-30 10-28-06.png</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:Wp1_2013-04-30_10-28-06.png"/>
				<updated>2013-04-30T04:59:27Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:Wp1_2013-04-30_10-27-47.png</id>
		<title>File:Wp1 2013-04-30 10-27-47.png</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:Wp1_2013-04-30_10-27-47.png"/>
				<updated>2013-04-30T04:58:42Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/Builder_Child_Themes</id>
		<title>Builder Child Themes</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/Builder_Child_Themes"/>
				<updated>2013-04-30T03:38:57Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: /* Essence Silver */ (Corrected screenshot, earlier it was that of classic Essence Silver)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Introduction=&lt;br /&gt;
&lt;br /&gt;
In version 2.7, child themes have been introduced in WordPress. Using Child themes, you can modify (override) all aspects of a Parent theme (e.g. the stylesheet, page templates, functions) without risking to lose any modifications when upgrading the parent theme.&lt;br /&gt;
&lt;br /&gt;
See [http://ithemes.com/ithemes-and-child-themes-introduction/ iThemes and Child Themes – introduction] and [http://ithemes.com/ithemes-and-child-themes-a-quick-tutorial-1/ Child Themes, a quick tutorial].&lt;br /&gt;
&lt;br /&gt;
Child Theme Graphics can also be seen [http://ithemes.com/builder-store/ here] and [http://affiliates.ithemes.com/banners-graphics/ithemes/child-theme-graphics/ here].&lt;br /&gt;
&lt;br /&gt;
Listed below are the child themes of Builder that can be downloaded from the [http://ithemes.com/member/member.php member's area] (latest at the top):&lt;br /&gt;
&lt;br /&gt;
= List of child themes =&lt;br /&gt;
&lt;br /&gt;
== Air ==&lt;br /&gt;
&lt;br /&gt;
Builder Child Air is a new foundational or starter child theme for iThemes Builder. Whether you’re using the Builder Style Manager or writing your own CSS, we hope Air will be a great new place to start when creating your custom responsive-ready Builder child themes. &lt;br /&gt;
&lt;br /&gt;
Builder child Air includes several convenient built-in features to help lay the groundwork for custom child theme creation. A few of Air's theme highlights include:&lt;br /&gt;
&lt;br /&gt;
* Built-in Mobile-Ready Menu Style&lt;br /&gt;
* Fully Optimized for Style Manager&lt;br /&gt;
* New Inset Module Styles&lt;br /&gt;
* Full Window Image Style&lt;br /&gt;
&lt;br /&gt;
[[File:Air 2013-04-12 09-33-58.png|291px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/air/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2013/04/04/introducing-air-a-new-foundation-child-theme-for-builder/ Blog entry announcing the release of Air]&lt;br /&gt;
&lt;br /&gt;
== Noise ==&lt;br /&gt;
&lt;br /&gt;
12 March 2013 &lt;br /&gt;
&lt;br /&gt;
Today we’re pumped to release Noise, a responsive-ready Builder child theme with a brand new plugin for iThemes Builder, Builder Audio Block. Designed with musicians and bands in mind, Builder now makes it easy to create a WordPress band website with a “built-in” audio player, a way to display albums or discographies, a list of upcoming shows and support for music downloads/purchases with Easy Digital Downloads.&lt;br /&gt;
&lt;br /&gt;
Builder Child Noise features several new-to-Builder design and functionality elements that you’ve requested, including:&lt;br /&gt;
&lt;br /&gt;
* New Full Window and No Spacing Image Module Styles: Noise features new alternate module styles for images, including Full Window (or full width) and No Spacing. These new module styles for images can be added anywhere in your Builder Layouts. &lt;br /&gt;
&lt;br /&gt;
* Post Formats Styles: Ever wanted to post a quick status update or just a link? Noise includes new post format styles that add a Tumblr-like feel for your blog. From the Add New Post Page, you’ll see a new option to apply a format to the post, including standard, status, video, link or image.&lt;br /&gt;
&lt;br /&gt;
* Events Block Styling: To make it easy to include upcoming shows, Noise includes matching styles for Builder Events Block. &lt;br /&gt;
&lt;br /&gt;
[[File:Noise 2013-04-12 09-41-21.png|409px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/noise/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2013/03/11/just-released-noise-a-new-builder-child-theme-new-builder-audio-block/ Blog entry announcing the release of Noise]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/codex/page/BuilderChild-Noise Noise codex page]&lt;br /&gt;
&lt;br /&gt;
== RedBud ==&lt;br /&gt;
&lt;br /&gt;
With a soft, feminine style, RedBud is perfect for bloggers, event planners, photography sites or vintage boutiques. RedBud features hand-drawn details, several alternate widget styles, a unique Google font pairing and theme-matching styling for Gravity Forms.&lt;br /&gt;
&lt;br /&gt;
[[File:RedBud 2013-02-05 21-57-03.png|404px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/redbud/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2013/02/05/redbud-a-new-builder-child-theme-with-hand-drawn-details/ Blog entry announcing the release of Threads]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/redbud/2013/02/03/free-social-media-icons-download/ Free social media icons to match RedBud Builder child theme]&lt;br /&gt;
&lt;br /&gt;
== Threads ==&lt;br /&gt;
&lt;br /&gt;
Need to build an online t-shirt shop on WordPress? We released a new feature-rich responsive-ready Builder Child Theme, Threads.&lt;br /&gt;
&lt;br /&gt;
Threads is designed to integrate exclusively with Shopp, our favorite ecommerce plugin for WordPress. Threads includes 15+ Shopp-specific styled templates so you'll have one consistent look across the theme and ecommerce portions of the site, plus custom styles for product views, cart-in-navigation settings and much more. &lt;br /&gt;
&lt;br /&gt;
[[File:Threads 2013-01-21 20-04-40.png|429px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/threads/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2013/01/11/threads-a-new-builder-child-theme-for-t-shirt-shops-available-now/ Blog entry announcing the release of Threads]&lt;br /&gt;
&lt;br /&gt;
== Icebox ==&lt;br /&gt;
&lt;br /&gt;
We're celebrating Builder's birthday today (December 17, 2012) with a free Builder child theme download for all Builder users! Icebox is a new responsive-ready child theme.&lt;br /&gt;
&lt;br /&gt;
[http://f.cl.ly/items/0e1E3w0F0n0N0i2b3K1h/Icebox%202012-12-18%2009-22-15.png Screenshot]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/icebox/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/12/18/free-builder-child-theme-download-icebox/ Blog entry announcing the release of Icebox]&lt;br /&gt;
&lt;br /&gt;
== Thrifty ==&lt;br /&gt;
&lt;br /&gt;
Thrifty is a responsive ecommerce child theme for Builder. With a simple, minimalist design, Thrifty perfectly showcases your products by combining the usefulness of three popular ecommerce plugins with Builder's powerful layout engine.&lt;br /&gt;
&lt;br /&gt;
'''Support for Three Ecommerce Plugins'''&lt;br /&gt;
&lt;br /&gt;
Each of the following plugins provides its own set of ecommerce features and we've worked to highlight the functionalities of each in Thrifty:&lt;br /&gt;
&lt;br /&gt;
* Shopp (our recommended solution)&lt;br /&gt;
* Easy Digital Downloads&lt;br /&gt;
* WooCommerce&lt;br /&gt;
&lt;br /&gt;
Just choose your plugin, upload and activate and Thrifty goes to work providing the styling for your online store.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: Thrifty (or any other Builder child theme) does not influence the functionality of the e-commerce plugin, but has styling and tweaked template files that enhance the presentation of the ecommerce plugin's output.&lt;br /&gt;
&lt;br /&gt;
[[File:Thrifty - Shopp 2012-12-21 09-25-35.png|199px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/thrifty/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/11/26/just-released-thrifty-a-new-ecommerce-child-theme-for-builder/ Blog entry announcing the release of Thrifty (has more details)]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/codex/page/BuilderChild-Thrifty Thrifty codex page]&lt;br /&gt;
&lt;br /&gt;
== Avail ==&lt;br /&gt;
&lt;br /&gt;
With a clean, modern design, Avail is great for business or corporate websites. Paired with iThemes Builder 4.0, Avail automatically responds for mobile, tablet and desktop viewing.&lt;br /&gt;
&lt;br /&gt;
[[File:Avail 2013-01-31 23-17-11.png|467px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/avail Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/11/15/avail-a-new-responsive-ready-builder-child-theme/ Blog entry announcing the release of Avail]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.tv/november-20-2012/ Overview Video by Benjamin Bradley on iThemesTV - Nov 20, 2012] - Time frame: 02:48 to 13:53&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/purchase/avail/ Purchase page]&lt;br /&gt;
&lt;br /&gt;
== Essence Silver ==&lt;br /&gt;
&lt;br /&gt;
Essence Silver is ported from one of our most popular classic themes (the very first iThemes theme to be exact) by the same name.&lt;br /&gt;
&lt;br /&gt;
[[File:Demosithemescombuilderessencesilver-full.png|652px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/builder-essence-silver/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/09/27/classic-theme-essence-silver-now-available-as-a-builder-child-theme/ Blog entry announcing the release of Essence Silver]&lt;br /&gt;
&lt;br /&gt;
== Resume ==&lt;br /&gt;
&lt;br /&gt;
Résumé child theme has been designed for building a WordPress résumé website.&lt;br /&gt;
&lt;br /&gt;
Résumé features 3 color versions: Résumé, Résumé Blue and Résumé Dark.&lt;br /&gt;
&lt;br /&gt;
[[File:Résumé 2012-09-12 11-09-03.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/resume/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/09/11/just-released-new-builder-child-theme-resume-in-3-color-variations/ Blog entry announcing the release of Resume]&lt;br /&gt;
&lt;br /&gt;
Résumé Blue:&lt;br /&gt;
&lt;br /&gt;
[[File:Résumé - Blue 2012-09-12 11-13-16.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Résumé Dark:&lt;br /&gt;
&lt;br /&gt;
[[File:Résumé - Dark 2012-09-12 11-14-36.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
== Remark ==&lt;br /&gt;
&lt;br /&gt;
Remark is a fun, simple child theme designed with bloggers in mind and a perfect match for those that may want to set up a small Etsy-type shop.&lt;br /&gt;
&lt;br /&gt;
[[File:Remark 2012-07-20 20-52-12.png|351px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/remark/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/07/20/just-released-new-child-theme-remark/ Blog entry announcing the release of Remark]&lt;br /&gt;
&lt;br /&gt;
== Book Nook ==&lt;br /&gt;
&lt;br /&gt;
Designed with authors in mind, the latest child theme for iThemes Builder will showcase your work perfectly.&lt;br /&gt;
&lt;br /&gt;
[[File:Book-Nook-2012-06-23-12-16-59.jpg|565px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/book-nook/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/06/22/new-child-theme-preview-book-nook/ Blog entry announcing the release of Book Nook]&lt;br /&gt;
&lt;br /&gt;
== Gallery Church ==&lt;br /&gt;
&lt;br /&gt;
You'll have everything you need for building a WordPress church website with our latest Builder child theme release: Gallery Church — featuring integrations with both Builder Church Block and the newly-released Builder Events Block.&lt;br /&gt;
&lt;br /&gt;
With a bold and modern style, this theme is perfect for church sites that are both welcoming with a fresh, direct message and easy to navigate for visitors.&lt;br /&gt;
&lt;br /&gt;
[[File:Gallery-Church-2012-06-23-12-24-04.jpg|501px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/gallery-church/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/05/23/new-child-theme-gallery-church-with-church-and-events-block-integration/ Blog entry announcing the release of Gallery Church]&lt;br /&gt;
&lt;br /&gt;
== Arrival ==&lt;br /&gt;
&lt;br /&gt;
Arrival features simple styling in either blue or pink for creating a baby announcement site to share with family and friends.&lt;br /&gt;
&lt;br /&gt;
[[File:Arrival-2012-06-23-12-43-18.jpg|406px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/arrival/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/04/27/due-next-week-new-child-theme-arrival/ Blog entry announcing the release of Arrival]&lt;br /&gt;
&lt;br /&gt;
'''Arrival Blue''':&lt;br /&gt;
&lt;br /&gt;
[[File:Arrival-2012-06-23-12-48-47.jpg|406px|none]]&lt;br /&gt;
&lt;br /&gt;
== Yukon ==&lt;br /&gt;
&lt;br /&gt;
Yukon is iThemes first Builder child theme for BuddyPress. &lt;br /&gt;
&lt;br /&gt;
Yukon styles BuddyPress features for member profiles, network activity/updates, groups, and forums to create the perfect BuddyPress + Builder social networking site.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-03-15 08-20-50.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/buddypress/yukon/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/03/14/our-first-builder-child-theme-for-buddypress-yukon/ Blog entry announcing the release of Yukon]&lt;br /&gt;
&lt;br /&gt;
== Vow ==&lt;br /&gt;
&lt;br /&gt;
Perfect for wedding websites, Vow features a bright, clean-lined design with a ribbon menu, framing wedding details in classic style. Chronicle wedding plans with Vow’s blog styling, add wedding details like ceremony location or registry information, or add a photo gallery with engagement photos.&lt;br /&gt;
&lt;br /&gt;
[[File:Vow-2012-02-09-10-25-00.jpg|374px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/vow/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/02/08/introducing-vow-a-wedding-child-theme-for-builder/ Blog entry announcing the release of Vow]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/vow-red Vow Red]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/vow-yellow Vow Yellow]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/vow-blue Vow Blue]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/02/23/just-released-three-new-color-variations-of-vow/ Blog entry announcing the release of Vow color variants]&lt;br /&gt;
&lt;br /&gt;
== Market ==&lt;br /&gt;
&lt;br /&gt;
Like Depot, Market features integration with three different WordPress eCommerce plugins: Shopp, Cart66 and WP-Ecommerce.&lt;br /&gt;
&lt;br /&gt;
With simple lines, cool colors, and bold contrast styling for widget areas, Market is the perfect store-front for your WordPress eCommerce site.&lt;br /&gt;
&lt;br /&gt;
[[File:Market 2012-02-05 09-34-05.png|541px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/market/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/02/02/just-released-market-an-ecommerce-child-theme-for-builder/ Blog entry announcing the release of Market]&lt;br /&gt;
&lt;br /&gt;
== Kepler Light ==&lt;br /&gt;
&lt;br /&gt;
Kepler Light is the &amp;quot;lighter&amp;quot; version of the original Kepler. Kepler Light features the same great photography-focused styling, great for showcasing your creative work.&lt;br /&gt;
&lt;br /&gt;
Kepler Light includes several specific post styles to focus on featured images, all with a unique custom date stamp to add interest to your blog. With Kepler Light and Builder, you'll have the perfect foundation for creating awesome WordPress photography sites.&lt;br /&gt;
&lt;br /&gt;
[[File:Kepler-2012-01-27-21-17-02.jpg|269px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/kepler-light Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/01/26/introducing-kepler-lite/ Blog entry announcing the release of Kepler Light]&lt;br /&gt;
&lt;br /&gt;
== Adept ==&lt;br /&gt;
&lt;br /&gt;
Percfect for small businesses or professional bloggers, Adept features a sleek design to pair with Builder’s great flexibility and functionality for easily building WordPress websites.&lt;br /&gt;
&lt;br /&gt;
Some of the key features include:&lt;br /&gt;
&lt;br /&gt;
* simple navigation with great button styling and secondary dropdown styles&lt;br /&gt;
* alternate module styles for navigation and widget modules to configure your site exactly to your specifications&lt;br /&gt;
* styling for Gravity Forms to match the theme’s overall look and feel&lt;br /&gt;
* and custom-styled search bar style&lt;br /&gt;
&lt;br /&gt;
[[File:Adept-613x1024.jpg|613px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/adept/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2012/01/13/just-released-adept-a-child-theme-for-builder/ Blog entry announcing the release of Adept]&lt;br /&gt;
&lt;br /&gt;
== Depot ==&lt;br /&gt;
&lt;br /&gt;
Depot is the first e-commerce Builder Child Theme. Depot features full integration and optimization of three different WordPress Ecommerce plugins: Shopp, Cart66 and WP-Ecommerce. Operating on iThemes Builder's powerful layout engine and paired with one of these eCommerce plugins, Depot is the perfect store-front for your WordPress-powered website or blog.&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/depot/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[[File:Depot-shopp.jpg|451px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/12/22/just-released-depot-an-ecommerce-child-theme-for-builder/ Blog entry announcing the release of Depot]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/builder-store/depot/ Purchase page]&lt;br /&gt;
&lt;br /&gt;
== Expansion ==&lt;br /&gt;
&lt;br /&gt;
Expansion, the latest child theme for iThemes Builder, boasts a high-contrast design with strong, simple, and clean edges. Besides the remarkable layout flexibility of all iThemes Builder child themes, Expansion also features several theme-specific details. It is a great child theme for small and large businesses. Featuring 3 alternate widget styles and a beautiful date stamp on each blog post, Expansion is the perfect choice for your next theme.&lt;br /&gt;
&lt;br /&gt;
[[File:Builder-Child---Expansion-Demo-2011-12-02-14-51-14.jpg|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/expansion/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/12/01/just-released-expansion-the-latest-child-theme-for-builder/ Blog entry announcing the release of Expansion]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/builder-store/expansion/ Purchase page]&lt;br /&gt;
&lt;br /&gt;
'''Expansion Red'''&lt;br /&gt;
&lt;br /&gt;
[[File:Expansion-red.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''Expansion Blue'''&lt;br /&gt;
&lt;br /&gt;
[[File:Expansion-blue.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/12/15/just-released-two-new-color-options-for-expansion/ Blog entry announcing Expansion Red and Expansion Blue]&lt;br /&gt;
&lt;br /&gt;
== Patterned ==&lt;br /&gt;
&lt;br /&gt;
A handcrafted look and feel – perfect for any special project or site. You'll love the Google Web Font (Rancho) that gives titles a special flair and draws people in to your site. From the stay-at-home blogging mom to the business looking for a softer, more subtle design, Patterned is a great choice for your next Builder child theme!&lt;br /&gt;
&lt;br /&gt;
[[File:Ithemes-builder-childtheme-patterned.jpg|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/patterned/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/11/08/ithemes-builder-releases-51st-child-theme-patterned/ Blog entry announcing the release of Patterned]&lt;br /&gt;
&lt;br /&gt;
== Traverse ==&lt;br /&gt;
&lt;br /&gt;
Traverse features a high contrast design and bold styling intended to showcase content for travel blogs. Stories and photos from your adventures will be framed perfectly by Traverse.&lt;br /&gt;
&lt;br /&gt;
[[File:Traverse-ithemes-builder-childtheme.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/traverse/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/10/26/get-ready-to-travel-with-traverse/ Blog entry announcing the release of Traverse]&lt;br /&gt;
&lt;br /&gt;
== Architect ==&lt;br /&gt;
&lt;br /&gt;
[[File:IThemes-builder-Architect.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/architect-builder/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/09/20/architect-child-theme-for-ithemes-builder/ Blog entry announcing the release of Architect]&lt;br /&gt;
&lt;br /&gt;
== Acute ==&lt;br /&gt;
&lt;br /&gt;
Acute is a clean business theme, perfect for giving your site a professional, polished look. Currently it is in gray and blue, there will be 4 more color options released soon.&lt;br /&gt;
&lt;br /&gt;
With Acute you will find custom styled (default) widgets; integrated support for Slideshow and Accordion (2 plugins from the DisplayBuddy suite); image grid, portfolio and magazine extensions; plus a new custom portfolio extension – only available with Acute.&lt;br /&gt;
&lt;br /&gt;
[[File:IThemes-builder-Acute.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/acute/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/09/20/acute-is-the-45th-child-theme-for-ithemes-builder/ Blog entry announcing the release of Acute]&lt;br /&gt;
&lt;br /&gt;
=== Acute Blue ===&lt;br /&gt;
&lt;br /&gt;
[[File:Acute-blue.png|800px|thumb|none|Acute Blue]]&lt;br /&gt;
&lt;br /&gt;
=== Acute Green ===&lt;br /&gt;
&lt;br /&gt;
[[File:Acute-Green.png|800px|thumb|none|Acute Green]]&lt;br /&gt;
&lt;br /&gt;
=== Acute Red ===&lt;br /&gt;
&lt;br /&gt;
[[File:Acute-Red.png|800px|thumb|none|Acute Red]]&lt;br /&gt;
&lt;br /&gt;
=== Acute Violet ===&lt;br /&gt;
&lt;br /&gt;
[[File:Acute-Violet.png|800px|thumb|none|Acute Violet]]&lt;br /&gt;
&lt;br /&gt;
=== Acute Orange ===&lt;br /&gt;
&lt;br /&gt;
[[File:Acute-Orange.png|800px|thumb|none|Acute Orange]]&lt;br /&gt;
&lt;br /&gt;
== Kepler ==&lt;br /&gt;
&lt;br /&gt;
Kepler is a portfolio style theme - perfect for showcasing photography, graphic design, and art. It is characterized by simple, easy to read typography, and a focus on images.&lt;br /&gt;
&lt;br /&gt;
[[File:Ithemes-builder-child-kepler.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/kepler/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/08/30/kepler-child-theme-walkthroughwebinar/ Quick video showing you how Kepler looks and works (Kepler Child Theme Walkthrough/Webinar)]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/09/06/how-to-work-with-kepler-child-theme-video/ How to Work With Kepler Child Theme (video)]&lt;br /&gt;
&lt;br /&gt;
== Singular ==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder-child-singular.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Singular - the simple, clean theme with all the flexibility inherent in iThemes Builder.&lt;br /&gt;
&lt;br /&gt;
Release Date: August 9, 2011&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/singular/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
==City Church==&lt;br /&gt;
&lt;br /&gt;
[[File:CityChurch.jpg|573px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/07/19/city-church-preview-an-upcoming-child-theme-for-builder/ Preview]&lt;br /&gt;
&lt;br /&gt;
The theme developers [http://ithemes.com/2011/07/27/preview-of-new-photo-child-theme-for-builder/ described] the unique features of the theme on iThemes.tv. You can watch the specific segment here:&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|4YObZwIoYok|560}}&lt;br /&gt;
&lt;br /&gt;
Release Date: August 3, 2011&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/city-church/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/08/03/how-to-launch-your-churchs-website-with-wordpress-and-builder/ Blog entry announcing the release of City Church]&lt;br /&gt;
&lt;br /&gt;
==Thinner==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder-Child–Thinner.jpg|800px|thumb|none|Screenshot of Thinner, 41st child theme of iThemes Builder]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/thinner/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/07/15/thinner-the-41st-child-theme-for-ithemes-builder/ Blog entry announcing the release of Thinner]&lt;br /&gt;
&lt;br /&gt;
==Keen==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder-Child–Keen.png|800px|thumb|none|Screenshot of Keen, 40th child theme of iThemes Builder]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/keen/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/07/11/builder-child-40-keen/ Blog entry announcing the release of Keen]&lt;br /&gt;
&lt;br /&gt;
==Dockside==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder Child – Dockside Demo 1309411970077.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/dockside/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
Features:&lt;br /&gt;
&lt;br /&gt;
* beautifully designed blockquotes with dropcap styling to give that extra flare and distinction.&lt;br /&gt;
* fresh, new category and comment icons to make your meta data stand out.&lt;br /&gt;
* featured image usage on blog layout&lt;br /&gt;
* great typography, including the &amp;quot;Brawler&amp;quot; Google font for the headlines&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/06/29/dockside-child-theme-39-for-ithemes-builder/ Blog entry announcing the release of Dockside]&lt;br /&gt;
&lt;br /&gt;
==Revised==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder Child – Revised Demo 2011-06-15 22-37-21.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/revised/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
Features:&lt;br /&gt;
&lt;br /&gt;
* Simple Blogroll Layout&lt;br /&gt;
* Feature Image Usage&lt;br /&gt;
* Unique Styled Archives&lt;br /&gt;
* Two Alternate Widget Styles&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/06/13/builder-child-themes-number-37-and-38/ Blog entry announcing the release of Revised]&lt;br /&gt;
&lt;br /&gt;
==Heat Wave==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder-child-heat-wave.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/heat-wave/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
Features:&lt;br /&gt;
&lt;br /&gt;
* Uniquely Styled Comment Section&lt;br /&gt;
* Default WordPress Gallery Colorbox Pop Up&lt;br /&gt;
* Hot, Summery Colors&lt;br /&gt;
* and Built In Gravity Forms Styles&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2011/06/06/sneak-peak-at-our-35th-builder-child-theme-heat-wave/ Blog entry announcing the release of Heat Wave]&lt;br /&gt;
&lt;br /&gt;
==Encased Light==&lt;br /&gt;
&lt;br /&gt;
[[File:builder-child-encased-light.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/encased-light/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-ithemes-builder-child-theme-encased-light/ Blog entry announcing the release of Encased Light]&lt;br /&gt;
&lt;br /&gt;
==Drafted==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder-child-drafted.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/drafted/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
==Cubed==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder-child-cubed.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/cubed/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
==Rainey Day==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder-childtheme-rainey-day.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/rainey-day/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
A light and subtle, yet dramatic theme.&lt;br /&gt;
&lt;br /&gt;
* unique fonts and font styling on the nav bar and headlines tags&lt;br /&gt;
* multi-shaded lavender color scheme&lt;br /&gt;
* ribbon graphics for added flair and elegance&lt;br /&gt;
* styling of the author meta data&lt;br /&gt;
* other stylish graphics being used throughout the theme&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/rainey-day-child-theme/ Blog entry announcing the release of Rainey Day]&lt;br /&gt;
&lt;br /&gt;
==Scooter==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder-childtheme-scooter.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/scooter/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
* Retro Styled Theme – making Retro the new Contemporary.&lt;br /&gt;
* 'Dancing Script' Google Font, providing a super-easy way to have a unique titles and headlines without slowing your site down with heavy graphics.&lt;br /&gt;
* Magazine Layout Builder Extension – so you can take advantage of the ease of using Builder with the visual sophistication of a magazine layout.&lt;br /&gt;
* ContactBuddy and GravityForms Styles (Extensions) built in – so once you install the specific plugins, you will have access to the advanced styling without having to touch any code.&lt;br /&gt;
* Alternate HTML modules – so you can have different looking HTML modules without having to change the css code.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|IQlnrb9sfiY}}&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/scooter-a-retro-style-child-theme-for-ithemes-builder/ Blog entry announcing the release of Scooter]&lt;br /&gt;
&lt;br /&gt;
==Covert==&lt;br /&gt;
&lt;br /&gt;
[[File:Covert-builder-childtheme.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/covert/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
A quite stunning in its bold-yet-minimalist style. Similar to its related (sister?) theme Covell, Covert uses a minimalist, monochromatic style, but one that allows photographers and artists to display their work in a more dramatic and darker style.&lt;br /&gt;
&lt;br /&gt;
Covert also includes 2 distinct navigation styles, making it easy to portray just the amount of &amp;quot;minimalism&amp;quot; you want, as well as the custom projects post type, making project organization and display a snap.&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/covert-30th-child-theme-for-ithemes-builder-just-released/ Blog entry announcing the release of Covert]&lt;br /&gt;
&lt;br /&gt;
==Encased==&lt;br /&gt;
&lt;br /&gt;
[[File:Encased-builder-child-theme.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/encased/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
Some of the other features that make this theme special:&lt;br /&gt;
&lt;br /&gt;
* Unique Navigation Styles – Fixed Left and Top Navigation&lt;br /&gt;
* Encased Content Module – Content Module is ‘encased’ within the layout making it stand out from the other modules.&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-ithemes-builder-child-theme-encased/ Blog entry announcing the release of Encased]&lt;br /&gt;
&lt;br /&gt;
==Lucky 7==&lt;br /&gt;
&lt;br /&gt;
[[File:Lucky7-builder-child-theme.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/lucky7/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
Some of the special features included in Lucky 7:&lt;br /&gt;
&lt;br /&gt;
* 7 awesome color palettes – which can be further customized using the Style Manager plugin – giving you a professional look with virtually no effort&lt;br /&gt;
* The ability to select a different color for individual modules – making it easy to super-customize each portion of the page&lt;br /&gt;
* Beautiful meta blocks for author info – making your site (and your authors) stand out from the crowd&lt;br /&gt;
* Inset widgets and navigation for a unique, professional look&lt;br /&gt;
* Additional custom theme settings, such as a simple setting to change the “read more” text, giving your site a special touch without having to know anything about code&lt;br /&gt;
* Built-in iPhone-ready mobile theme&lt;br /&gt;
* and popular rounded corners&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/lucky-7-new-ithemes-builder-child-theme-released/ Blog entry announcing the release of Lucky 7]&lt;br /&gt;
&lt;br /&gt;
==Covell==&lt;br /&gt;
&lt;br /&gt;
[[File:Ithemes-builder-child-covell.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/covell/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/covell-the-newest-child-theme-for-ithemes-builder/ Blog entry announcing the release of Covell]&lt;br /&gt;
&lt;br /&gt;
==Classen==&lt;br /&gt;
&lt;br /&gt;
[[File:Classen-ss-blog.png]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/classen Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-builder-child-theme-released-classen/ Blog entry announcing the release of Classen]&lt;br /&gt;
&lt;br /&gt;
==Blueprint==&lt;br /&gt;
&lt;br /&gt;
[[File:Blueprint-builder-childtheme.png|537px]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/blueprint/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-builder-child-theme-released-blueprint/ Blog entry announcing the release of Blueprint]&lt;br /&gt;
&lt;br /&gt;
==Ionic==&lt;br /&gt;
&lt;br /&gt;
'''Ionic – Sky'''&lt;br /&gt;
&lt;br /&gt;
[[File:Ionic-sky.png|537px]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/ionic-sky Live Demo]&lt;br /&gt;
&lt;br /&gt;
'''Ionic – Green'''&lt;br /&gt;
&lt;br /&gt;
[[File:Ionic-green.png|537px]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/ionic-green Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-builder-child-themes-released/ Blog entry announcing the release of Ionic Sky and Ionic Green]&lt;br /&gt;
&lt;br /&gt;
'''Ionic'''&lt;br /&gt;
&lt;br /&gt;
[[File:Ionic-builder-child-theme.png|537px]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/ionic Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/ionic-new-builder-child-theme-released/ Blog entry announcing the release of Ionic theme]&lt;br /&gt;
&lt;br /&gt;
==Americana==&lt;br /&gt;
&lt;br /&gt;
'''Americana'''&lt;br /&gt;
&lt;br /&gt;
[[File:Americana-builder-child-theme.png|537px]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/americana-new-builder-child-theme-released/ Blog entry announcing the release of Americana theme]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/americana/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/codex/page/Americana Instructions for setting up Americana to look like the demo site]&lt;br /&gt;
&lt;br /&gt;
'''Americana - Mojave''' (Release Date: January 21, 2011)&lt;br /&gt;
&lt;br /&gt;
[[File:Americana-mojave.png|537px]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-builder-child-themes-released/ Blog entry announcing the release of this theme]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/americana-mojave Live Demo]&lt;br /&gt;
&lt;br /&gt;
'''Americana - Libertas''' (Release Date: January 21, 2011)&lt;br /&gt;
&lt;br /&gt;
[[File:Americana-libertas.png|537px]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-builder-child-themes-released/ Blog entry announcing the release of this theme]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/americana-libertas Live Demo]&lt;br /&gt;
&lt;br /&gt;
'''Americana - Interstate''' (Release Date: January 21, 2011)&lt;br /&gt;
&lt;br /&gt;
[[File:Americana-interstate.png|537px]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-builder-child-themes-released/ Blog entry announcing the release of this theme]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/americana-interstate Live Demo]&lt;br /&gt;
&lt;br /&gt;
==4 more themes in Foundation series==&lt;br /&gt;
&lt;br /&gt;
[[File:Foundation_tropic.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[File:Foundation_bonsai.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[File:Foundation_glacier.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[File:Foundation_blank.jpg]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/4-new-ithemes-builder-themes-released/ Blog entry announcing these]&lt;br /&gt;
&lt;br /&gt;
==Foundation - WordPress theme for Churches and Ministries==&lt;br /&gt;
&lt;br /&gt;
[[File:Foundation.jpg]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/foundation-church-wordpress-theme-released/ Blog entry announcing the release of Foundation theme]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/foundation/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
==Entree Pub==&lt;br /&gt;
&lt;br /&gt;
[[File:EntreePub.png|700px]]&lt;br /&gt;
&lt;br /&gt;
This is another theme in the restaurant series, with a little bit of a pub twist.&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-builder-child-theme-released-entree-pub/ Blog entry announcing the release of Entree Pub theme]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/entree-pub Live Demo]&lt;br /&gt;
&lt;br /&gt;
==Entree==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder-child-enree.png|500px]]&lt;br /&gt;
&lt;br /&gt;
This is a child theme associated with Restaurant Block.&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/entree/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/restaurant-builder-block-and-child-theme-released/ Blog Post]&lt;br /&gt;
&lt;br /&gt;
==Anchor==&lt;br /&gt;
&lt;br /&gt;
[[File:Anchor_ChildTheme.png]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-builder-child-theme-anchor-released/ Blog entry announcing the release of Anchor theme]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/anchor Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/4955-question-about-anchor-theme/#p23068 Instructions on how to set up Anchor so it looks like the demo site]&lt;br /&gt;
&lt;br /&gt;
==Slate==&lt;br /&gt;
&lt;br /&gt;
[[File:Slate_ChildTheme.png]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-builder-child-theme-slate/ Blog entry announcing the release of Slate theme]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemesbuilder.com/slate/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
==Astro==&lt;br /&gt;
&lt;br /&gt;
[[File:Astro__ChildTheme.jpg]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/2530-astro-child-theme-version-2-released/ Version 2 Release Announcement forum thread]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/new-builder-child-theme-astro-released/ Blog entry announcing the release of Astro theme]&lt;br /&gt;
&lt;br /&gt;
==Default==&lt;br /&gt;
&lt;br /&gt;
[[File:Default__ChildTheme.png]]&lt;br /&gt;
&lt;br /&gt;
==Retro==&lt;br /&gt;
&lt;br /&gt;
[[File:Retro__ChildTheme.png]]&lt;br /&gt;
&lt;br /&gt;
==Vintage==&lt;br /&gt;
&lt;br /&gt;
[[File:Vintage_ChildTheme.png]]&lt;br /&gt;
&lt;br /&gt;
==Coffee==&lt;br /&gt;
&lt;br /&gt;
[[File:Coffee_ChildTheme.png]]&lt;br /&gt;
&lt;br /&gt;
==Fire==&lt;br /&gt;
&lt;br /&gt;
[[File:Fire_ChildTheme.png]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/more-builder-goodness-coming-your-way/ Blog entry announcing the release of Retro, Vintage, Coffee and Fire themes]&lt;br /&gt;
&lt;br /&gt;
= How to rename a child theme =&lt;br /&gt;
&lt;br /&gt;
'''1.''' Edit Theme Name in child theme's style.css.&lt;br /&gt;
&lt;br /&gt;
Ex.: Change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Theme Name: Builder Child Theme - Default&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;Theme Name: My Awesome Theme&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You can also change other values like Theme URI, Description, Author etc.&lt;br /&gt;
&lt;br /&gt;
DO NOT delete or change &amp;lt;code&amp;gt;Template: Builder&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''2.''' Change the name of child theme directory to your liking.&lt;br /&gt;
&lt;br /&gt;
Ex.: Change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;BuilderChild-Default &amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;MyAwesomeTheme&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ensure that there are no spaces in the name of child theme directory.&lt;br /&gt;
&lt;br /&gt;
= How to update a child theme =&lt;br /&gt;
&lt;br /&gt;
It is generally not recommended to update a child theme after it has been extensively customized.&lt;br /&gt;
&lt;br /&gt;
However, if you would like to, follow these steps:&lt;br /&gt;
&lt;br /&gt;
# Take a full backup of your site using BackupBuddy&lt;br /&gt;
# Make a list of changes and addition/deletions done to files and foldes in the current child theme directory&lt;br /&gt;
# Download the latest version of child theme, edit its style.css, change the theme name in the comments section at the top, change the theme folder name to something else. For details, see the above section on ''How to rename a child theme'' &lt;br /&gt;
# Re-apply the changes noted in step 2 to this theme&lt;br /&gt;
# Zip it up, install and activate this new theme&lt;br /&gt;
# Check the site and ensure that everything is alright. You can use a plugin like [http://wordpress.org/extend/plugins/theme-test-drive/ Theme Test Drive] to see the site in older version of this child theme in another tab/browser&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:Demosithemescombuilderessencesilver-full.png</id>
		<title>File:Demosithemescombuilderessencesilver-full.png</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:Demosithemescombuilderessencesilver-full.png"/>
				<updated>2013-04-30T03:38:09Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/Builder_CSS_Guide</id>
		<title>Builder CSS Guide</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/Builder_CSS_Guide"/>
				<updated>2013-04-29T03:33:12Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: /* Image Module */ Added === How to center image in Image Module ===&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
While Style Manager makes it easy to make changes to your Builder site visually, to go in-depth and make different modules of the same kind look differently and to do advanced customizations theme's style.css should be edited.&lt;br /&gt;
&lt;br /&gt;
A knowledge of CSS and Firebug usage really helps. [http://getfirebug.com/ Firebug], a Firefox add-on is an awesome tool in figuring out element's classes, ID, padding, margin etc. Please install it in your Firefox before reading further.&lt;br /&gt;
&lt;br /&gt;
'''We have a series of videos on advanced CSS in Builder. Please watch them by clicking [http://ithemes.com/forum/index.php?/topic/925-builder-theme-advanced-css-free-training-videos/ here].'''&lt;br /&gt;
&lt;br /&gt;
Here are few recommended resources for CSS:&lt;br /&gt;
&lt;br /&gt;
*[http://www.brainjar.com/css/using/ BrainJar]&lt;br /&gt;
*[http://www.sitepoint.com/videos/videocss1/ The CSS Video Crash Course - SitePoint Videos]&lt;br /&gt;
*[http://www.w3schools.com/css/ w3schools]&lt;br /&gt;
&lt;br /&gt;
BuilderChild-Default has been taken as the active theme for the scope of this guide. However, most of the CSS applies to all Builder child themes.&lt;br /&gt;
&lt;br /&gt;
All CSS changes should be done in style.css of the active theme which should be a child theme of Builder. You can either edit already existing styles or write them at the very end. Generally we advise users to write custom styles at the end of child theme's style.css. [http://ithemes.com/forum/index.php?/topic/13320-padding-problem-with-widget/#p62262 This] forum post explains why.&lt;br /&gt;
&lt;br /&gt;
Because of the vast number of classes that Builder makes available, there are several ways of targeting the same element and hence the following is not the only way of going about it. There is more than one way to ''skin'' a cat.&lt;br /&gt;
&lt;br /&gt;
=== Videos ===&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59590792|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59609073|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59910487|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59590795|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59591441|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59591444|640}}&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59609072|640}}&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/tutorial/category/builder-css/&lt;br /&gt;
&lt;br /&gt;
=== CSS to target various elements of a Builder site ===&lt;br /&gt;
&lt;br /&gt;
The following information can also be obtained by viewing the source of the webpage or by using Firebug. The text on the left side is one of the classes (if preceded by a dot) or ID (if preceded by a hash) for body element.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.home&amp;lt;/code&amp;gt; - Homepage only&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.blog&amp;lt;/code&amp;gt; - Posts page only&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.page&amp;lt;/code&amp;gt; - All Pages&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.single-post&amp;lt;/code&amp;gt; - All single post entries&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.archive&amp;lt;/code&amp;gt; - Any category or date or tag archive page&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.category&amp;lt;/code&amp;gt; - All category archive pages&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.category-issues&amp;lt;/code&amp;gt; - Archive page of a specific category whose slug is &amp;quot;issues&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.category-18&amp;lt;/code&amp;gt; - Archive page of a specific category whose ID is 18&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.tag&amp;lt;/code&amp;gt; - Tag archive page&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.page-id-500&amp;lt;/code&amp;gt; - A specific Page whose ID is 500&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.postid-392&amp;lt;/code&amp;gt; - A specific Post whose ID is 391&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;#builder-layout-4e662c1838008&amp;lt;/code&amp;gt; - Any page that uses a layout whose ID is 4e662c1838008&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.search&amp;lt;/code&amp;gt; - Search results listing page&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-outer-wrapper&amp;lt;/code&amp;gt; - Outer wrapper of all modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-1-outer-wrapper&amp;lt;/code&amp;gt; : First module's outer wrapper&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-2-outer-wrapper&amp;lt;/code&amp;gt; : Second module's outer wrapper&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-header&amp;lt;/code&amp;gt; - All Header modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-header-1&amp;lt;/code&amp;gt; : First Header module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-header-2&amp;lt;/code&amp;gt; : Second Header module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-image&amp;lt;/code&amp;gt; - All Image modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-image-1&amp;lt;/code&amp;gt; : First Image module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-image-2&amp;lt;/code&amp;gt; : Second Image module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-navigation&amp;lt;/code&amp;gt; - All Navigation modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-navigation-1&amp;lt;/code&amp;gt; : First Navigation module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-navigation-2&amp;lt;/code&amp;gt; : Second Navigation module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-content&amp;lt;/code&amp;gt; - Content module&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-html&amp;lt;/code&amp;gt; - All HTML modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-html-1&amp;lt;/code&amp;gt; : First HTML module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-html-2&amp;lt;/code&amp;gt; : Second HTML module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-widget-bar&amp;lt;/code&amp;gt; - All Widget Bar modules&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-widget-bar-1&amp;lt;/code&amp;gt; : First Widget Bar module (from the top)&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;code&amp;gt;.builder-module-widget-bar-2&amp;lt;/code&amp;gt; : Second Widget Bar module (from the top)&lt;br /&gt;
&lt;br /&gt;
 and so on...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-footer&amp;lt;/code&amp;gt; - Footer module&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;#builder-module-4fc8af01e738b&amp;lt;/code&amp;gt; - A specific module whose ID is 4fc8af01e738b&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-top&amp;lt;/code&amp;gt; - Top most module in any page through out the site&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;.builder-module-last&amp;lt;/code&amp;gt; or &amp;lt;code&amp;gt;.builder-module-bottom&amp;lt;/code&amp;gt; - Last/bottom most module in any page through out the site&lt;br /&gt;
&lt;br /&gt;
===To make the container touch the top edge of browser===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-container-outer-wrapper {&lt;br /&gt;
	margin-top: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Top-margin-container-before.png&lt;br /&gt;
File:Top-margin-container-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== To remove gap between each module ===&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-background-wrapper {&lt;br /&gt;
    margin-bottom: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=320px heights=199px&amp;gt;&lt;br /&gt;
File:Holistic Nutrition By Lisa 2013-01-25 09-16-09.png|Before&lt;br /&gt;
File:Holistic Nutrition By Lisa 2013-01-25 09-15-19.png|After&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: This only applies to Default child theme.&lt;br /&gt;
&lt;br /&gt;
===To remove the top and bottom borders for all modules===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: This only applies to Default child theme.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module {&lt;br /&gt;
	border-top: none;&lt;br /&gt;
	border-bottom: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:borders-for-modules-before.png&lt;br /&gt;
File:borders-for-modules-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===To target a specific module===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d396c72bbb6b {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Replace ''builder-module-4d396c72bbb6b'' with the ID of module in question on your site.&lt;br /&gt;
&lt;br /&gt;
[[Image:a-specific-module.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===Targeting modules based on their position in the layout===&lt;br /&gt;
&lt;br /&gt;
.builder-module-1 &amp;lt;-- First module&lt;br /&gt;
&lt;br /&gt;
.builder-module-2 &amp;lt;-- Second module&lt;br /&gt;
&lt;br /&gt;
.builder-module-3 &amp;lt;-- Last module&lt;br /&gt;
&lt;br /&gt;
and so on..&lt;br /&gt;
&lt;br /&gt;
.builder-module-top &amp;lt;-- Top most (first) module&lt;br /&gt;
&lt;br /&gt;
.builder-module-last or .builder-module-bottom &amp;lt;-- Last module&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
&lt;br /&gt;
To set background of first module transparent,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 {&lt;br /&gt;
	background: transparent;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To set all sidebars in first module transparent,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 .builder-module-sidebar {&lt;br /&gt;
	background: transparent;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===To set the height of a specific module===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d396c72bbb6e {&lt;br /&gt;
    height: 200px;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Replace ''builder-module-4d396c72bbb6e'' with the ID of module in question on your site.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:identifying-a-module.png&lt;br /&gt;
File:setting-module-height-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===To remove padding around a specific widget===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#text-3 {&lt;br /&gt;
	padding: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Replace ''text-3'' with the ID of widget in question on your site.&lt;br /&gt;
&lt;br /&gt;
[[Image:widget-padding.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
== Header Module ==&lt;br /&gt;
&lt;br /&gt;
Header module should be used when you would like to show site name and tagline. Site name and tagline will link to site URL. There is no provision to enter a image in this module.&lt;br /&gt;
&lt;br /&gt;
Following sample CSS can be used to set a background image for this module and to adjust the font size and colors of site name and tagline text. BuilderChild-Default is the active theme in the test site.&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
&lt;br /&gt;
[[File:Header-module-before.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
[[File:Header-module-after.jpg|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 {&lt;br /&gt;
    height: 150px;&lt;br /&gt;
    background: url(&amp;quot;images/header.jpg&amp;quot;) no-repeat;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.site-title, .site-title a, .site-tagline, .site-tagline a {&lt;br /&gt;
    color: #FFF;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.site-title a:hover, .site-tagline a:hover {&lt;br /&gt;
    color: #DDD;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.site-title {&lt;br /&gt;
    font-size: 3em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.site-tagline {&lt;br /&gt;
    font-size: 1.5em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: Change the name of image in background property line above to what you wish to use. In this example, header.jpg resides in child theme's images directory.&lt;br /&gt;
&lt;br /&gt;
=== How to hide top and bottom sidebars when using two adjacent sidebars ===&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-header .single {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/16676-header-module-2-right-sidebars-not-working/#p77664 Forum topic].&lt;br /&gt;
&lt;br /&gt;
==Navigation Module==&lt;br /&gt;
&lt;br /&gt;
===To target all nav bars===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===To target a specific nav bar===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d396c72bbb6b {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Replace ''builder-module-4d396c72bbb6b'' with the ID of navigation module in question on your site.&lt;br /&gt;
&lt;br /&gt;
[[Image:a-specific-module.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===To center the content of nav bar===&lt;br /&gt;
&lt;br /&gt;
[[File:Nav-menu-centered.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
The following code will allow you to absolutely center a menu (only the top level items will be centered), regardless of the number and width of the navigation items.&lt;br /&gt;
&lt;br /&gt;
(If you wish to align the top level menu items to the right, replace &amp;lt;code&amp;gt;margin: 0 auto;&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;float: right;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==== If you are using a WordPress 3 custom menu ====&lt;br /&gt;
&lt;br /&gt;
If you have created a menu using wp-dashboard &amp;gt; Appearance &amp;gt; Menu, and are using that menu in your navigation module:&lt;br /&gt;
&lt;br /&gt;
If the name is ''MainMenu'' in the navigation module, add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.menu-mainmenu-container {&lt;br /&gt;
    display: table;&lt;br /&gt;
    margin: 0 auto;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: In the above code, ''mainmenu'' must be replaced with the slug of your custom menu. Ex.: If the name of your custom menu is ''Primary Navigation'', then replace &amp;lt;code&amp;gt;.menu-mainmenu-container&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;.menu-primary-navigation-container&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
'''In most cases, this more generic (so independent of the menu name) code will accomplish the same:'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation-menu-wrapper {&lt;br /&gt;
    display: table;&lt;br /&gt;
    margin: 0 auto;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== If you are using the Builder settings menu ====&lt;br /&gt;
&lt;br /&gt;
If you are using a &amp;quot;Legacy Menu Type&amp;quot; (a menu created using wp-dashboard &amp;gt; My Theme &amp;gt; Settings &amp;gt; Menu Builder) in your navigation module, &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation .builder-module-navigation-menu-wrapper {&lt;br /&gt;
    display: table;&lt;br /&gt;
    margin: 0 auto;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== For all other types of navigation module ====&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation .builder-module-element {&lt;br /&gt;
    margin-left: 310px;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
# In the above code, the left margin value has to be changed depending on width of menu.&lt;br /&gt;
# The above code applies to all navigation modules in the layouts. If you would like to apply it to a specific navigation module, replace &amp;lt;code&amp;gt;.builder-module-navigation&amp;lt;/code&amp;gt; with &amp;lt;code&amp;gt;#builder-module-4e1585dc84fa3&amp;lt;/code&amp;gt; where builder-module-4e1585dc84fa3 is the ID of navigation module div.&lt;br /&gt;
# This method can also be used for a navigation module which displays a custom menu.&lt;br /&gt;
&lt;br /&gt;
[[File:Module-id.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Example of another slightly different code to do the same: http://ithemes.com/forum/index.php?/topic/11617-centering-custom-menu-in-navigation-bar/#p54464&lt;br /&gt;
&lt;br /&gt;
=== To right align the nav menu ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-31 14-31-45.png|798px|thumb|none|Before]]&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-31 14-30-48.png|800px|thumb|none|After]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation .builder-module-element {&lt;br /&gt;
    float: right;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Image Module==&lt;br /&gt;
&lt;br /&gt;
=== How to center image in Image Module ===&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
&lt;br /&gt;
[[File:WordPress Dev Site - before.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
[[File:WordPress Dev Site.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 .builder-module-element img {&lt;br /&gt;
	margin: 0 auto;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Change 1 in &amp;lt;code&amp;gt;.builder-module-1&amp;lt;/code&amp;gt; to the position of your Image module from the top in layout.&lt;br /&gt;
&lt;br /&gt;
==HTML Module==&lt;br /&gt;
&lt;br /&gt;
=== Targeting various sections of a HTML module having 2 adjacent sidebars ===&lt;br /&gt;
&lt;br /&gt;
==== Outer wrappers ====&lt;br /&gt;
&lt;br /&gt;
Top widget outer wrapper: #builder-module-4fe44d1c159e4 .widget-outer-wrapper-top&lt;br /&gt;
&lt;br /&gt;
Middle widget outer wrapper container: #builder-module-4fe44d1c159e4 .widget-section-wrapper (If setting background for this, background will not be visible unless &amp;quot;float: left;&amp;quot; is also applied)&lt;br /&gt;
&lt;br /&gt;
Middle widget outer wrappers: #builder-module-4fe44d1c159e4 .widget-section-wrapper .widget-outer-wrapper&lt;br /&gt;
&lt;br /&gt;
Left widget outer wrapper: #builder-module-4fe44d1c159e4 .widget-outer-wrapper-left&lt;br /&gt;
&lt;br /&gt;
Right widget outer wrapper: #builder-module-4fe44d1c159e4 .widget-outer-wrapper-right&lt;br /&gt;
&lt;br /&gt;
Bottom widget outer wrapper: #builder-module-4fe44d1c159e4 .widget-outer-wrapper-bottom&lt;br /&gt;
&lt;br /&gt;
[[File:2012-06-22 16-25-09.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
==== Wrappers ====&lt;br /&gt;
&lt;br /&gt;
Top widget wrapper: #builder-module-4fe44d1c159e4 .widget-wrapper-top&lt;br /&gt;
&lt;br /&gt;
Bottom widget wrapper: #builder-module-4fe44d1c159e4 .widget-wrapper-bottom&lt;br /&gt;
&lt;br /&gt;
Top and bottom widget wrapper: #builder-module-4fe44d1c159e4 .single&lt;br /&gt;
&lt;br /&gt;
Wrappers of all widgets in the module: #builder-module-4fe44d1c159e4 .widget-wrapper&lt;br /&gt;
&lt;br /&gt;
Left widget wrapper: #builder-module-4fe44d1c159e4 .widget-wrapper-left&lt;br /&gt;
&lt;br /&gt;
Right widget wrapper: #builder-module-4fe44d1c159e4 .widget-wrapper-right&lt;br /&gt;
&lt;br /&gt;
==== Widgets ====&lt;br /&gt;
&lt;br /&gt;
Top widget: #builder-module-4fe44d1c159e4 .widget-wrapper-top .widget&lt;br /&gt;
&lt;br /&gt;
Bottom widget: #builder-module-4fe44d1c159e4 .widget-wrapper-bottom .widget&lt;br /&gt;
&lt;br /&gt;
Top and bottom widgets: #builder-module-4fe44d1c159e4 .single .widget&lt;br /&gt;
&lt;br /&gt;
Left widget: #builder-module-4fe44d1c159e4 .widget-wrapper-left .widget&lt;br /&gt;
&lt;br /&gt;
Right widget: #builder-module-4fe44d1c159e4 .widget-wrapper-right .widget&lt;br /&gt;
&lt;br /&gt;
Left and right widgets: #builder-module-4fe44d1c159e4 .widget-section-wrapper .widget&lt;br /&gt;
&lt;br /&gt;
'''Note: In the above replace &amp;quot;builder-module-4fe44d1c159e4&amp;quot; with the CSS ID of HTML module in question.'''&lt;br /&gt;
&lt;br /&gt;
==Widget Bar Module==&lt;br /&gt;
&lt;br /&gt;
===Targeting the full widget bar===&lt;br /&gt;
&lt;br /&gt;
To target all widget bars:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-widget-bar {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target a specific widget bar:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where ''builder-module-4d3956642cc05'' is the ID of widget bar module in question. The easiest way to obtain a module's ID is by inspecting the element with Firebug.&lt;br /&gt;
&lt;br /&gt;
[[Image:Specific-widget-bar-module.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===Targeting all the individual widgets globally===&lt;br /&gt;
&lt;br /&gt;
To target all individual widgets of all widget bars:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-widget-bar .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target all the individual widgets of a specific widget bar:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where ''builder-module-4d3956642cc05'' is the ID of widget bar module in question. The easiest way to obtain a module's ID is by inspecting the element with Firebug.&lt;br /&gt;
&lt;br /&gt;
===Targeting a specific widget===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#text-3 {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where text-3 is the ID of widget in question. The easiest way to obtain a module's ID is by inspecting the element with Firebug.&lt;br /&gt;
&lt;br /&gt;
[[Image:Specific-widget.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===How to make all widgets of a widget bar module equal height===&lt;br /&gt;
&lt;br /&gt;
Here's a video which explains how you can use Firebug to set height of a single widget and all then all widgets of the module so they have the same height: http://ithemes.com/screencasts/builder/height-of-widgets/&lt;br /&gt;
&lt;br /&gt;
The general idea is to obtain the height of tallest widget in the module from 'Computed' tab in Firebug and write CSS like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4ddb5b00e3efd .widget {&lt;br /&gt;
	height: 100px; /* Set this value to height of tallest widget */&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Change builder-module-4ddb5b00e3efd to ID of module in question.&lt;br /&gt;
&lt;br /&gt;
===2-widget widget bar===&lt;br /&gt;
&lt;br /&gt;
The CSS below applies to a specific widget bar having a ID of ''builder-module-4d3956642cc05''. The easiest way to obtain a module's ID is by inspecting the element with Firebug. If all widget bar modules are to be targeted, ''.builder-module-widget-bar'' should be used instead of ''#builder-module-4d3956642cc05''.&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''left widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .left .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''right widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .right .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===3-widget widget bar===&lt;br /&gt;
&lt;br /&gt;
The CSS below applies to a specific widget bar having a ID of ''builder-module-4d3956642cc05''. The easiest way to obtain a module's ID is by inspecting the element with Firebug. If all widget bar modules are to be targeted, ''.builder-module-widget-bar'' should be used instead of ''#builder-module-4d3956642cc05''.&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''left widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .left .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''middle widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .middle .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''right widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .right .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===4-widget widget bar===&lt;br /&gt;
&lt;br /&gt;
The CSS below applies to a specific widget bar having a ID of ''builder-module-4d3956642cc05''. The easiest way to obtain a module's ID is by inspecting the element with Firebug. If all widget bar modules are to be targeted, ''.builder-module-widget-bar'' should be used instead of ''#builder-module-4d3956642cc05''.&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''left most widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .left .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''second widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-2 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''third widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-3 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''right most widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .right .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===5-widget widget bar===&lt;br /&gt;
&lt;br /&gt;
The CSS below applies to a specific widget bar having a ID of ''builder-module-4d3956642cc05''. The easiest way to obtain a module's ID is by inspecting the element with Firebug. If all widget bar modules are to be targeted, ''.builder-module-widget-bar'' should be used instead of ''#builder-module-4d3956642cc05''.&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''left most widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .left .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''second widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-2 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''third widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-3 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''fourth widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .widget-wrapper-4 .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To target any widget in the '''right most widget''' area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-module-4d3956642cc05 .right .widget {&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Content Module==&lt;br /&gt;
&lt;br /&gt;
===Introduction===&lt;br /&gt;
&lt;br /&gt;
.builder-module-content consists of .builder-module-element + 1 or more .builder-module-sidebar.&lt;br /&gt;
&lt;br /&gt;
The actual area where the content gets displayed is .builder-module-element and the wrapper for this is .builder-module-element-outer-wrapper.&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
To change the background of actual content area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Content-element-wrapper-background-before.png&lt;br /&gt;
File:Content-element-wrapper-background-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-content .builder-module-element-outer-wrapper {&lt;br /&gt;
	background: #f2f4fd;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Removing top and bottom horizontal widget sections when content module is set to have 2 adjacent sidebars===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:2-adjacent-sidebars-before.png&lt;br /&gt;
File:2-adjacent-sidebars-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of your theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-content .widget-outer-wrapper-top, .builder-module-content .widget-outer-wrapper-bottom {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Footer Module==&lt;br /&gt;
&lt;br /&gt;
Before: [[Image:Footer-before.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
After: [[Image:Footer-after.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-footer {&lt;br /&gt;
	margin-top: 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-footer .builder-module-element {&lt;br /&gt;
	color: #FFFFFF;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-footer .builder-module-element a {&lt;br /&gt;
	color: #7eabc1;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Defining the scope==&lt;br /&gt;
&lt;br /&gt;
By default, style rules apply to all sections of the site. For a finer and granular control, it is possible to restrict the style rules to:&lt;br /&gt;
&lt;br /&gt;
*Home (i.e, site's front page)&lt;br /&gt;
*Posts page&lt;br /&gt;
*All Pages&lt;br /&gt;
*A layout&lt;br /&gt;
*A specific Page&lt;br /&gt;
*All posts&lt;br /&gt;
*A specific post&lt;br /&gt;
*All archives and category listings&lt;br /&gt;
*A specific category&lt;br /&gt;
&lt;br /&gt;
=== Homepage or Front page ===&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;.home&amp;lt;/code&amp;gt; selector to restrict CSS to the site's front page.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.home h1.entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
gets rid of the title only on homepage.&lt;br /&gt;
&lt;br /&gt;
=== Posts (blog) page ===&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;blog&amp;lt;/code&amp;gt; selector.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.blog .builder-module-content .hentry {&lt;br /&gt;
    margin-top: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== All static Pages ===&lt;br /&gt;
&lt;br /&gt;
Use &amp;lt;code&amp;gt;.page&amp;lt;/code&amp;gt; selector.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page .entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: When front page is set to show a static Page, front page (or homepage) will also have the &amp;quot;home&amp;quot; body class.&lt;br /&gt;
&lt;br /&gt;
===A specific page===&lt;br /&gt;
&lt;br /&gt;
==== How to get rid of title for a specific Page ====&lt;br /&gt;
&lt;br /&gt;
To remove the title of a Page whose ID is say, 47, add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page-id-47 .entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace &amp;lt;code&amp;gt;page-id-47&amp;lt;/code&amp;gt; with the body class of Page in your site. This can be obtained using Firebug.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-08-03 10-44-54.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
===='''To set a background color to a specific page'''====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page-id-2 {&lt;br /&gt;
	background-color: #333333;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The above sets the background color of body element in a page whose ID is 2 to #333333.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:page-background-before.png&lt;br /&gt;
File:page-background-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
IDs of Pages and posts can be obtained in the following ways:&lt;br /&gt;
&lt;br /&gt;
*Examining the body element using Firebug&lt;br /&gt;
[[Image:id-from-firebug.png|200px|none]]&lt;br /&gt;
*Placing cursor on the Page/post title in edit screen and observing the number in the browser status bar&lt;br /&gt;
[[Image:id-in-status-bar.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
===='''To set a background color to mutiple pages'''====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page-id-2, .page-id-4 {&lt;br /&gt;
	background-color: #333333;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The above sets the background color of body element in a page whose ID is 2 and to body element in another page whose ID is 4.&lt;br /&gt;
&lt;br /&gt;
====To remove border around images only on certain Pages====&lt;br /&gt;
&lt;br /&gt;
To remove border around images only on Pages having IDs 2 and 6&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.page-id-2 .hentry img, .page-id-6 .hentry img {&lt;br /&gt;
    border: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== A specific layout ===&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#builder-layout-4fe44cd68bddb .builder-module-content {&lt;br /&gt;
    background: #333;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;quot;builder-layout-4fe44cd68bddb&amp;quot; is the ID of body element of any webpage that uses this layout.&lt;br /&gt;
&lt;br /&gt;
Firebug can be used to obtain this ID.&lt;br /&gt;
&lt;br /&gt;
[[Image:Snapshot 20-09-12 6-31 PM.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
==Miscellaneous==&lt;br /&gt;
&lt;br /&gt;
===How to make second line in list item to be indented to match up with the text===&lt;br /&gt;
&lt;br /&gt;
Before: [[File:Indenting-second-line-list-before.png]]&lt;br /&gt;
&lt;br /&gt;
After: [[File:Indenting-second-line-list-after.png]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.widget ul {&lt;br /&gt;
    list-style-position: inside;&lt;br /&gt;
    margin-left: 0;&lt;br /&gt;
    padding-left: 1em;&lt;br /&gt;
    text-indent: -1em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Tuesday, August 23, 2011 Update'''&lt;br /&gt;
&lt;br /&gt;
Fix for IE: http://ithemes.com/forum/index.php?/topic/14646-i-need-to-adjust-text-alignment-in-side-widgets/#p81837&lt;br /&gt;
&lt;br /&gt;
Thanks to: Ronald.&lt;br /&gt;
&lt;br /&gt;
===How to hide titles on all Pages===&lt;br /&gt;
&lt;br /&gt;
Ensure that [http://www.doitwithwp.com/how-to-change-your-permalink-structure-without-breaking-your-links/ pretty permalinks] are enabled.&lt;br /&gt;
&lt;br /&gt;
When you are using Builder 3.0 and a corresponding LoopBuddy compatible theme like the current (as of Monday, July 11, 2011) Builder child themes, adding the following at end of child theme's style.css will hide Page titles:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.page .entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For pre-Builder 3.0, use this CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.page .title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===How to hide title on homepage only===&lt;br /&gt;
&lt;br /&gt;
When Builder 3.0 and a corresponding LoopBuddy compatible theme like the current (as of Monday, July 11, 2011) Builder child themes are being used, adding the following at end of child theme's style.css will hide Page title on homepage:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.home .entry-title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For pre-Builder 3.0, use this CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.home .title {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== How to get rid of top and bottom sidebars in all modules ===&lt;br /&gt;
&lt;br /&gt;
When a module has 2 adjacent sidebars (either left or right), a top wide sidebar and bottom wide sidebar will automatically be added. These will not appear on the site for visitors as long as they are empty (i.e., not populated with widgets).&lt;br /&gt;
&lt;br /&gt;
If you would still like to remove them, add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module .widget-outer-wrapper-top, .builder-module .widget-outer-wrapper-bottom {&lt;br /&gt;
    display: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== How to add and use a font from a .ttf file ===&lt;br /&gt;
&lt;br /&gt;
In this example we are going to download a free font from http://www.dafont.com/ and use it in a Builder site.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Download your desired font. Extract the zip file to get the .ttf file.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Go to http://www.fontsquirrel.com/fontface/generator. Click &amp;lt;code&amp;gt;Add Fonts&amp;lt;/code&amp;gt;, browse to and select the .ttf file that you downloaded.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Place a tick mark to the left of &amp;quot;Yes, the fonts I'm uploading are legally eligible for web embedding.&amp;quot; and click &amp;lt;code&amp;gt;Download Your Kit&amp;lt;/code&amp;gt; and save the zip file.&lt;br /&gt;
&lt;br /&gt;
'''4.''' Extract the zip file to get a folder having files with different extensions. Upload .ttf, .eot, .svg, .woff files to child theme's directory using a FTP client or cPanel file manager.&lt;br /&gt;
&lt;br /&gt;
'''5.''' Open stylesheet.css, copy all the code similar to the following and paste at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor)&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on September 17, 2012 */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
@font-face {&lt;br /&gt;
    font-family: 'last_king_questregular';&lt;br /&gt;
    src: url('last_king_quest-webfont.eot');&lt;br /&gt;
    src: url('last_king_quest-webfont.eot?#iefix') format('embedded-opentype'),&lt;br /&gt;
         url('last_king_quest-webfont.woff') format('woff'),&lt;br /&gt;
         url('last_king_quest-webfont.ttf') format('truetype'),&lt;br /&gt;
         url('last_king_quest-webfont.svg#last_king_questregular') format('svg');&lt;br /&gt;
    font-weight: normal;&lt;br /&gt;
    font-style: normal;&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''6.''' Open .html file in the extracted folder in a text editor and copy a line similar to&lt;br /&gt;
&lt;br /&gt;
(for example)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;font-family: 'last_king_questregular';&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will be found between &amp;lt;code&amp;gt;&amp;lt;head&amp;gt;&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;&amp;lt;/head&amp;gt;&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
'''7.''' Paste this line for the CSS selector of your choice.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
h1 {&lt;br /&gt;
    font-family: 'last_king_questregular';&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That's it!&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:WordPress_Dev_Site.png</id>
		<title>File:WordPress Dev Site.png</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:WordPress_Dev_Site.png"/>
				<updated>2013-04-29T03:31:35Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:WordPress_Dev_Site_-_before.png</id>
		<title>File:WordPress Dev Site - before.png</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:WordPress_Dev_Site_-_before.png"/>
				<updated>2013-04-29T03:30:46Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/BuilderChild-Air</id>
		<title>BuilderChild-Air</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/BuilderChild-Air"/>
				<updated>2013-04-29T03:18:05Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: Created Air page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
Builder Child Air is a new foundational or starter child theme for iThemes Builder. Whether you're using the Builder Style Manager or writing your own CSS, we hope Air will be a great new place to start when creating your custom responsive-ready Builder child themes. &lt;br /&gt;
&lt;br /&gt;
Builder child Air includes several convenient built-in features to help lay the groundwork for custom child theme creation. A few of Air's theme highlights include:&lt;br /&gt;
&lt;br /&gt;
* Built-in Mobile-Ready Menu Style&lt;br /&gt;
* Fully Optimized for Style Manager&lt;br /&gt;
* New Inset Module Styles&lt;br /&gt;
* Full Window Image Style&lt;br /&gt;
&lt;br /&gt;
[[File:Air 2013-04-12 09-33-58.png|291px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://demos.ithemes.com/air/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/2013/04/04/introducing-air-a-new-foundation-child-theme-for-builder/ Blog entry announcing the release of Air]&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/Builder</id>
		<title>Builder</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/Builder"/>
				<updated>2013-04-29T03:15:19Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: /* Child theme specific documentation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Introduction to Builder =&lt;br /&gt;
&lt;br /&gt;
We are very glad that you want to know more about or have purchased our blockbuster WordPress design tool, [http://ithemes.com/purchase/builder-theme/ Builder].&lt;br /&gt;
&lt;br /&gt;
Unlike other premium WordPress themes, Builder stretches the possibilities of WordPress — allowing you to quickly and easily build beautiful custom websites and blogs in minutes. &lt;br /&gt;
&lt;br /&gt;
= Installing Builder =&lt;br /&gt;
&lt;br /&gt;
==== [[Installing Builder|How to Install Builder]] ====&lt;br /&gt;
* [[Installing Builder#Videos|Videos]]&lt;br /&gt;
&lt;br /&gt;
= Updating Builder =&lt;br /&gt;
&lt;br /&gt;
==== [[Updating Builder|How to Update Builder]] ====&lt;br /&gt;
&lt;br /&gt;
= Using Builder =&lt;br /&gt;
&lt;br /&gt;
==== [[Using Builder#Getting Started|Getting Started]] ====&lt;br /&gt;
* [http://ithemes.com/publishing/getting-started-with-builder/ PDF e-book]&lt;br /&gt;
==== [[Using Builder#Builder Basics Videos|Builder Basics Videos]] ====&lt;br /&gt;
==== [[Using Builder#Builder Settings|Settings]] (video) ====&lt;br /&gt;
==== [[Layouts and Views]] ====&lt;br /&gt;
* [[Layouts and Views#Layout Manager|Layout Manager]] [[Layouts and Views#Layout Manager#Videos|[Videos]]]&lt;br /&gt;
* [[Layouts and Views#Views|Views]] [[Layouts and Views#Layout Manager#Video|[Video]]]&lt;br /&gt;
==== [[Builder Extensions|Extensions]] ====&lt;br /&gt;
* [[Builder Extensions|Video]]&lt;br /&gt;
==== [[Using Builder#Differences between Views, Layouts and Extensions|Differences between Views, Layouts and Extensions]] ====&lt;br /&gt;
==== [[Features]] ====&lt;br /&gt;
* [[Builder Features#Responsive|Responsive]] [[Builder Features#Videos|[Videos]]]&lt;br /&gt;
* [[Builder Features#Widget Content|Widget Content]]&lt;br /&gt;
* [[Builder Features#Custom Module Styles|Custom Module Styles]]&lt;br /&gt;
* [[Builder Features#Duplicate Sidebar|Duplicate Sidebar]]&lt;br /&gt;
* [[Builder Features#IMPORT/EXPORT|IMPORT/EXPORT]]&lt;br /&gt;
* and [[Builder Features|more]]&lt;br /&gt;
==== [[Builder Frequently Asked Questions|Frequently Asked Questions (FAQ)]] ====&lt;br /&gt;
==== [[Builder Blocks]] ====&lt;br /&gt;
* [[Restaurant|Builder Restaurant Block]]&lt;br /&gt;
* [[Builder Church Block]]&lt;br /&gt;
* [[Builder Events Block]]&lt;br /&gt;
* [http://ithemes.com/codex/page/BuilderChild-Noise Builder Audio Block] - Note: As Audio Block is designed to be used in conjunction with Noise child theme, we do not have a separate page just for Audio block. The documentation for Noise child theme and Audio block is clubbed together.&lt;br /&gt;
&lt;br /&gt;
==== [[Builder SEO Plugin]] ====&lt;br /&gt;
&lt;br /&gt;
= Customizing Builder =&lt;br /&gt;
&lt;br /&gt;
==== [[Style Manager|Builder Style Manager]] ====&lt;br /&gt;
==== [[Builder CSS Guide|CSS Guide]] ====&lt;br /&gt;
* [[Builder CSS Guide#Videos|Videos]]&lt;br /&gt;
&lt;br /&gt;
= Extending Builder =&lt;br /&gt;
&lt;br /&gt;
==== Plugin related and other generic customizations in Builder ====&lt;br /&gt;
* [[Plugin related and other generic customizations in Builder|Page 1]]&lt;br /&gt;
* [[Plugin related and other generic customizations 2|Page 2]] &lt;br /&gt;
==== [[Builder Tips and Tricks|Tips and Tricks]] ====&lt;br /&gt;
==== [[Builder Hooks|Hooks]] ====&lt;br /&gt;
&lt;br /&gt;
= Builder Child Themes =&lt;br /&gt;
&lt;br /&gt;
==== [[Builder Child Themes|List of child themes]] ====&lt;br /&gt;
==== Child theme specific documentation ====&lt;br /&gt;
# [[BuilderChild-Acute|Acute]]&lt;br /&gt;
## [[BuilderChild-Acute-Blue|Acute Blue]]&lt;br /&gt;
# [[BuilderChild-Adept|Adept]]&lt;br /&gt;
# [[BuilderChild-Air|Air]]&lt;br /&gt;
# [[Americana]]&lt;br /&gt;
# [[BuilderChild-Anchor|Anchor]]&lt;br /&gt;
# [[BuilderChild-Architect|Architect]]&lt;br /&gt;
# [[BuilderChild-Arrival|Arrival]]&lt;br /&gt;
# [[BuilderChild-Avail|Avail]]&lt;br /&gt;
# [[BuilderChild-Blueprint|Blueprint]]&lt;br /&gt;
# [[BuilderChild-Book-Nook|Book Nook]]&lt;br /&gt;
# [[BuilderChild-City-Church|City Church]]&lt;br /&gt;
# [[BuilderChild-Classen|Classen]]&lt;br /&gt;
# [[BuilderChild-Cool-Breeze|Cool Breeze]]&lt;br /&gt;
# [[BuilderChild-Covell|Covell]]&lt;br /&gt;
# [[BuilderChild-Covert|Covert]]&lt;br /&gt;
# [[BuilderChild-Cubed|Cubed]]&lt;br /&gt;
# [[BuilderChild-Default|Default]]&lt;br /&gt;
# [[BuilderChild-Depot|Depot]]&lt;br /&gt;
# [[BuilderChild-Dockside|Dockside]]&lt;br /&gt;
# [[BuilderChild-Encased|Encased]]&lt;br /&gt;
# [[Entree]]&lt;br /&gt;
# [[BuilderChild-Essence|Essence]]&lt;br /&gt;
# [[BuilderChild-Expansion|Expansion]]&lt;br /&gt;
# [[BuilderChild-Fire|Fire]]&lt;br /&gt;
# [[BuilderChild-Foundation|Foundation]]&lt;br /&gt;
##[[BuilderChild-Foundation-Blank|Foundation-Blank]]&lt;br /&gt;
##[[BuilderChild-Foundation-Glacier|Foundation-Glacier]]&lt;br /&gt;
# [[BuilderChild-Gallery-Church|Gallery Church]]&lt;br /&gt;
# [[BuilderChild-Heat-Wave|Heat Wave]]&lt;br /&gt;
# [[Ionic]]&lt;br /&gt;
# [[BuilderChild-Kepler|Kepler]]&lt;br /&gt;
# [[BuilderChild-Lucky7|Lucky 7]]&lt;br /&gt;
# [[BuilderChild-Market|Market]]&lt;br /&gt;
# [[BuilderChild-Noise|Noise]]&lt;br /&gt;
# [[BuilderChild-Patterned|Patterned]]&lt;br /&gt;
# [[BuilderChild-Rainey-Day|Rainey Day]]&lt;br /&gt;
# [[BuilderChild-Remark|Remark]]&lt;br /&gt;
# [[BuilderChild-Resume|Resume]]&lt;br /&gt;
# [[BuilderChild-Revised|Revised]]&lt;br /&gt;
# [[BuilderChild-Scooter|Scooter]]&lt;br /&gt;
# [[BuilderChild-Singular|Singular]]&lt;br /&gt;
# [[BuilderChild-Thinner|Thinner]]&lt;br /&gt;
# [[BuilderChild-Thrifty|Thrifty]]&lt;br /&gt;
# [[BuilderChild-Threads|Threads]]&lt;br /&gt;
# [[BuilderChild-Traverse|Traverse]]&lt;br /&gt;
# [[BuilderChild-Vow|Vow]]&lt;br /&gt;
# [[BuilderChild-Yukon|Yukon]]&lt;br /&gt;
&lt;br /&gt;
= Miscelleneous =&lt;br /&gt;
&lt;br /&gt;
==== [[:Category:Builder/Release Notes|Release Notes]] ====&lt;br /&gt;
==== [http://ithemes.com/forum/topic/25652-plugins-that-conflict-with-builder/ Plugins that conflict with Builder] ====&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/Builder</id>
		<title>Builder</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/Builder"/>
				<updated>2013-04-28T06:15:42Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: /* Builder Blocks */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Introduction to Builder =&lt;br /&gt;
&lt;br /&gt;
We are very glad that you want to know more about or have purchased our blockbuster WordPress design tool, [http://ithemes.com/purchase/builder-theme/ Builder].&lt;br /&gt;
&lt;br /&gt;
Unlike other premium WordPress themes, Builder stretches the possibilities of WordPress — allowing you to quickly and easily build beautiful custom websites and blogs in minutes. &lt;br /&gt;
&lt;br /&gt;
= Installing Builder =&lt;br /&gt;
&lt;br /&gt;
==== [[Installing Builder|How to Install Builder]] ====&lt;br /&gt;
* [[Installing Builder#Videos|Videos]]&lt;br /&gt;
&lt;br /&gt;
= Updating Builder =&lt;br /&gt;
&lt;br /&gt;
==== [[Updating Builder|How to Update Builder]] ====&lt;br /&gt;
&lt;br /&gt;
= Using Builder =&lt;br /&gt;
&lt;br /&gt;
==== [[Using Builder#Getting Started|Getting Started]] ====&lt;br /&gt;
* [http://ithemes.com/publishing/getting-started-with-builder/ PDF e-book]&lt;br /&gt;
==== [[Using Builder#Builder Basics Videos|Builder Basics Videos]] ====&lt;br /&gt;
==== [[Using Builder#Builder Settings|Settings]] (video) ====&lt;br /&gt;
==== [[Layouts and Views]] ====&lt;br /&gt;
* [[Layouts and Views#Layout Manager|Layout Manager]] [[Layouts and Views#Layout Manager#Videos|[Videos]]]&lt;br /&gt;
* [[Layouts and Views#Views|Views]] [[Layouts and Views#Layout Manager#Video|[Video]]]&lt;br /&gt;
==== [[Builder Extensions|Extensions]] ====&lt;br /&gt;
* [[Builder Extensions|Video]]&lt;br /&gt;
==== [[Using Builder#Differences between Views, Layouts and Extensions|Differences between Views, Layouts and Extensions]] ====&lt;br /&gt;
==== [[Features]] ====&lt;br /&gt;
* [[Builder Features#Responsive|Responsive]] [[Builder Features#Videos|[Videos]]]&lt;br /&gt;
* [[Builder Features#Widget Content|Widget Content]]&lt;br /&gt;
* [[Builder Features#Custom Module Styles|Custom Module Styles]]&lt;br /&gt;
* [[Builder Features#Duplicate Sidebar|Duplicate Sidebar]]&lt;br /&gt;
* [[Builder Features#IMPORT/EXPORT|IMPORT/EXPORT]]&lt;br /&gt;
* and [[Builder Features|more]]&lt;br /&gt;
==== [[Builder Frequently Asked Questions|Frequently Asked Questions (FAQ)]] ====&lt;br /&gt;
==== [[Builder Blocks]] ====&lt;br /&gt;
* [[Restaurant|Builder Restaurant Block]]&lt;br /&gt;
* [[Builder Church Block]]&lt;br /&gt;
* [[Builder Events Block]]&lt;br /&gt;
* [http://ithemes.com/codex/page/BuilderChild-Noise Builder Audio Block] - Note: As Audio Block is designed to be used in conjunction with Noise child theme, we do not have a separate page just for Audio block. The documentation for Noise child theme and Audio block is clubbed together.&lt;br /&gt;
&lt;br /&gt;
==== [[Builder SEO Plugin]] ====&lt;br /&gt;
&lt;br /&gt;
= Customizing Builder =&lt;br /&gt;
&lt;br /&gt;
==== [[Style Manager|Builder Style Manager]] ====&lt;br /&gt;
==== [[Builder CSS Guide|CSS Guide]] ====&lt;br /&gt;
* [[Builder CSS Guide#Videos|Videos]]&lt;br /&gt;
&lt;br /&gt;
= Extending Builder =&lt;br /&gt;
&lt;br /&gt;
==== Plugin related and other generic customizations in Builder ====&lt;br /&gt;
* [[Plugin related and other generic customizations in Builder|Page 1]]&lt;br /&gt;
* [[Plugin related and other generic customizations 2|Page 2]] &lt;br /&gt;
==== [[Builder Tips and Tricks|Tips and Tricks]] ====&lt;br /&gt;
==== [[Builder Hooks|Hooks]] ====&lt;br /&gt;
&lt;br /&gt;
= Builder Child Themes =&lt;br /&gt;
&lt;br /&gt;
==== [[Builder Child Themes|List of child themes]] ====&lt;br /&gt;
==== Child theme specific documentation ====&lt;br /&gt;
# [[BuilderChild-Acute|Acute]]&lt;br /&gt;
## [[BuilderChild-Acute-Blue|Acute Blue]]&lt;br /&gt;
# [[BuilderChild-Adept|Adept]]&lt;br /&gt;
# [[Americana]]&lt;br /&gt;
# [[BuilderChild-Anchor|Anchor]]&lt;br /&gt;
# [[BuilderChild-Architect|Architect]]&lt;br /&gt;
# [[BuilderChild-Arrival|Arrival]]&lt;br /&gt;
# [[BuilderChild-Avail|Avail]]&lt;br /&gt;
# [[BuilderChild-Blueprint|Blueprint]]&lt;br /&gt;
# [[BuilderChild-Book-Nook|Book Nook]]&lt;br /&gt;
# [[BuilderChild-City-Church|City Church]]&lt;br /&gt;
# [[BuilderChild-Classen|Classen]]&lt;br /&gt;
# [[BuilderChild-Cool-Breeze|Cool Breeze]]&lt;br /&gt;
# [[BuilderChild-Covell|Covell]]&lt;br /&gt;
# [[BuilderChild-Covert|Covert]]&lt;br /&gt;
# [[BuilderChild-Cubed|Cubed]]&lt;br /&gt;
# [[BuilderChild-Default|Default]]&lt;br /&gt;
# [[BuilderChild-Depot|Depot]]&lt;br /&gt;
# [[BuilderChild-Dockside|Dockside]]&lt;br /&gt;
# [[BuilderChild-Encased|Encased]]&lt;br /&gt;
# [[Entree]]&lt;br /&gt;
# [[BuilderChild-Essence|Essence]]&lt;br /&gt;
# [[BuilderChild-Expansion|Expansion]]&lt;br /&gt;
# [[BuilderChild-Fire|Fire]]&lt;br /&gt;
# [[BuilderChild-Foundation|Foundation]]&lt;br /&gt;
##[[BuilderChild-Foundation-Blank|Foundation-Blank]]&lt;br /&gt;
##[[BuilderChild-Foundation-Glacier|Foundation-Glacier]]&lt;br /&gt;
# [[BuilderChild-Gallery-Church|Gallery Church]]&lt;br /&gt;
# [[BuilderChild-Heat-Wave|Heat Wave]]&lt;br /&gt;
# [[Ionic]]&lt;br /&gt;
# [[BuilderChild-Kepler|Kepler]]&lt;br /&gt;
# [[BuilderChild-Lucky7|Lucky 7]]&lt;br /&gt;
# [[BuilderChild-Market|Market]]&lt;br /&gt;
# [[BuilderChild-Noise|Noise]]&lt;br /&gt;
# [[BuilderChild-Patterned|Patterned]]&lt;br /&gt;
# [[BuilderChild-Rainey-Day|Rainey Day]]&lt;br /&gt;
# [[BuilderChild-Remark|Remark]]&lt;br /&gt;
# [[BuilderChild-Resume|Resume]]&lt;br /&gt;
# [[BuilderChild-Revised|Revised]]&lt;br /&gt;
# [[BuilderChild-Scooter|Scooter]]&lt;br /&gt;
# [[BuilderChild-Singular|Singular]]&lt;br /&gt;
# [[BuilderChild-Thinner|Thinner]]&lt;br /&gt;
# [[BuilderChild-Thrifty|Thrifty]]&lt;br /&gt;
# [[BuilderChild-Threads|Threads]]&lt;br /&gt;
# [[BuilderChild-Traverse|Traverse]]&lt;br /&gt;
# [[BuilderChild-Vow|Vow]]&lt;br /&gt;
# [[BuilderChild-Yukon|Yukon]]&lt;br /&gt;
&lt;br /&gt;
= Miscelleneous =&lt;br /&gt;
&lt;br /&gt;
==== [[:Category:Builder/Release Notes|Release Notes]] ====&lt;br /&gt;
==== [http://ithemes.com/forum/topic/25652-plugins-that-conflict-with-builder/ Plugins that conflict with Builder] ====&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/Builder_Extensions</id>
		<title>Builder Extensions</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/Builder_Extensions"/>
				<updated>2013-04-25T05:28:53Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: /* Examples of customizing Extensions */ Added == How to add a widgetized sidebar under Magazine extension's content area ==&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Introduction =&lt;br /&gt;
&lt;br /&gt;
An extension extends or overrides the structure and/or style of a child theme. This is done via functions.php (to alter the structure) and style.css (to alter the style). An extension is nothing but a directory which typically has functions.php (optional), style.css plus optionally a corresponding images directory. &lt;br /&gt;
&lt;br /&gt;
By default, Builder ships with 6 extensions which are '''designed to be used for displaying a listing of entries''' like Posts page or a category page or a archive. The default extensions reside in ''extensions'' directory under parent Builder directory. If you would like to make any changes to the extension files, copy the extension directory from parent Builder into child theme under a directory named ''extensions''.&lt;br /&gt;
&lt;br /&gt;
An extension is applied to either a layout or a view.&lt;br /&gt;
&lt;br /&gt;
For the sake of documentation, let us consider this site: http://localhost/builder3/&lt;br /&gt;
&lt;br /&gt;
There is a category in this site named ''Issues'' and the URL of this category page is http://localhost/builder3/category/issues/&lt;br /&gt;
&lt;br /&gt;
Screenshot: http://d.pr/cUJa&lt;br /&gt;
&lt;br /&gt;
The reason why this category page is not using the default layout (''Right Sidebar'' in this example) is because a view is present that associates Archives view with ''Full Width'' layout by default in Builder.&lt;br /&gt;
&lt;br /&gt;
= Video =&lt;br /&gt;
&lt;br /&gt;
{{#ev:vimeo|59948118|640}}&lt;br /&gt;
&lt;br /&gt;
= How to apply (use) an extension =&lt;br /&gt;
&lt;br /&gt;
== Example 1 ==&lt;br /&gt;
&lt;br /&gt;
Scenario:&lt;br /&gt;
&lt;br /&gt;
Front page shows a static page.&lt;br /&gt;
&lt;br /&gt;
Page titled &amp;quot;Blog&amp;quot; is set as Posts page.&lt;br /&gt;
&lt;br /&gt;
The above two can be set in WP dashboard at Settings -&amp;gt; Reading.&lt;br /&gt;
&lt;br /&gt;
'''How to apply &amp;quot;Teasers Layout - left&amp;quot; extension to the Posts page''':&lt;br /&gt;
&lt;br /&gt;
=== Case A ===&lt;br /&gt;
&lt;br /&gt;
You have created a layout named &amp;quot;Blog Layout&amp;quot; to be used for your site's Posts page, i.e., for sitename.com/blog&lt;br /&gt;
&lt;br /&gt;
'''1.''' Go to My Theme -&amp;gt; Layouts &amp;amp; Views -&amp;gt; Views. Add a &amp;lt;code&amp;gt;Blog&amp;lt;/code&amp;gt; view to specify that Posts page uses &amp;quot;Blog Layout&amp;quot; layout. More info on this [http://ithemes.com/codex/page/Builder_Frequently_Asked_Questions#Apply_a_layout_to_the_Posts_page here] and [http://ithemes.com/codex/page/Builder_Documentation#Apply_Layouts_to_Specific_Views here].&lt;br /&gt;
&lt;br /&gt;
'''2.''' Edit &amp;quot;Blog Layout&amp;quot;, select &amp;quot;Teasers Layout - left&amp;quot; from the Extension dropdown and save the layout.&lt;br /&gt;
&lt;br /&gt;
=== Case B ===&lt;br /&gt;
&lt;br /&gt;
 Note: Applying extensions via Views does not work in the recent versions of Builder. This note will be removed when this is fixed.&lt;br /&gt;
&lt;br /&gt;
You do not want to use a separate layout for the Posts page.&lt;br /&gt;
&lt;br /&gt;
Go to My Theme -&amp;gt; Layouts &amp;amp; Views. Add a view as shown in the image below.&lt;br /&gt;
&lt;br /&gt;
[[F 12-46-23.png|494px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: If the default layout uses an extension, that extension will take precedence over the one created in the above view. In such cases, create a separate layout for the Posts page and use it as explained in Case A above.&lt;br /&gt;
&lt;br /&gt;
= List of extensions that Builder comes with =&lt;br /&gt;
&lt;br /&gt;
== Featured Image Grid &amp;amp; Showcase ==&lt;br /&gt;
&lt;br /&gt;
To apply Featured Image Grid &amp;amp; Showcase extension to ''Issues'' category page, we should add a view like so:&lt;br /&gt;
&lt;br /&gt;
[[File:Extn-1.png]]&lt;br /&gt;
&lt;br /&gt;
Screenshot of the category page on site:&lt;br /&gt;
&lt;br /&gt;
[[File:Featured-image-grid-showcase.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
# The images that appear on the page are featured images added in the posts.&lt;br /&gt;
# The output will not show any post that does not have a featured image.&lt;br /&gt;
&lt;br /&gt;
== Featured Image Slider ==&lt;br /&gt;
&lt;br /&gt;
Displays Featured Image &amp;amp; Post Title of first 6 posts in a custom slider and the Featured Image, Post Title &amp;amp; Excerpt for the remaining posts.&lt;br /&gt;
&lt;br /&gt;
[[File:Featured-image-slider-1.png]]&lt;br /&gt;
&lt;br /&gt;
Page Not Found message appears below the slider because there are only 3 posts. If we add 1 more,&lt;br /&gt;
&lt;br /&gt;
[[File:Featured-image-slider-2.png|780px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
== Magazine Layout ==&lt;br /&gt;
&lt;br /&gt;
[[File:Magaine-extn.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
== Portfolio Layout ==&lt;br /&gt;
&lt;br /&gt;
[[File:Portfolio-extn.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
== Teasers Layout - Image Left ==&lt;br /&gt;
&lt;br /&gt;
[[File:Teasers-images-left.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
== Teasers Layout - Image Right ==&lt;br /&gt;
&lt;br /&gt;
[[File:Teasers-images-right.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
= Miscellaneous =&lt;br /&gt;
&lt;br /&gt;
* It is not possible to override the parent or child theme's template files like index.php, archive.php, single.php, page.php. If any such files are present in an extension, they will simply be ignored.&lt;br /&gt;
* When an extension has functions.php, it will be executed (for the page using that extension) after the theme's functions.php has been executed.&lt;br /&gt;
&lt;br /&gt;
= Examples of customizing Extensions =&lt;br /&gt;
&lt;br /&gt;
== Styling ContactBuddy ==&lt;br /&gt;
&lt;br /&gt;
http://ithemes.com/styling-contactbuddy-using-ithemes-builder-extensions/&lt;br /&gt;
&lt;br /&gt;
== Showing posts from a category on a separate Page and applying an extension ==&lt;br /&gt;
&lt;br /&gt;
Every category in WordPress by default will have a auto-generated page visible at a URL like http://yoursite.com/category/category-a (where ''category-a'' is the slug for a category titled ''Category A''). We call this category page. It is straight forward to use a extension on this page by going to My Theme -&amp;gt; Layouts and Views, then Views tab, and adding a view to set a layout for our desired category page.&lt;br /&gt;
&lt;br /&gt;
For example,&lt;br /&gt;
&lt;br /&gt;
[[File:Setting-layout-category-page.png]]&lt;br /&gt;
&lt;br /&gt;
applies &amp;quot;Full Width&amp;quot; layout to http://localhost/builder3/category/issues/ (http://localhost/builder3 is just for example, it can very well be www.yoursite.com) and uses Magazine layout for the display of posts. &lt;br /&gt;
&lt;br /&gt;
The result is:&lt;br /&gt;
&lt;br /&gt;
[[File:Magazine-extn-category-page.png|536px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Let's say we want to have all posts from ''Issues'' category appear on a Page titled ''Issues List'' and use Magazine extension, follow the steps below. i.e., the objective is to have http://localhost/builder3/issues-list/ appear like the above screenshot.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Copy the extension that you would like to be use from parent directory into child directory&lt;br /&gt;
&lt;br /&gt;
Ex.: from wp-content/themes/Builder/extensions/magazine to wp-content/themes/BuilderChild-Thinner/extensions/magazine&lt;br /&gt;
&lt;br /&gt;
Note: If the child theme directory does not contain ''extensions'' directory, create it.&lt;br /&gt;
 &lt;br /&gt;
'''2.''' &lt;br /&gt;
&lt;br /&gt;
'''a.''' Rename the extension.&lt;br /&gt;
&lt;br /&gt;
'''b.''' Edit functions.php to remove the &amp;lt;code&amp;gt;if ( ! is_singular() ) ...&amp;lt;/code&amp;gt; limitation. Add query_posts() call just above the loop to restrict the posts from your desired category.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
'''a.''' Rename wp-content/themes/BuilderChild-Thinner/extensions/magazine to wp-content/themes/BuilderChild-Thinner/extensions/magazine-issues&lt;br /&gt;
&lt;br /&gt;
Edit wp-content/themes/BuilderChild-Thinner/extensions/magazine-issues/style.css.&lt;br /&gt;
&lt;br /&gt;
Change &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
Name: Magazine Layout&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
Name: Magazine Layout for Issues List Page&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''b.''' Edit wp-content/themes/BuilderChild-Thinner/extensions/magazine-issues/functions.php.&lt;br /&gt;
&lt;br /&gt;
Change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
// Calling only if not on a singular&lt;br /&gt;
			if ( ! is_singular() ) {&lt;br /&gt;
				add_action( 'builder_layout_engine_render', array( &amp;amp;$this, 'change_render_content' ), 0 );&lt;br /&gt;
			}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
// Calling only if not on a singular&lt;br /&gt;
			//if ( ! is_singular() ) {&lt;br /&gt;
				add_action( 'builder_layout_engine_render', array( &amp;amp;$this, 'change_render_content' ), 0 );&lt;br /&gt;
			//}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Add&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts(&amp;quot;cat=18&amp;amp;paged=$paged&amp;quot;); ?&amp;gt; &amp;lt;!-- Change 18 to ID of category from which posts should be shown --&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
immediately above&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php while ( have_posts() ) : // the loop ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:2012-02-27 12-51-10.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''3.''' Create a layout and apply the extension from the previous step.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
[[File:Step3.png]]&lt;br /&gt;
&lt;br /&gt;
'''4.''' Create a Page in which you would like to have the posts from the specific category appear and set the layout to the one created in above step.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
[[File:Step4.png|628px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
That's it!&lt;br /&gt;
&lt;br /&gt;
If you would like to show posts from another category similarly on another Page, repeat the above process to create a new extension while remembering to specify the category ID and apply it to the Page.&lt;br /&gt;
&lt;br /&gt;
=== Update ===&lt;br /&gt;
&lt;br /&gt;
One extra step has to be done in addition to the above to apply the above method in the case of '''Featured Image Grid &amp;amp; Showcase'''.&lt;br /&gt;
&lt;br /&gt;
Change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
global $post, $wp_query;&lt;br /&gt;
			&lt;br /&gt;
			$args = array(&lt;br /&gt;
				'ignore_sticky_posts' =&amp;gt; true,&lt;br /&gt;
				'posts_per_page'      =&amp;gt; 9,&lt;br /&gt;
				'meta_key'            =&amp;gt; '_thumbnail_id',&lt;br /&gt;
				'paged'               =&amp;gt; get_query_var( 'paged' ),&lt;br /&gt;
			);&lt;br /&gt;
			&lt;br /&gt;
			$args = wp_parse_args( $args, $wp_query-&amp;gt;query );&lt;br /&gt;
			&lt;br /&gt;
			query_posts( $args ); // Query only posts with a feature image set.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
global $post/*, $wp_query;&lt;br /&gt;
			&lt;br /&gt;
			$args = array(&lt;br /&gt;
				'ignore_sticky_posts' =&amp;gt; true,&lt;br /&gt;
				'posts_per_page'      =&amp;gt; 9,&lt;br /&gt;
				'meta_key'            =&amp;gt; '_thumbnail_id',&lt;br /&gt;
				'paged'               =&amp;gt; get_query_var( 'paged' ),&lt;br /&gt;
			);&lt;br /&gt;
			&lt;br /&gt;
			$args = wp_parse_args( $args, $wp_query-&amp;gt;query );&lt;br /&gt;
			&lt;br /&gt;
			query_posts( $args );*/ // Query only posts with a feature image set.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Modifying Portfolio extension so that 2 images appear per row rather than 3 ==&lt;br /&gt;
&lt;br /&gt;
Before: [[File:Portfolio-3-images-per-row.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
After: [[File:Portfolio-2-images-per-row.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
# The width and height values used in the steps below are to be taken only as an example and are not to be treated absolute. They may have to be changed depending on child theme you are using and the layout width.&lt;br /&gt;
# We are going to edit the extension in parent theme directly. When Builder is updated, our custom edits will be erased. Therefore you have to either take a backup of the extension before updating and re-apply the changes or duplicate the extension, place it in child theme while making sure function names are changed.&lt;br /&gt;
&lt;br /&gt;
Child theme: BuilderChild-Acute&lt;br /&gt;
&lt;br /&gt;
Layout width: 980px&lt;br /&gt;
&lt;br /&gt;
'''1.''' Edit wp-content/themes/Builder/extensions/portfolio/lib/image-size.php&lt;br /&gt;
&lt;br /&gt;
Change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_image_size( 'it-portfolio-thumb', 350, 150, true );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
	//add_image_size( 'it-portfolio-thumb', 350, 150, true );&lt;br /&gt;
	add_image_size( 'it-portfolio-thumb', 450, 193, true );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''2.''' Edit wp-content/themes/Builder/extensions/portfolio/style.css&lt;br /&gt;
&lt;br /&gt;
Change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.portfolio-post-wrap {&lt;br /&gt;
	display: inline-block;&lt;br /&gt;
	width: 32.8%;&lt;br /&gt;
	vertical-align: top;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.portfolio-post-wrap {&lt;br /&gt;
	display: inline-block;&lt;br /&gt;
/* 	width: 32.8%; */&lt;br /&gt;
	width: 49%;&lt;br /&gt;
	vertical-align: top;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.portfolio-post img {&lt;br /&gt;
	width: 100%;&lt;br /&gt;
	max-width: 350px;&lt;br /&gt;
	height: auto;&lt;br /&gt;
	margin: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.portfolio-post img {&lt;br /&gt;
	/*width: 100%;&lt;br /&gt;
	max-width: 350px;*/&lt;br /&gt;
	max-width: 450px;&lt;br /&gt;
	height: auto;&lt;br /&gt;
	margin: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''3.''' Refresh the page on the front-end for which Portfolio extension is being applied. If the new sized thumbnails do not appear, install and run [http://wordpress.org/extend/plugins/regenerate-thumbnails/ Regenerate Thumbnails] plugin.&lt;br /&gt;
&lt;br /&gt;
== Displaying archive/category title above the output of Portfolio extension ==&lt;br /&gt;
&lt;br /&gt;
[[File:2012-06-22 10-03-56.png|727px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Copy the extension from parent Builder directory into the child theme under extensions directory so that wp-content/themes/''BuilderChild-themename''/extensions/portfolio is present.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Edit wp-content/themes/''BuilderChild-themename''/extensions/portfolio/functions.php.&lt;br /&gt;
&lt;br /&gt;
Above&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;loop-content&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
paste&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;loop-header&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;h4 class=&amp;quot;loop-title&amp;quot;&amp;gt;&lt;br /&gt;
					&amp;lt;?php&lt;br /&gt;
						the_post();&lt;br /&gt;
						&lt;br /&gt;
						if ( is_category() ) { // Category Archive&lt;br /&gt;
							$title = sprintf( __( 'Archive for %s', 'it-l10n-Builder' ), single_cat_title( '', false ) );&lt;br /&gt;
						}&lt;br /&gt;
						else if ( is_tag() ) { // Tag Archive&lt;br /&gt;
							$title = sprintf( __( 'Archive for %s', 'it-l10n-Builder' ), single_tag_title( '', false ) );&lt;br /&gt;
						}&lt;br /&gt;
						else if ( is_tax() ) { // Tag Archive&lt;br /&gt;
							$title = sprintf( __( 'Archive for %s', 'it-l10n-Builder' ), builder_get_tax_term_title() );&lt;br /&gt;
						}&lt;br /&gt;
						else if ( is_day() || is_time() ) { // Day-Specific Archive&lt;br /&gt;
							$title = sprintf( __( 'Archive for %s', 'it-l10n-Builder' ), get_the_time() );&lt;br /&gt;
						}&lt;br /&gt;
						else if ( is_month() ) { // Month-Specific Archive&lt;br /&gt;
							$title = sprintf( __( 'Archive for %s', 'it-l10n-Builder' ), get_the_time( 'F Y' ) );&lt;br /&gt;
						}&lt;br /&gt;
						else if ( is_year() ) { // Year-Specific Archive&lt;br /&gt;
							$title = sprintf( __( 'Archive for %s', 'it-l10n-Builder' ), get_the_time( 'Y' ) );&lt;br /&gt;
						}&lt;br /&gt;
						else if ( is_author() ) { // Author Archive&lt;br /&gt;
							$title = sprintf( __( 'Author Archive for %s', 'it-l10n-Builder' ), get_the_author() );&lt;br /&gt;
						}&lt;br /&gt;
						else if ( function_exists( 'is_post_type_archive' ) &amp;amp;&amp;amp; is_post_type_archive() &amp;amp;&amp;amp; function_exists( 'post_type_archive_title' ) ) { // Post Type Archive&lt;br /&gt;
							$title = post_type_archive_title( '', false );&lt;br /&gt;
						}&lt;br /&gt;
						else { // Default catchall just in case&lt;br /&gt;
							$title = __( 'Archive', 'it-l10n-Builder' );&lt;br /&gt;
						}&lt;br /&gt;
						&lt;br /&gt;
						if ( is_paged() )&lt;br /&gt;
							printf( '%s &amp;amp;ndash; Page %d', $title, get_query_var( 'paged' ) );&lt;br /&gt;
						else&lt;br /&gt;
							echo $title;&lt;br /&gt;
						&lt;br /&gt;
						rewind_posts();&lt;br /&gt;
					?&amp;gt;&lt;br /&gt;
				&amp;lt;/h4&amp;gt;&lt;br /&gt;
			&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to change number of posts when using Featured Image Grid &amp;amp; Showcase extension ==&lt;br /&gt;
&lt;br /&gt;
Copy the extension to your child theme and edit its functions.php.&lt;br /&gt;
&lt;br /&gt;
Ex.: Copy &amp;lt;code&amp;gt;wp-content/themes/Builder/extensions/image-grid&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;wp-content/themes/BuilderChild-Default/extensions/image-grid&amp;lt;/code&amp;gt; (create extensions directory in child theme directory if doesn't exist) and edit &amp;lt;code&amp;gt;wp-content/themes/BuilderChild-Default/extensions/image-grid/functions.php&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Set your desired number of posts in the following line:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
'posts_per_page'      =&amp;gt; 6,&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Showing products from a specific WP e-Commerce category in Slider extension ==&lt;br /&gt;
&lt;br /&gt;
[[File:2012-07-24 20-41-37.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
When Slider extension is applied to a layout or view and that layout is used in a listing page (Ex.: Posts page, archives), the sliding images will be featured images attached to the blog posts. When you have WP e-Commerce plugin activated and would like to show images attached to products belonging to a specific WPEC category in the Slider, follow this:&lt;br /&gt;
&lt;br /&gt;
Copy the extension to your child theme and edit its functions.php.&lt;br /&gt;
&lt;br /&gt;
Ex.: Copy &amp;lt;code&amp;gt;wp-content/themes/Builder/extensions/slider&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;wp-content/themes/BuilderChild-Depot/extensions/slider&amp;lt;/code&amp;gt; (create extensions directory in child theme directory if doesn't exist) and edit &amp;lt;code&amp;gt;wp-content/themes/BuilderChild-Depot/extensions/slider/functions.php&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
$args = array(&lt;br /&gt;
						'posts_per_page' =&amp;gt; 6,&lt;br /&gt;
						'order'          =&amp;gt; 'date',&lt;br /&gt;
						'meta_key'       =&amp;gt; '_thumbnail_id'&lt;br /&gt;
					);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
$args = array(&lt;br /&gt;
						'posts_per_page' =&amp;gt; 6,&lt;br /&gt;
						'order'          =&amp;gt; 'date',&lt;br /&gt;
						'meta_key'       =&amp;gt; '_thumbnail_id',&lt;br /&gt;
						'post_type'      =&amp;gt; 'wpsc-product',&lt;br /&gt;
						'wpsc_product_category' =&amp;gt; 'product-category'&lt;br /&gt;
					);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace &amp;lt;code&amp;gt;product-category&amp;lt;/code&amp;gt; with the slug of WP e-Commerce category from which you would like Product Thumbnails to be shown in the slider.&lt;br /&gt;
&lt;br /&gt;
If you would like to know how to replace the standard blog posts that appear below the slider with products added in WP e-Commerce (screenshot below), see [http://ithemes.com/forum/topic/30464-builder-child-depot-change-slider-to-products-category/page__view__findpost__p__141706 this] forum topic.&lt;br /&gt;
&lt;br /&gt;
[[File:My Test Site 2012-07-24 21-26-07.png|344px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
== Displaying Slideshow at the top of Magazine layout ==&lt;br /&gt;
&lt;br /&gt;
[[File:2012-08-08 10-16-27.png|545px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
If you would like to display PluginBuddy Slideshow above the posts when using Magazine extension, follow this:&lt;br /&gt;
&lt;br /&gt;
Copy the extension to your child theme and edit its functions.php.&lt;br /&gt;
&lt;br /&gt;
Ex.: Copy &amp;lt;code&amp;gt;wp-content/themes/Builder/extensions/magazine&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;wp-content/themes/BuilderChild-Expansion-Blue/extensions/magazine&amp;lt;/code&amp;gt; (create extensions directory in child theme directory if doesn't exist) and edit &amp;lt;code&amp;gt;wp-content/themes/BuilderChild-Expansion-Blue/extensions/magazine/functions.php&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Above&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php if ( have_posts() ) : ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
add&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;my-slideshow-container&amp;quot;&amp;gt;&amp;lt;?php echo do_shortcode('[pb_slideshow group=&amp;quot;0&amp;quot;] '); ?&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace &amp;lt;code&amp;gt;0&amp;lt;/code&amp;gt; with the ID of Slideshow group that you would like to be shown.&lt;br /&gt;
&lt;br /&gt;
The following has been added at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor) in this particular example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#my-slideshow-container {&lt;br /&gt;
    margin-bottom: 4em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.magazine-post-wrap {&lt;br /&gt;
    width: 43% !important;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to show Read More below each excerpt when using 'Teasers Layout - Image Left' extension ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=192px heights=598px&amp;gt;&lt;br /&gt;
File:Builder Responsive Test Site 2013-01-25 15-19-06.png|Before&lt;br /&gt;
File:Builder Responsive Test Site 2013-01-25 15-19-45.png|After&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
When 'Teasers Layout - Image Left' extension is applied to a listing page 'Read More' link appears only if the post has more than 60 words. If you would like to show Read More at the bottom of every excerpt regardless of the number of words in the post, follow this:&lt;br /&gt;
&lt;br /&gt;
'''1.''' Copy the extension to your child theme under &amp;lt;code&amp;gt;extensions&amp;lt;/code&amp;gt; directory and edit its &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Ex.: Copy &amp;lt;code&amp;gt;wp-content/themes/Builder/extensions/post-teasers-left&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;wp-content/themes/BuilderChild-Acute-Purple/extensions/post-teasers-left&amp;lt;/code&amp;gt; (create extensions directory in child theme directory, it doesn't exist by default) and edit &amp;lt;code&amp;gt;wp-content/themes/BuilderChild-Acute-Purple/extensions/post-teasers-left/functions.php&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Below&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php the_excerpt(); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
paste&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php the_permalink(); ?&amp;gt;&amp;quot; class=&amp;quot;more-link&amp;quot;&amp;gt;Read More &amp;amp;rarr;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''3.''' Change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function excerpt_more( $more ) {&lt;br /&gt;
	global $post;&lt;br /&gt;
	return '...&amp;lt;p&amp;gt;&amp;lt;a href=&amp;quot;'. get_permalink( $post-&amp;gt;ID ) . '&amp;quot; class=&amp;quot;more-link&amp;quot;&amp;gt;Read More&amp;amp;rarr;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;';&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function excerpt_more( $more ) {&lt;br /&gt;
	global $post;&lt;br /&gt;
	return '';&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to right align &amp;quot;Read More&amp;quot; box and move it up a bit when using 'Teasers Layout - Image Left' extension ==&lt;br /&gt;
&lt;br /&gt;
In this example, Builder Child Theme - Adept is the active theme.&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-01-27 at 11.59.02 AM.png|774px|thumb|none|Before]]&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-01-27 at 10.18.35 AM.png|795px|thumb|none|After]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Copy the extension to your child theme under &amp;lt;code&amp;gt;extensions&amp;lt;/code&amp;gt; directory and edit its &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Ex.: Copy &amp;lt;code&amp;gt;wp-content/themes/Builder/extensions/post-teasers-left&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;wp-content/themes/BuilderChild-Adept/extensions/post-teasers-left&amp;lt;/code&amp;gt; (create extensions directory in child theme directory, it doesn't exist by default) and edit &amp;lt;code&amp;gt;wp-content/themes/BuilderChild-Adept/extensions/post-teasers-left/functions.php&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
return '...&amp;lt;p&amp;gt;&amp;lt;a href=&amp;quot;'. get_permalink( $post-&amp;gt;ID ) . '&amp;quot; class=&amp;quot;more-link&amp;quot;&amp;gt;Read More&amp;amp;rarr;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;';&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
return '...&amp;lt;p class=&amp;quot;more-link-para&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;'. get_permalink( $post-&amp;gt;ID ) . '&amp;quot; class=&amp;quot;more-link&amp;quot;&amp;gt;Read More&amp;amp;rarr;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;';&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.more-link-para {&lt;br /&gt;
	margin-top: 0;&lt;br /&gt;
	float: right;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to show comments count below post titles when using Portfolio extension ==&lt;br /&gt;
&lt;br /&gt;
[[File:Builder Responsive Test Site 2013-02-01 20-42-21.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Copy the extension to your child theme under &amp;lt;code&amp;gt;extensions&amp;lt;/code&amp;gt; directory (create extensions directory in child theme directory, it doesn't exist by default) and edit its &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Ex.: Copy &amp;lt;code&amp;gt;wp-content/themes/Builder/extensions/portfolio&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;wp-content/themes/BuilderChild-Covell/extensions/portfolio&amp;lt;/code&amp;gt; and edit &amp;lt;code&amp;gt;wp-content/themes/BuilderChild-Covell/extensions/portfolio/functions.php&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Below&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;span class=&amp;quot;portfolio-title&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php the_permalink(); ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php the_title(); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
paste&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php do_action( 'builder_comments_popup_link', '&amp;lt;div class=&amp;quot;entry-meta&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;comments&amp;quot;&amp;gt;', '&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;', __( '%s', 'it-l10n-Builder' ), __( '', 'it-l10n-Builder' ), __( '(1 Comment)', 'it-l10n-Builder' ), __( '(% Comments)', 'it-l10n-Builder' ) ); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.portfolio-post-wrap .entry-meta {&lt;br /&gt;
	text-align: center;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.portfolio-post-wrap .entry-meta .comments a {&lt;br /&gt;
	color: #cfab8e;&lt;br /&gt;
	font-size: 0.9em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to show a certain number of posts for a particular category page while showing another number of posts for other pages when using Magazine extension ==&lt;br /&gt;
&lt;br /&gt;
See #1 in [http://ithemes.com/forum/topic/37954-patterned-background-image-and-pagination/#entry173712 this] forum post.&lt;br /&gt;
&lt;br /&gt;
== jQuery Masonry Extension for Pinterest-Like Posts Display ==&lt;br /&gt;
&lt;br /&gt;
[http://masonry.desandro.com/ jQuery Masonry] comes included in WordPress core library beginning 3.5.&lt;br /&gt;
&lt;br /&gt;
I (Sridhar) have modified a copy of iThemes Builder's magazine extension into &amp;lt;code&amp;gt;masonry&amp;lt;/code&amp;gt; extension with some help from Ronald.&lt;br /&gt;
&lt;br /&gt;
When this extension is applied to a layout and this layout applied to any webpage in the site that has a list of posts, the posts will automatically appear in boxes in a Pinterest-style display. Included in the extension is [http://www.infinite-scroll.com/ Infinite Scroll] jQuery script which automatically loads next set of posts as the user scrolls down. &lt;br /&gt;
&lt;br /&gt;
[[File:2013-02-18 15-50-34.png|407px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[[File:2013-02-18 15-55-30.png|407px|thumb|none|Next Page link disappears as the user scrolls down and next set of posts will auto load]]&lt;br /&gt;
&lt;br /&gt;
[http://websitesetuppro.com/ Live Demo] (with few modifications on top of the extension)&lt;br /&gt;
&lt;br /&gt;
'''1.''' Go [https://github.com/srikat/Masonry-Extension here] and click on ZIP button to download the extension. Extract the downloaded zip file and rename the resulting folder to &amp;lt;code&amp;gt;masonry&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Using a FTP client or cPanel file manager, navigate to wp-content/themes and inside your active theme (should ideally be a child theme of Builder).&lt;br /&gt;
&lt;br /&gt;
'''3.''' Create a directory named &amp;lt;code&amp;gt;extensions&amp;lt;/code&amp;gt; if one doesn't already exist.&lt;br /&gt;
&lt;br /&gt;
'''4.''' Upload the &amp;lt;code&amp;gt;masonry&amp;lt;/code&amp;gt; folder from step 1 into the above &amp;lt;code&amp;gt;extensions&amp;lt;/code&amp;gt; folder.&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-02-18 at 4.03.46 PM.png|484px|thumb|none|Example]]&lt;br /&gt;
&lt;br /&gt;
'''5.''' In WordPress dashboard, go to My Theme -&amp;gt; Layouts &amp;amp; Views and edit the layout that is being used for your Posts (blog) page or archive page. If there is currently no such layout, create (either from scratch or by duplicating an existing one) layout(s) that you wish to be applied to your site's Posts (blog) page and/or archives.&lt;br /&gt;
&lt;br /&gt;
From Extension dropdown, select &amp;lt;code&amp;gt;Masonry Layout&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[[File:2013-02-18 16-09-03.png|693px|thumb|none|Example]]&lt;br /&gt;
&lt;br /&gt;
Save the layout.&lt;br /&gt;
&lt;br /&gt;
'''6.''' Now visit the page that uses above layout to see extension in action.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap&amp;quot;&amp;gt;&lt;br /&gt;
The extension is set to show posts in 3 columns by default in a 960px wide layout.&lt;br /&gt;
&lt;br /&gt;
Therefore you might want to ensure that content module does not have any sidebar.&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap&amp;quot;&amp;gt;&lt;br /&gt;
Also depending on which child theme is being used, only 2 columns might be appearing. This can be fixed by adjusting the width of &amp;quot;.builder-module-content .hentry&amp;quot; as noted in the extension's style.css.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap&amp;quot;&amp;gt;&lt;br /&gt;
Width of each post block can be changed in extension's style.css. Note the CSS and comments for &amp;quot;.builder-module-content .hentry&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap&amp;quot;&amp;gt;&lt;br /&gt;
This should be considered as unofficial extension and support is not guaranteed.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to remove date when using Teasers Layout - Image Left extension ==&lt;br /&gt;
&lt;br /&gt;
Before:&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-04-23 at 11.39.26 AM.png|576px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
After:&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-04-23 at 11.39.00 AM.png|589px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Copy the extension to your child theme under &amp;lt;code&amp;gt;extensions&amp;lt;/code&amp;gt; directory (create &amp;quot;extensions&amp;quot; directory in child theme directory, it doesn't exist by default) and edit its &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Ex.: Copy &amp;lt;code&amp;gt;wp-content/themes/Builder/extensions/post-teasers-left&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;wp-content/themes/BuilderChild-Default/extensions/post-teasers-left&amp;lt;/code&amp;gt; and edit &amp;lt;code&amp;gt;wp-content/themes/BuilderChild-Default/extensions/post-teasers-left/functions.php&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php printf( __( 'Posted on %s', 'it-l10n-Builder' ), '&amp;lt;span class=&amp;quot;the_date&amp;quot;&amp;gt;' . get_the_date() . '&amp;lt;/span&amp;gt;' ); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php //printf( __( 'Posted on %s', 'it-l10n-Builder' ), '&amp;lt;span class=&amp;quot;the_date&amp;quot;&amp;gt;' . get_the_date() . '&amp;lt;/span&amp;gt;' ); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to add a widgetized sidebar under Magazine extension's content area ==&lt;br /&gt;
&lt;br /&gt;
If content module does not have a sidebar and if you would like to add a 3-column sidebar below it, it is pretty straight forward to add a widget bar module below the content module.&lt;br /&gt;
&lt;br /&gt;
However, when content module has a sidebar and you would like to add a multiple widget columns below the content area then the following method can be used.&lt;br /&gt;
&lt;br /&gt;
[[File:WordPress Dev Site 2013-04-25 10-46-12.png|425px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Add the following in child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; before closing PHP tag, if any:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// register our sidebar&lt;br /&gt;
add_action('widgets_init', 'register_my_content_sidebar');&lt;br /&gt;
function register_my_content_sidebar() {&lt;br /&gt;
&lt;br /&gt;
        $sidebar = array(&lt;br /&gt;
                'id' =&amp;gt; 'my_content_sidebar',&lt;br /&gt;
                'name' =&amp;gt; __('Content Sidebar'),&lt;br /&gt;
                'description' =&amp;gt; __( 'This widget section ...' ),&lt;br /&gt;
                'before_widget' =&amp;gt; '&amp;lt;div id=&amp;quot;%1$s&amp;quot; class=&amp;quot;widget %2$s&amp;quot;&amp;gt;',&lt;br /&gt;
                'after_widget' =&amp;gt; '&amp;lt;/div&amp;gt;',&lt;br /&gt;
                'before_title' =&amp;gt; '&amp;lt;h4 class=&amp;quot;widget-title&amp;quot;&amp;gt;',&lt;br /&gt;
                'after_title' =&amp;gt; '&amp;lt;/h4&amp;gt;'&lt;br /&gt;
);&lt;br /&gt;
&lt;br /&gt;
        register_sidebar($sidebar);&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''2.''' Copy the extension from parent Builder directory into the child theme under extensions directory so that (for example,) wp-content/themes/BuilderChild-Default/extensions/magazine is present.&lt;br /&gt;
&lt;br /&gt;
Edit wp-content/themes/BuilderChild-Default/extensions/magazine/functions.php.&lt;br /&gt;
&lt;br /&gt;
Above&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php else : // do not delete ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
add&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php // add the sidebar&lt;br /&gt;
	if ( is_active_sidebar( 'my_content_sidebar' ) ) {&lt;br /&gt;
		echo '&amp;lt;div class=&amp;quot;my-content-sidebar&amp;quot;&amp;gt;';&lt;br /&gt;
	        dynamic_sidebar( 'my_content_sidebar' );&lt;br /&gt;
        echo '&amp;lt;/div&amp;gt;';&lt;br /&gt;
	}&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:2013-04-25 10-53-10.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.my-content-sidebar {&lt;br /&gt;
    float: left;&lt;br /&gt;
    padding-left: 1em;&lt;br /&gt;
    padding-right: 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.my-content-sidebar .widget {&lt;br /&gt;
    width: 32%;&lt;br /&gt;
    float: left;&lt;br /&gt;
    overflow: hidden;&lt;br /&gt;
    margin-right: 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.my-content-sidebar .widget:last-child {&lt;br /&gt;
	margin-right: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thanks to Ronald for providing the base code [http://ithemes.com/forum/topic/42546-is-there-a-way-to-put-a-widget-under-the-content-block/#entry188701 here].&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:2013-04-25_10-53-10.png</id>
		<title>File:2013-04-25 10-53-10.png</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:2013-04-25_10-53-10.png"/>
				<updated>2013-04-25T05:23:41Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/File:WordPress_Dev_Site_2013-04-25_10-46-12.png</id>
		<title>File:WordPress Dev Site 2013-04-25 10-46-12.png</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/File:WordPress_Dev_Site_2013-04-25_10-46-12.png"/>
				<updated>2013-04-25T05:17:07Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/Plugin_related_and_other_generic_customizations_in_Builder</id>
		<title>Plugin related and other generic customizations in Builder</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/Plugin_related_and_other_generic_customizations_in_Builder"/>
				<updated>2013-04-24T09:44:21Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: /* How to automatically add a sub menu indicator to 1st level menu items in nav bar */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''This is Page 1 of ''Plugin related and other generic customizations in Builder''. [http://ithemes.com/codex/page/Plugin_related_and_other_generic_customizations_2 Here] is Page 2.'''&lt;br /&gt;
&lt;br /&gt;
'''WARNING''': All the entries here are only for the purpose of documenting (mostly) my (Sridhar Katakam's) findings and discoveries of using plugins and doing other customizations in Builder which in general are beyond the scope of our support. As such there is no guaranteed support on implementing the methods listed on this page and other pages (Page 2, Page 3 etc.).&lt;br /&gt;
&lt;br /&gt;
= How to add a wordpress.org style pagination =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Custom-pagination-before.png&lt;br /&gt;
File:Custom-pagination-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''1.''' Install and activate [http://wordpress.org/extend/plugins/wp-paginate/installation/ WP-Paginate] plugin. While on the plugins page in WP admin, click on Settings link for the plugin.&lt;br /&gt;
&lt;br /&gt;
Set &lt;br /&gt;
&lt;br /&gt;
a) Pagination Label: ''blank''&lt;br /&gt;
&lt;br /&gt;
b) Previous Page: &amp;lt;code&amp;gt;&amp;amp;amp;laquo; Previous&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
c) Next Page: &amp;lt;code&amp;gt;Next &amp;amp;amp;raquo;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Wp-paginate-settings.png|600px|none]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Save Changes.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Edit all those theme template files (of Builder child theme that's currently active) in which you would like to replace the default Builder navigation links with your custom ones powered by WP-Paginate plugin.&lt;br /&gt;
&lt;br /&gt;
The main one would be index.php. The others are archive.php, page.php, page_sitemap.php, search.php and single.php. Note: Not all these files might be present in your child theme. If you wish to make changes to a file that is not present in the child theme, then you should copy it from the parent Builder directory into child theme directory and make changes.&lt;br /&gt;
&lt;br /&gt;
Replace&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!-- Previous/Next page navigation --&amp;gt;&lt;br /&gt;
				&amp;lt;div class=&amp;quot;loop-utility clearfix&amp;quot;&amp;gt;&lt;br /&gt;
					&amp;lt;div class=&amp;quot;alignleft&amp;quot;&amp;gt;&amp;lt;?php previous_posts_link( __( '&amp;amp;laquo; Previous Page', 'it-l10n-Builder' ) ); ?&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
					&amp;lt;div class=&amp;quot;alignright&amp;quot;&amp;gt;&amp;lt;?php next_posts_link( __( 'Next Page &amp;amp;raquo;', 'it-l10n-Builder' ) ); ?&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
				&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;!-- Previous/Next page navigation --&amp;gt;&lt;br /&gt;
		&amp;lt;?php if(function_exists('wp_paginate')) {&lt;br /&gt;
			wp_paginate();&lt;br /&gt;
		} ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add the following at the end of your theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.wp-paginate {&lt;br /&gt;
	font-family: &amp;quot;Lucida Grande&amp;quot;,Verdana,&amp;quot;Bitstream Vera Sans&amp;quot;,Arial,sans-serif !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.wp-paginate a {&lt;br /&gt;
	background: #FFFFFF !important; &lt;br /&gt;
	border: 1px solid #ccc !important; &lt;br /&gt;
	color: #21759B !important; &lt;br /&gt;
	margin-right: 3px !important; &lt;br /&gt;
	padding: 2px 4px !important;&lt;br /&gt;
	font-size: 10px !important;&lt;br /&gt;
	line-height: 22px !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.wp-paginate a:hover, .wp-paginate a:active {&lt;br /&gt;
	color: #D54E21 !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.wp-paginate .current  {&lt;br /&gt;
    background-color: #328AB2 !important;&lt;br /&gt;
    border: 1px solid #328AB2 !important;&lt;br /&gt;
    color: #FFFFFF !important;&lt;br /&gt;
    font-weight: bold !important;&lt;br /&gt;
	font-size: 10px !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.wp-paginate .prev, .wp-paginate .next {&lt;br /&gt;
	border: none !important;&lt;br /&gt;
	color: #2583AD !important;&lt;br /&gt;
	padding: 0 !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.wp-paginate .next:hover {&lt;br /&gt;
	border-bottom: 1px solid #D54E21 !important;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;ins&amp;gt;Note:&amp;lt;/ins&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''1.''' If you would like to display WP-Paginate navigation at the top of Posts page as well, paste&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!-- Previous/Next page navigation --&amp;gt;&lt;br /&gt;
	&amp;lt;div class=&amp;quot;paging-top clearfix&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;?php if(function_exists('wp_paginate')) {&lt;br /&gt;
		wp_paginate();&lt;br /&gt;
	} ?&amp;gt;&lt;br /&gt;
	&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
immediately above&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;?php if ( have_posts() ) : ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and add the following at the end of your theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.paging-top {&lt;br /&gt;
	margin-bottom: 1em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/topic/36134-issue-with-next-pagnation/#entry166917 Forum topic on using this plugin in Avail child theme.]&lt;br /&gt;
&lt;br /&gt;
= How to hide the display of Sexy Bookmarks in widget content =&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of your theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.widget-content .shr-bookmarks {&lt;br /&gt;
    display: none !important;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Forum thread: http://ithemes.com/forum/index.php?/topic/11466-sexy-bookmarks-and-builder/&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Update&amp;lt;/u&amp;gt;: One of our users reported:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;there is extra padding under each widget content area as though it's making room for SB but not displaying it&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The solution is to change in Sexy Bookmarks options: &amp;quot;animate-expand multi-lined bookmarks&amp;quot;   to    NO&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/index.php?/topic/14363-deleting-social-sharing-icons-from-widget-content-areas/#p66932&lt;br /&gt;
&lt;br /&gt;
'''Update''' (January 18, 2012): [http://ithemes.com/forum/topic/22371-widgets-display-unwanted-related-posts-content/page__view__findpost__p__105841 Here] is our developer's explanation on the cause of this problem. It's not just Sexy Bookmarks, but other plugins like Yet Another Related Posts Plugin also does this.&lt;br /&gt;
&lt;br /&gt;
= Vertical menu with sub menus expanding on mouse hover =&lt;br /&gt;
&lt;br /&gt;
Demo: http://screenr.com/sLb&lt;br /&gt;
&lt;br /&gt;
'''1.''' Install [http://wordpress.org/extend/plugins/pixopoint-menu/ Pixopoint Menu Plugin].&lt;br /&gt;
&lt;br /&gt;
'''2.''' Drag the items (usually Categories or Pages) that you would like to show in the vertical menu at the plugin's settings page under &amp;quot;Main menu items&amp;quot;. If none of the menu items children should be visible by default, i.e. the menu should be collapsed initially, expand the item and tick &amp;quot;Single dropdown?&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[Image:Pixopoint1.png|200px|none]]&lt;br /&gt;
&lt;br /&gt;
'''3.''' Go to Settings tab and disable stylesheet. Enable arrow mark-up.&lt;br /&gt;
&lt;br /&gt;
'''4.''' Install [http://wordpress.org/extend/plugins/php-widgetify/ PHP Widgetify] plugin.&lt;br /&gt;
&lt;br /&gt;
'''5.''' Go to Appearance -&amp;gt; Widgets. Drag the PHP Widgetify widget into widget area where you want the vertical menu to appear and paste the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php if (function_exists('pixopoint_menu')) {pixopoint_menu();} ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= How to show n number of posts on front page only =&lt;br /&gt;
&lt;br /&gt;
If you would like to have a certain number of posts shown on the front page while keeping the number of posts shown in other views like categories and archives to the number defined for &amp;quot;Blog pages show at most&amp;quot; at Settings -&amp;gt; Reading, follow this:&lt;br /&gt;
&lt;br /&gt;
'''1.''' Make a copy of child theme's index.php as name it as home.php. If the child theme does not contain index.php, copy it from parent Builder directory.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Edit home.php&lt;br /&gt;
&lt;br /&gt;
Add&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts(&amp;quot;posts_per_page=3&amp;amp;paged=$paged&amp;quot;); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[This code is set to show 3 posts (the most recent ones). Change the value of ''posts_per_page'' from 3 to the number of your choice]&lt;br /&gt;
&lt;br /&gt;
above&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php if ( have_posts() ) : ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= How to show posts from a specific category on front page only =&lt;br /&gt;
&lt;br /&gt;
If you would like to restrict posts from a specific category on the front page while not affecting the posts shown in other views like categories and archives, follow this:&lt;br /&gt;
&lt;br /&gt;
'''1.''' Make a copy of child theme's index.php as name it as home.php. If the child theme does not contain index.php, copy it from parent Builder directory.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Edit home.php&lt;br /&gt;
&lt;br /&gt;
Add&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts(&amp;quot;cat=3&amp;amp;paged=$paged&amp;quot;); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[This code is set to show all posts from category 3. Change the value of ''cat'' from 3 to ID of your desired category]&lt;br /&gt;
&lt;br /&gt;
above&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php if ( have_posts() ) : ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= How to show posts from certain category on a separate Page =&lt;br /&gt;
&lt;br /&gt;
The instructions below outline how to have all posts from a category named ''Movies'' (ID = 92 ) on a Page titled ''Movies Page'' (slug = ''movies-page'').&lt;br /&gt;
&lt;br /&gt;
'''1.''' Ensure that [http://codex.wordpress.org/Using_Permalinks pretty permalinks] are enabled. Create a Page titled ''Movies Page''. Do not enter any content in the Page. Just enter the title and publish.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Create a copy of '''index.php''' present in your child theme directory and rename it as page-''movies-page''.php. If index.php is not present in the child theme, copy it from parent Builder directory. page-movies-page.php is the custom template which will automatically be used for display of the Page titled ''Movies Page'' ([http://codex.wordpress.org/File:Template_Hierarchy.png Reference]).&lt;br /&gt;
&lt;br /&gt;
'''3.''' Edit page-movies-page.php.&lt;br /&gt;
&lt;br /&gt;
Add&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts(&amp;quot;cat=92&amp;amp;paged=$paged&amp;quot;); ?&amp;gt;&lt;br /&gt;
&amp;lt;?php // set $more to 0 in order to only get the first part of the post&lt;br /&gt;
			global $more;&lt;br /&gt;
			$more = 0; ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[This code is set to show all posts from category 92. Change the value of ''cat'' from 92 to ID of your desired category]&lt;br /&gt;
&lt;br /&gt;
above&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;?php while ( have_posts() ) : // The Loop ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Update'''&lt;br /&gt;
&lt;br /&gt;
If you would like to just show linked post titles on the Page, follow this:&lt;br /&gt;
&lt;br /&gt;
[[File:Linked-post-titles.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Edit page-movies-page.php.&lt;br /&gt;
&lt;br /&gt;
Delete&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!-- post content --&amp;gt;&lt;br /&gt;
						&amp;lt;div class=&amp;quot;entry-content clearfix&amp;quot;&amp;gt;&lt;br /&gt;
							&amp;lt;?php the_content(); ?&amp;gt;&lt;br /&gt;
						&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
								&amp;lt;h1 class=&amp;quot;entry-title&amp;quot;&amp;gt;&amp;lt;?php the_title(); ?&amp;gt;&amp;lt;/h1&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
								&amp;lt;h3 class=&amp;quot;entry-title&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php the_permalink(); ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php the_title(); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Builder and Gravity Forms =&lt;br /&gt;
&lt;br /&gt;
To ensure that Gravity Forms plugin's styling gets applied in Builder (or any other WordPress theme), ensure that &amp;quot;Output CSS&amp;quot; is set to Yes in the plugin's settings.&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/index.php?/topic/12965-builder-gravity-forms-css-conflict-for-validation-messages/&lt;br /&gt;
&lt;br /&gt;
= How to let visitors control font size =&lt;br /&gt;
&lt;br /&gt;
There's a plugin called WP-chgFontSize which does not seem to be supported any more. It allows users to dynamically change the font size. Unfortunately it does not seem to work in our testing (see [http://ithemes.com/forum/index.php?/topic/12873-text-resizing-recommendation/ this]).&lt;br /&gt;
&lt;br /&gt;
A working alternative is using the method provided [http://www.niss.fr/custos/gestion-de-la-taille-de-police/ here].&lt;br /&gt;
&lt;br /&gt;
[[Image:Font-size.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
Follow these steps (Note: tested only on Default child theme)&lt;br /&gt;
&lt;br /&gt;
'''1.''' Paste [http://d.pr/c41T this] code in a text file and save it as textsize.js. Upload this file to &amp;quot;js&amp;quot; directory (create one, if it doesn't exist) under the child theme.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Add the following before closing PHP tag in child theme's functions.php:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function my_theme_scripts() {&lt;br /&gt;
  &lt;br /&gt;
  if ( !is_admin() ) { // instruction to only load if it is not the admin area&lt;br /&gt;
   // register your script location, dependencies and version&lt;br /&gt;
   &lt;br /&gt;
   wp_register_script('custom_script',&lt;br /&gt;
       get_bloginfo('stylesheet_directory') . '/js/textsize.js');&lt;br /&gt;
   // enqueue the script&lt;br /&gt;
   wp_enqueue_script('custom_script');&lt;br /&gt;
}&lt;br /&gt;
}   &lt;br /&gt;
 &lt;br /&gt;
add_action('init', 'my_theme_scripts');&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add the following at the end of your theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#textsize {&lt;br /&gt;
	opacity: 0.4;&lt;br /&gt;
	float: right;&lt;br /&gt;
	margin-right: 0;&lt;br /&gt;
	margin-top: 3px;&lt;br /&gt;
	padding: 0;&lt;br /&gt;
	width: 155px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#textsize:hover {&lt;br /&gt;
	opacity: 1;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#textsize a {&lt;br /&gt;
	text-decoration: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''4.''' Paste the following HTML wherever (for example: in a text widget or HTML module's text area) you want it to appear on the site:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:html;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;p id=&amp;quot;textsize&amp;quot;&amp;gt;&lt;br /&gt;
Font size: &amp;lt;a href=&amp;quot;index.php&amp;quot; onclick=&amp;quot;changeFontSize(1);return false;&amp;quot; title=&amp;quot;Increase font size&amp;quot;&amp;gt;A+&amp;lt;/a&amp;gt;  &amp;lt;a href=&amp;quot;index.php&amp;quot; onclick=&amp;quot;changeFontSize(-1);return false;&amp;quot; title=&amp;quot;Decrease font size&amp;quot;&amp;gt;A-&amp;lt;/a&amp;gt;  &amp;lt;a href=&amp;quot;index.php&amp;quot; onclick=&amp;quot;resetFontSize(); return false;&amp;quot; title=&amp;quot;Default font size&amp;quot;&amp;gt;A&amp;lt;/a&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= How to add a string of text at the top of Posts page? =&lt;br /&gt;
&lt;br /&gt;
[[Image:Blog-page-title.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
Edit the PHP file that's being used by the Posts page. This is usually child theme's index.php. If the layout used by the Posts page has an extension applied, it could be functions.php or index.php inside the extension's directory.&lt;br /&gt;
&lt;br /&gt;
Add the following immediately above &amp;lt;code&amp;gt;&amp;lt;?php if ( have_posts() ) : ?&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;?php if(is_home()) { ?&amp;gt;&lt;br /&gt;
		&amp;lt;div class=&amp;quot;blog-title&amp;quot;&amp;gt;This is my blog page&amp;lt;/div&amp;gt;&lt;br /&gt;
	&amp;lt;?php } ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
then add the following at the end of your theme's style.css (as an example):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.blog-title {&lt;br /&gt;
	font-family: 'Yanone Kaffeesatz', 'Trebuchet MS', arial, sans-serif;&lt;br /&gt;
	clear: both;&lt;br /&gt;
	color: #2C445E;&lt;br /&gt;
	font-weight: normal;&lt;br /&gt;
	font-size: 2.3em;&lt;br /&gt;
	line-height: 1em;&lt;br /&gt;
	text-shadow: 1px 2px 0px #CDCA71;&lt;br /&gt;
	margin-bottom: 1em;&lt;br /&gt;
	text-align: center;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Update: This can also be done using hooks. See [http://ithemes.com/forum/topic/29810-what-is-a-right-builder-hook-to-place-script-before-a-content-module/ this forum] post for an example.&lt;br /&gt;
&lt;br /&gt;
=How to add category nicenames in body class=&lt;br /&gt;
&lt;br /&gt;
[[Image:Category-body-class.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
In Builder (and in many other themes) by default the body class of a single post page does not contain the categories under which the post has been categorized.&lt;br /&gt;
&lt;br /&gt;
If you would like to apply a specific background to all single post pages that belong to say, &amp;quot;Recipes&amp;quot; category then by using the following code &amp;quot;recipes&amp;quot; will be one of the classes that gets applied to body class. Therefore we can target any element on a single post page belonging to &amp;quot;Recipes&amp;quot; category by prepending the CSS selector with &amp;quot;body.recipes&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Add the following before closing PHP tag in child theme's functions.php:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
// add category nicenames in body class&lt;br /&gt;
function category_id_class($classes) {&lt;br /&gt;
global $post;&lt;br /&gt;
foreach((get_the_category($post-&amp;gt;ID)) as $category)&lt;br /&gt;
$classes[] = $category-&amp;gt;category_nicename;&lt;br /&gt;
return $classes;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
add_filter('body_class', 'category_id_class');&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source: http://codex.wordpress.org/Function_Reference/body_class#Adding_More_Classes&lt;br /&gt;
&lt;br /&gt;
Note: In Builder, category/categories are present for post class by default.&lt;br /&gt;
&lt;br /&gt;
=How to delete comment author link in Builder=&lt;br /&gt;
&lt;br /&gt;
Before: [[Image:Comment-author-link-before-2.png]]&lt;br /&gt;
&lt;br /&gt;
After: [[Image:Comment-author-link-after.png]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Copy comments.php from parent Builder theme directory into the child theme directory. Edit this file.&lt;br /&gt;
&lt;br /&gt;
Replace&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php wp_list_comments(); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php wp_list_comments( array( 'callback' =&amp;gt; 'builder_comment' ) ); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''2.''' Edit child theme's functions.php. If the child theme does not have functions.php, create a new file having opening and closing PHP tags, name it as functions.php and upload it to child theme directory.&lt;br /&gt;
&lt;br /&gt;
Add the following before closing PHP tag:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
if ( ! function_exists( 'builder_comment' ) ) :&lt;br /&gt;
/**&lt;br /&gt;
 * Template for comments and pingbacks.&lt;br /&gt;
 *&lt;br /&gt;
 * Used as a callback by wp_list_comments() for displaying the comments. *&lt;br /&gt;
 * &lt;br /&gt;
 */&lt;br /&gt;
function builder_comment( $comment, $args, $depth ) {&lt;br /&gt;
	$GLOBALS['comment'] = $comment;&lt;br /&gt;
	switch ( $comment-&amp;gt;comment_type ) :&lt;br /&gt;
		case '' :&lt;br /&gt;
	?&amp;gt;&lt;br /&gt;
	&amp;lt;li &amp;lt;?php comment_class(); ?&amp;gt; id=&amp;quot;li-comment-&amp;lt;?php comment_ID(); ?&amp;gt;&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;div id=&amp;quot;comment-&amp;lt;?php comment_ID(); ?&amp;gt;&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;div class=&amp;quot;comment-author vcard&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;?php echo get_avatar( $comment, 32 ); ?&amp;gt;&lt;br /&gt;
			&amp;lt;?php printf( __( '%s &amp;lt;span class=&amp;quot;says&amp;quot;&amp;gt;says:&amp;lt;/span&amp;gt;', 'builder' ), sprintf( '&amp;lt;cite class=&amp;quot;fn&amp;quot;&amp;gt;%s&amp;lt;/cite&amp;gt;', get_comment_author() ) ); ?&amp;gt;&lt;br /&gt;
		&amp;lt;/div&amp;gt;&amp;lt;!-- .comment-author .vcard --&amp;gt;&lt;br /&gt;
		&amp;lt;?php if ( $comment-&amp;gt;comment_approved == '0' ) : ?&amp;gt;&lt;br /&gt;
			&amp;lt;em class=&amp;quot;comment-awaiting-moderation&amp;quot;&amp;gt;&amp;lt;?php _e( 'Your comment is awaiting moderation.', 'builder' ); ?&amp;gt;&amp;lt;/em&amp;gt;&lt;br /&gt;
			&amp;lt;br /&amp;gt;&lt;br /&gt;
		&amp;lt;?php endif; ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
		&amp;lt;div class=&amp;quot;comment-meta commentmetadata&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php echo esc_url( get_comment_link( $comment-&amp;gt;comment_ID ) ); ?&amp;gt;&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;?php&lt;br /&gt;
				/* translators: 1: date, 2: time */&lt;br /&gt;
				printf( __( '%1$s at %2$s', 'builder' ), get_comment_date(),  get_comment_time() ); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;?php edit_comment_link( __( '(Edit)', 'builder' ), ' ' );&lt;br /&gt;
			?&amp;gt;&lt;br /&gt;
		&amp;lt;/div&amp;gt;&amp;lt;!-- .comment-meta .commentmetadata --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
		&amp;lt;div class=&amp;quot;comment-body&amp;quot;&amp;gt;&amp;lt;?php comment_text(); ?&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
		&amp;lt;div class=&amp;quot;reply&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;?php comment_reply_link( array_merge( $args, array( 'depth' =&amp;gt; $depth, 'max_depth' =&amp;gt; $args['max_depth'] ) ) ); ?&amp;gt;&lt;br /&gt;
		&amp;lt;/div&amp;gt;&amp;lt;!-- .reply --&amp;gt;&lt;br /&gt;
	&amp;lt;/div&amp;gt;&amp;lt;!-- #comment-##  --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;?php&lt;br /&gt;
			break;&lt;br /&gt;
		case 'pingback'  :&lt;br /&gt;
		case 'trackback' :&lt;br /&gt;
	?&amp;gt;&lt;br /&gt;
	&amp;lt;li class=&amp;quot;post pingback&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;p&amp;gt;&amp;lt;?php _e( 'Pingback:', 'builder' ); ?&amp;gt; &amp;lt;?php comment_author(); ?&amp;gt;&amp;lt;?php edit_comment_link( __( '(Edit)', 'builder' ), ' ' ); ?&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
	&amp;lt;?php&lt;br /&gt;
			break;&lt;br /&gt;
	endswitch;&lt;br /&gt;
}&lt;br /&gt;
endif;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source: Twenty Ten theme&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add the following at the end of your theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
li.comment p {&lt;br /&gt;
	margin-bottom: 1.5em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= How to make a div always stick to the bottom of screen =&lt;br /&gt;
&lt;br /&gt;
The steps below outline how [http://ryanfait.com/sticky-footer/ this] method can be applied in Builder to have a div always stick to the bottom of screen.&lt;br /&gt;
&lt;br /&gt;
[[Image:Sticky-footer.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Add the following before closing PHP tag in your child theme's functions.php:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_action('builder_finish', 'add_custom_footer', 0 );&lt;br /&gt;
function add_custom_footer() { ?&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;div class=&amp;quot;footer&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;p&amp;gt;Copyright &amp;amp;copy; 2011&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Replace &amp;lt;pre class=&amp;quot;brush:html;&amp;quot;&amp;gt;&amp;lt;p&amp;gt;Copyright &amp;amp;copy; 2011&amp;lt;/p&amp;gt;&amp;lt;/pre&amp;gt; with HTML/PHP code to show whatever you want to display in the ''sticky footer''.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Edit your site's layout(s) and add a new HTML module at the end (as the last layout). Paste the following in module's text area:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:html;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;push&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Set &amp;quot;Remove Wrapper DIVs&amp;quot; to Yes.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add the following at the end of your child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
/* To make a div always stick to the bottom of screen */&lt;br /&gt;
&lt;br /&gt;
* {&lt;br /&gt;
    margin: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
html, body {&lt;br /&gt;
    height: 100%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-container-outer-wrapper {&lt;br /&gt;
    min-height: 100%;&lt;br /&gt;
    height: auto !important;&lt;br /&gt;
    height: 100%;&lt;br /&gt;
    margin: 0 auto -142px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.footer, .push {&lt;br /&gt;
    height: 142px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.footer {&lt;br /&gt;
    background: url(&amp;quot;http://ryanfait.com/sticky-footer/footer.jpg&amp;quot;) no-repeat 0 0;&lt;br /&gt;
    margin: 0 auto;&lt;br /&gt;
    position: relative;&lt;br /&gt;
    width: 700px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.footer p {&lt;br /&gt;
	margin-top: 0;&lt;br /&gt;
	margin-bottom: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Change background and width of .footer in the above to your desired values.&lt;br /&gt;
&lt;br /&gt;
= How to show comment form and comments list on Posts page =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Show-comments-in-index-before.png&lt;br /&gt;
File:Show-comments-in-index-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''1.''' Edit your child theme's index.php. If it is not present, copy index.php from parent Builder directory into the child theme directory and edit it.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Replace&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php comments_template(); // include comments template ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php global $withcomments; $withcomments = true; comments_template(); // include comments template ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''3.''' [Optional] Delete the lines that display text similar to &amp;quot;Comments (0)&amp;quot;. These would be:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php do_action( 'builder_comments_popup_link', '&amp;lt;span class=&amp;quot;meta-comments&amp;quot;&amp;gt;&amp;amp;middot; ', '&amp;lt;/span&amp;gt;', __( 'Comments %s', 'it-l10n-Builder' ), __( '(0)', 'it-l10n-Builder' ), __( '(1)', 'it-l10n-Builder' ), __( '(%)', 'it-l10n-Builder' ) ); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php do_action( 'builder_comments_popup_link', '&amp;lt;div class=&amp;quot;alignright&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;comments&amp;quot;&amp;gt;', '&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;', __( 'Comments %s', 'it-l10n-Builder' ), __( '(0)', 'it-l10n-Builder' ), __( '(1)', 'it-l10n-Builder' ), __( '(%)', 'it-l10n-Builder' ) ); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://wordpress.org/support/topic/showing-comments-on-homepage-with-withcomments-not-working-for-me?replies=3#post-2069599 Source].&lt;br /&gt;
&lt;br /&gt;
= How to place banner/google ad on top of Rotating Images =&lt;br /&gt;
&lt;br /&gt;
'''Screenshot'''&lt;br /&gt;
&lt;br /&gt;
[[Image:Ad-on-top-of-rotating-images.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
'''Steps'''&lt;br /&gt;
&lt;br /&gt;
'''1.''' Add a widget bar module having widget width of 100% in layout.&lt;br /&gt;
&lt;br /&gt;
[[File:RI-wbm.png]]&lt;br /&gt;
&lt;br /&gt;
Save the module's settings.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Below that add a HTML module with your ad code wrapped in &amp;lt;pre class=&amp;quot;brush:html;&amp;quot;&amp;gt;&amp;lt;div id=&amp;quot;google-ad&amp;quot;&amp;gt;&amp;lt;/pre&amp;gt; and &amp;lt;pre class=&amp;quot;brush:html;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/pre&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:html;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div id=&amp;quot;google-ad&amp;quot;&amp;gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;!--&lt;br /&gt;
google_ad_client = &amp;quot;ca-pub-1097062987503577&amp;quot;;&lt;br /&gt;
/* 468x60, created 12/30/08 */&lt;br /&gt;
google_ad_slot = &amp;quot;4793151765&amp;quot;;&lt;br /&gt;
google_ad_width = 468;&lt;br /&gt;
google_ad_height = 60;&lt;br /&gt;
//--&amp;gt;&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&lt;br /&gt;
src=&amp;quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/script&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
WARNING: It might be against Google's TOS to place ads on top of static image/rotating images. Please get this clarified before you proceed further with the rest of this article if you are planning to use Google's ads.&lt;br /&gt;
&lt;br /&gt;
Set Remove Wrapper DIVs to Yes.&lt;br /&gt;
&lt;br /&gt;
[[Image:Mms-html-module-ad.png|600px|none]]&lt;br /&gt;
&lt;br /&gt;
Save the module's settings.&lt;br /&gt;
&lt;br /&gt;
Save the layout.&lt;br /&gt;
&lt;br /&gt;
'''3.''' At Appearance -&amp;gt; Widgets, drag Rotating Images widget into the widget area of widget bar module added in step 1.&lt;br /&gt;
&lt;br /&gt;
[[File:Dragging-widget-into-widgetarea.png]]&lt;br /&gt;
&lt;br /&gt;
'''4.''' Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 .widget, .builder-module-1 .builder-module-sidebar  {&lt;br /&gt;
	padding: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#google-ad {&lt;br /&gt;
	position: absolute;&lt;br /&gt;
	right: 0;&lt;br /&gt;
	top: 50px;&lt;br /&gt;
	margin-right: 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-container  {&lt;br /&gt;
	position: relative;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: Change &amp;quot;1&amp;quot; in .builder-module-1 to the position of widget bar module in which Rotating Images has been placed.&lt;br /&gt;
&lt;br /&gt;
= How to create a widget bar section having more than 5 sidebars =&lt;br /&gt;
&lt;br /&gt;
See http://ithemes.com/forum/index.php?/topic/12248-ionic-green-add-and-extra-widget-to-5-multi-widget/#p57377&lt;br /&gt;
&lt;br /&gt;
= How to add hover effects for images like in Ionic =&lt;br /&gt;
&lt;br /&gt;
Visit [http://demos.ithemes.com/ionic/ Ionic demo site] to observe the hover effect.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Add the following before closing PHP tag in child theme's [http://ithemes.com/codex/page/Builder_Frequently_Asked_Questions#Where_is_functions.php.3F functions.php]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
wp_enqueue_script( 'jquery' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''2.''' Go to My Theme -&amp;gt; Settings.&lt;br /&gt;
&lt;br /&gt;
Click on Analytics and JavaScript Code.&lt;br /&gt;
&lt;br /&gt;
Paste the following in the text area under ''List any JavaScript or other code to be manually inserted in the site's footer just above the &amp;lt;/body&amp;gt; tag in the input below.'':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:html;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
			jQuery(document).ready(function() {&lt;br /&gt;
				jQuery(&amp;quot;img&amp;quot;).hover(&lt;br /&gt;
					function () {&lt;br /&gt;
						jQuery(this).stop().fadeTo(&amp;quot;fast&amp;quot;, 0.7);&lt;br /&gt;
					},&lt;br /&gt;
					function () {&lt;br /&gt;
						jQuery(this).stop().fadeTo(&amp;quot;fast&amp;quot;, 1);&lt;br /&gt;
					}&lt;br /&gt;
				);&lt;br /&gt;
			});&lt;br /&gt;
		&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Save Settings.&lt;br /&gt;
&lt;br /&gt;
'''Update on May 29, 2012'''&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/topic/28164-image-flicker-on-hover/page__view__findpost__p__130337 An alternative CSS3 solution (forum topic)]&lt;br /&gt;
&lt;br /&gt;
= How to show excerpt of a Page with title and its featured image in a widget =&lt;br /&gt;
&lt;br /&gt;
[[Image:2011-06-26 08-37-59.png|800px|none]]&lt;br /&gt;
&lt;br /&gt;
While it is possible to use [http://justintadlock.com/archives/2009/03/15/query-posts-widget-wordpress-plugin Query Posts Widget] plugin, it will not give us complete control like the code method below.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Install and activate [http://wordpress.org/extend/plugins/php-widgetify/ PHP Widgetify] plugin.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Go to Appearance -&amp;gt; Widgets. Drag a PHP Widgetify widget into the widget area. Paste the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php if ( have_posts() ) : ?&amp;gt;&lt;br /&gt;
&amp;lt;?php query_posts( 'pagename=why-custom-framing' ); ?&amp;gt;&lt;br /&gt;
		&amp;lt;?php while ( have_posts() ) : // The Loop ?&amp;gt;&lt;br /&gt;
			&amp;lt;?php the_post(); ?&amp;gt;&lt;br /&gt;
		&amp;lt;div class=&amp;quot;widget-post&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;?php /*the_author_posts_link();*/ ?&amp;gt;&lt;br /&gt;
			&amp;lt;?php /*the_time(__('l, F j, Y', 'Builder'));*/ ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h4 id=&amp;quot;post-&amp;lt;?php the_ID(); ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php the_permalink() ?&amp;gt;&amp;quot; rel=&amp;quot;bookmark&amp;quot; title=&amp;quot;&amp;lt;?php the_title(); ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php the_title(); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/h4&amp;gt;&lt;br /&gt;
			&lt;br /&gt;
			&amp;lt;?php if (has_post_thumbnail()) { ?&amp;gt;&lt;br /&gt;
			&amp;lt;div class=&amp;quot;widget-thumbnail&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;a href=&amp;quot;&amp;lt;?php the_permalink() ?&amp;gt;&amp;quot; rel=&amp;quot;bookmark&amp;quot; title=&amp;quot;&amp;lt;?php the_title_attribute(); ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php the_post_thumbnail( 'widget-thumbnail' ); ?&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
			&amp;lt;/div&amp;gt;&lt;br /&gt;
			&amp;lt;?php } ?&amp;gt;			&lt;br /&gt;
			&lt;br /&gt;
			&amp;lt;!--post text with the read more link --&amp;gt;&lt;br /&gt;
			&amp;lt;div class=&amp;quot;post-content&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;?php the_excerpt(); ?&amp;gt;&lt;br /&gt;
			&amp;lt;/div&amp;gt;&lt;br /&gt;
		&amp;lt;/div&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
	&amp;lt;?php endwhile; // end of one post ?&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
	&amp;lt;?php else : // do not delete ?&amp;gt;&lt;br /&gt;
		&amp;lt;?php do_action( 'builder_template_show_not_found' ); ?&amp;gt;&lt;br /&gt;
	&amp;lt;?php endif; // do not delete ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above, ''why-custom-framing'' is the slug of the Page whose excerpt should be displayed in the widget.&lt;br /&gt;
&lt;br /&gt;
[[File:Php-widget-show-page.png]]&lt;br /&gt;
&lt;br /&gt;
Reference: http://codex.wordpress.org/Class_Reference/WP_Query#Post_.26_Page_Parameters&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add the following before closing PHP tag in child theme's functions.php:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
		add_image_size('widget-thumbnail', 100, 100, true);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''4.''' Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.widget .widget-thumbnail {&lt;br /&gt;
    float: left;&lt;br /&gt;
    margin-right: 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.widget .post-content {&lt;br /&gt;
    clear: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= How to add 'Leave a Comment' link to the left of Comments(#) in Posts page =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Screenshot&amp;lt;/u&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
[[File:Leave-a-comment.png]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=200px caption=&amp;quot;Before and After&amp;quot;&amp;gt;&lt;br /&gt;
File:Adding-leave-a-comment-before.png&lt;br /&gt;
File:Adding-leave-a-comment-after.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Steps&amp;lt;/u&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
'''1.''' Edit child theme's index.php.&lt;br /&gt;
&lt;br /&gt;
Change&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
					&amp;lt;?php do_action( 'builder_comments_popup_link', '&amp;lt;div class=&amp;quot;alignright&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;comments&amp;quot;&amp;gt;', '&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;', __( 'Comments %s', 'it-l10n-Builder' ), __( '(0)', 'it-l10n-Builder' ), __( '(1)', 'it-l10n-Builder' ), __( '(%)', 'it-l10n-Builder' ) ); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php do_action( 'builder_comments_popup_link', '&amp;lt;div class=&amp;quot;my-alignright&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;my-comments&amp;quot;&amp;gt;', '&amp;lt;/span&amp;gt;&amp;lt;/div&amp;gt;', __( 'Comments %s', 'it-l10n-Builder' ), __( '(0)', 'it-l10n-Builder' ), __( '(1)', 'it-l10n-Builder' ), __( '(%)', 'it-l10n-Builder' ) ); ?&amp;gt;&lt;br /&gt;
					&amp;lt;div class=&amp;quot;alignright&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php the_permalink() ?&amp;gt;#respond&amp;quot;&amp;gt;Leave a Comment&amp;lt;/a&amp;gt;&amp;amp;nbsp;&amp;amp;nbsp;&amp;amp;#149;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''2.''' Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.meta-bottom .my-alignright {&lt;br /&gt;
    margin: 0 0 1.5em 0.5em;&lt;br /&gt;
    float: right;&lt;br /&gt;
    text-align: right;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= How to stop Builder internal code from appearing in page source code =&lt;br /&gt;
&lt;br /&gt;
[[Image:Builder-code-in-source.png|560px|none]]&lt;br /&gt;
&lt;br /&gt;
If code similar to above appears when you view the source of your Builder site, edit child theme's functions.php and remove this line:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
echo &amp;quot;&amp;lt;!-- &amp;quot; . print_r( $fields, true ) . &amp;quot;--&amp;gt;\n&amp;quot;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= How to link the content of a widget to a URL =&lt;br /&gt;
&lt;br /&gt;
Wrap the content of widget with &amp;lt;pre class=&amp;quot;brush:html;&amp;quot;&amp;gt;&amp;lt;div onclick=&amp;quot;location.href='http://target-url.com/'&amp;quot; style=&amp;quot;cursor:pointer;&amp;quot;&amp;gt;&amp;lt;/pre&amp;gt; and &amp;lt;pre class=&amp;quot;brush:html;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/14974-make-background-image-linkable/#p70171 Example].&lt;br /&gt;
&lt;br /&gt;
= How to automatically add a sub menu indicator to 1st level menu items in nav bar =&lt;br /&gt;
&lt;br /&gt;
'''Update on Wednesday, April 24, 2013''': [http://buildersnippets.com/how-to-automatically-add-sub-menu-indicators-for-menu-items/ Here] is the latest method.&lt;br /&gt;
&lt;br /&gt;
-------------&lt;br /&gt;
&lt;br /&gt;
Before: [[File:Jquery-submenuindicator-before.png]]&lt;br /&gt;
&lt;br /&gt;
After: [[File:Jquery-submenuindicator-after.png]]&lt;br /&gt;
&lt;br /&gt;
== jQuery Method ==&lt;br /&gt;
&lt;br /&gt;
Note: This method works for all 4 types of navigation modules (Builder Settings Pages, Builder Settings Categories, WordPress Pages, Custom Menu).&lt;br /&gt;
&lt;br /&gt;
'''1.''' If child theme's functions.php already does not have the following, add it before closing PHP tag:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
		wp_enqueue_script( 'jquery' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''2.''' Go to My Theme -&amp;gt; Settings, click on 'Analytics and JavaScript Code'. Paste the following in the text area under 'List any JavaScript or other code to be manually inserted in the site's footer just above the &amp;lt;/body&amp;gt; tag in the input below.':&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:html;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
			jQuery(document).ready(function() {&lt;br /&gt;
jQuery(&amp;quot;.builder-module-navigation li:has(ul)&amp;quot;).addClass(&amp;quot;arrow&amp;quot;);&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: If you would like this to work only for a specific navigation module, replace &amp;quot;.builder-module-navigation&amp;quot; with # followed by module's ID like so:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:html;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
			jQuery(document).ready(function() {&lt;br /&gt;
jQuery(&amp;quot;#builder-module-4e12b7145bfa8 li:has(ul)&amp;quot;).addClass(&amp;quot;arrow&amp;quot;);&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Scroll down the page and save settings.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation li.arrow {&lt;br /&gt;
	background: url(&amp;quot;http://k.min.us/ibDuJC.gif&amp;quot;) no-repeat center right;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: You might want to specify the URL of your desired sub menu indicator image in the above.&lt;br /&gt;
&lt;br /&gt;
== PHP Method ==&lt;br /&gt;
&lt;br /&gt;
Note: This method does not work in a navigation module. It only works when wp_nav_menu() is used like in a HTML module or a PHP widget.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Add the following before closing PHP tag in your child theme's [http://ithemes.com/codex/page/Builder_Frequently_Asked_Questions#Where_is_functions.php.3F functions.php]:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
class Arrow_Walker_Nav_Menu extends Walker_Nav_Menu {&lt;br /&gt;
    function display_element($element, &amp;amp;$children_elements, $max_depth, $depth=0, $args, &amp;amp;$output) {&lt;br /&gt;
        $id_field = $this-&amp;gt;db_fields['id'];&lt;br /&gt;
        if (!empty($children_elements[$element-&amp;gt;$id_field])) { &lt;br /&gt;
            $element-&amp;gt;classes[] = 'arrow'; //enter any classname you like here!&lt;br /&gt;
        }&lt;br /&gt;
        Walker_Nav_Menu::display_element($element, $children_elements, $max_depth, $depth, $args, $output);&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''2.''' Edit your layout, add a HTML module, paste the following code and enable PHP:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php wp_nav_menu( array('walker' =&amp;gt; new Arrow_Walker_Nav_Menu, 'menu' =&amp;gt; 'Main Menu', 'menu_class' =&amp;gt; 'builder-module-navigation') ); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Change 'Main Menu' in the above to the name of your custom menu.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
'''a.'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.meta-bottom .my-alignright {&lt;br /&gt;
    margin: 0 0 1.5em 0.5em;&lt;br /&gt;
    float: right;&lt;br /&gt;
    text-align: right;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''b.'''&lt;br /&gt;
&lt;br /&gt;
[Optional - tested in HeatWave child theme] Also add the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-1 .builder-module-navigation {&lt;br /&gt;
	height: 30px;&lt;br /&gt;
	margin-left: 0;&lt;br /&gt;
	border-left: none !important;&lt;br /&gt;
	border-right: none !important;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Change '1' in '.builder-module-1' in the above to the position of HTML module in the layout from top.&lt;br /&gt;
&lt;br /&gt;
== Meta ==&lt;br /&gt;
&lt;br /&gt;
Source: http://stackoverflow.com/questions/3558198/php-wordpress-add-arrows-to-parent-menus&lt;br /&gt;
&lt;br /&gt;
Forum topics:&lt;br /&gt;
&lt;br /&gt;
# http://ithemes.com/forum/index.php?/topic/9881-submenu-indicator/&lt;br /&gt;
# http://ithemes.com/forum/index.php?/topic/15843-arrow-on-menu-to-indicate-more-items/&lt;br /&gt;
&lt;br /&gt;
= How to add Register and Log in links at the top of your Builder site =&lt;br /&gt;
&lt;br /&gt;
[[File:Register-login.png|800px|thumb|none|Highlighted links will change to Site Admin and Log out for admins]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Edit your child theme's functions.php.&lt;br /&gt;
&lt;br /&gt;
Add the following at the end (before closing PHP tag, if present):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_action('builder_layout_engine_render_container', 'add_custom_header', 0 );&lt;br /&gt;
&lt;br /&gt;
function add_custom_header() { ?&amp;gt;&lt;br /&gt;
	&amp;lt;div id=&amp;quot;my_custom_header&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;ul id=&amp;quot;headerlinks&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;?php wp_register(); ?&amp;gt;&lt;br /&gt;
			&amp;lt;li&amp;gt;&amp;lt;?php wp_loginout(); ?&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
		&amp;lt;/ul&amp;gt;&lt;br /&gt;
	&amp;lt;/div&amp;gt;	&lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''2.''' Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#headerlinks li&lt;br /&gt;
{&lt;br /&gt;
	display: inline;&lt;br /&gt;
	list-style-type: none;&lt;br /&gt;
	padding-right: 20px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#my_custom_header {&lt;br /&gt;
	width: 960px;&lt;br /&gt;
	margin: 0 auto;&lt;br /&gt;
	position: relative;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#headerlinks {&lt;br /&gt;
	float: right;&lt;br /&gt;
	position: absolute;&lt;br /&gt;
	right: 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''3.''' At Settings -&amp;gt; General, place a tick mark in &amp;quot;Membership: Anyone can register&amp;quot; box.&lt;br /&gt;
&lt;br /&gt;
'''If you would like to show the links in a 100% wide horizontal bar at the top of site,'''&lt;br /&gt;
&lt;br /&gt;
[[File:Register-login-fluid.png|800px|thumb|none|So you want a login bar, ha?]]&lt;br /&gt;
&lt;br /&gt;
use this PHP:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_action('builder_layout_engine_render_container', 'add_custom_header', 0 );&lt;br /&gt;
&lt;br /&gt;
function add_custom_header() { ?&amp;gt;&lt;br /&gt;
	&amp;lt;div id=&amp;quot;my_custom_header_wrapper&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;div id=&amp;quot;my_custom_header&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;ul id=&amp;quot;headerlinks&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;?php wp_register(); ?&amp;gt;&lt;br /&gt;
				&amp;lt;li class=&amp;quot;last&amp;quot;&amp;gt;&amp;lt;?php wp_loginout(); ?&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
			&amp;lt;/ul&amp;gt;&lt;br /&gt;
		&amp;lt;/div&amp;gt;&lt;br /&gt;
	&amp;lt;/div&amp;gt;	&lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and this CSS:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#headerlinks li&lt;br /&gt;
{&lt;br /&gt;
	display: inline;&lt;br /&gt;
	list-style-type: none;&lt;br /&gt;
	padding-right: 20px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#my_custom_header_wrapper {&lt;br /&gt;
	background: #DDDDDD;&lt;br /&gt;
	height: 30px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#my_custom_header {&lt;br /&gt;
	width: 960px;&lt;br /&gt;
	margin: 0 auto;&lt;br /&gt;
	position: relative;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#headerlinks {&lt;br /&gt;
	float: right;&lt;br /&gt;
	position: absolute;&lt;br /&gt;
	right: 0;&lt;br /&gt;
	margin-top: 4px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
li.last {&lt;br /&gt;
	padding-right: 0 !important;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= jQuery Mega Menu in Builder =&lt;br /&gt;
&lt;br /&gt;
[http://www.designchemical.com/blog/index.php/wordpress-plugins/wordpress-plugin-jquery-drop-down-mega-menu-widget/ jQuery Drop Down Mega Menu Widget plugin] will allow you to quickly and easily create drop down mega menus from any WordPress custom menu. It has [http://www.designchemical.com/lab/demo-wordpress-jquery-mega-menu-plugin/ 8 built-in skins] (styles).&lt;br /&gt;
&lt;br /&gt;
For the purpose of this tutorial, let's add a 1-column widget bar module in our layout. Next go to Appearance -&amp;gt; Widgets and drag a jQuery Mega Menu widget into the widget area.&lt;br /&gt;
&lt;br /&gt;
[[File:JQueryMegaMenu-widget.png]]&lt;br /&gt;
&lt;br /&gt;
When we check the site (having BuilderChild-Default as the active theme), the sub menus will not appear by default.&lt;br /&gt;
&lt;br /&gt;
[[File:Jmm-menu-before.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
and depending on the child theme being used, there could be padding around the widget.&lt;br /&gt;
&lt;br /&gt;
[[File:Jmm-firebug1.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
To remove unwanted spacing around widget, the following has been added at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#dc_jqmegamenu_widget-3 {&lt;br /&gt;
    padding: 0; /* To remove the padding around widget - needed only in some child themes */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#builder-module-4e2cfbc65ee6f .builder-module-sidebar {&lt;br /&gt;
    padding-top: 0; /* To remove the top padding for the sidebar - needed only in some child themes */&lt;br /&gt;
    padding-bottom: 0; /* To remove the bottom padding for the sidebar - needed only in some child themes */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To make the submenus appear, we need to:&lt;br /&gt;
&lt;br /&gt;
# Set position of the widget as absolute and specify its width.&lt;br /&gt;
# Set the height for one of widget's parent div.&lt;br /&gt;
&lt;br /&gt;
So the final CSS would be:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#dc_jqmegamenu_widget-3 {&lt;br /&gt;
    padding: 0; /* To remove the padding around widget - needed only in some child themes */&lt;br /&gt;
    position: absolute;&lt;br /&gt;
    width: 1000px; /* Set this to width of layout in the case of 1-column widget bar module or whatever is the width of sidebar in which this widget is present */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#builder-module-4e2cfbc65ee6f .builder-module-sidebar {&lt;br /&gt;
    padding-top: 0; /* To remove the top padding for the sidebar - needed only in some child themes */&lt;br /&gt;
    padding-bottom: 0; /* To remove the bottom padding for the sidebar - needed only in some child themes */&lt;br /&gt;
    height: 40px; /* This value can be obtained by going to Computed tab in Firebug when this div is selected. See Screenshot A below. */&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above the ID of widget and layout must be changed to those on your site.&lt;br /&gt;
&lt;br /&gt;
[[File:Jmm-menu-after.png|800px|thumb|none|Screenshot showing fully working jQuery Mega Menu in Builder]]&lt;br /&gt;
&lt;br /&gt;
Screenshot A:&lt;br /&gt;
&lt;br /&gt;
[[File:Jmm-firebug2.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
That's it!&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: Instead of setting position of widget as absolute, we can set absolute position for either #menu-menu-1 or #dc_jqmegamenu_widget-3-item above it or #dc_jqmegamenu_widget-3. Remember to set the height for the chosen element's parent.&lt;br /&gt;
&lt;br /&gt;
[[File:Jmm-firebug3.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
This principle also applies when using similar dropdown menu plugins like Pixopoint. See # 4 at http://ithemes.com/forum/index.php?/topic/10927-help-with-custom-navigation/#p52256&lt;br /&gt;
&lt;br /&gt;
= How to add social media icons floating at top right =&lt;br /&gt;
&lt;br /&gt;
[[File:Adding-social-icons-site1.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[[File:Adding-social-icons-site2.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
* The icons will appear through out the site. It is not possible to restrict them to certain layouts when using this method.&lt;br /&gt;
* Please upload the png images to your own server and use them.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Edit your child theme's [http://ithemes.com/codex/page/Builder_Frequently_Asked_Questions#Where_is_functions.php.3F functions.php].&lt;br /&gt;
&lt;br /&gt;
Add the following at the end (before closing PHP tag, if present):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_action('builder_layout_engine_render_container', 'add_social_icons', 0 );&lt;br /&gt;
&lt;br /&gt;
function add_social_icons() { ?&amp;gt;&lt;br /&gt;
	&amp;lt;div class=&amp;quot;socialmedia-buttons-container&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;div class=&amp;quot;socialmedia-buttons&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;a target=&amp;quot;_blank&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;http://www.facebook.com/&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;fade&amp;quot; style=&amp;quot;opacity: 0.8; -moz-opacity: 0.8;&amp;quot; title=&amp;quot;Follow Us on Facebook&amp;quot; alt=&amp;quot;Follow Us on Facebook&amp;quot; src=&amp;quot;http://ithemes.com/builder/misc/social-media-icons/32/facebook.png&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
			&lt;br /&gt;
			&amp;lt;a target=&amp;quot;_blank&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;http://twitter.com/#!/&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;fade&amp;quot; style=&amp;quot;opacity: 0.8; -moz-opacity: 0.8;&amp;quot; title=&amp;quot;Follow Us on Twitter&amp;quot; alt=&amp;quot;Follow Us on Twitter&amp;quot; src=&amp;quot;http://ithemes.com/builder/misc/social-media-icons/32/twitter.png&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
			&lt;br /&gt;
			&amp;lt;a target=&amp;quot;_blank&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;http://www.yoursite.com/feed/&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;fade&amp;quot; style=&amp;quot;opacity: 0.8; -moz-opacity: 0.8;&amp;quot; title=&amp;quot;Follow Us on RSS&amp;quot; alt=&amp;quot;Follow Us on RSS&amp;quot; src=&amp;quot;http://ithemes.com/builder/misc/social-media-icons/32/rss.png&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&lt;br /&gt;
			&lt;br /&gt;
			&amp;lt;a target=&amp;quot;_blank&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;mailto: admin@yoursite.com&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;fade&amp;quot; style=&amp;quot;opacity: 0.8; -moz-opacity: 0.8;&amp;quot; title=&amp;quot;E-mail Us&amp;quot; alt=&amp;quot;E-mail Us&amp;quot; src=&amp;quot;http://ithemes.com/builder/misc/social-media-icons/32/email.png&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;		&lt;br /&gt;
		&amp;lt;/div&amp;gt;&lt;br /&gt;
	&amp;lt;/div&amp;gt;	&lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Adding-social-icons-editor.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''2.''' Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
/* Custom Styles For The Social Media Widget Icons */&lt;br /&gt;
&lt;br /&gt;
.socialmedia-buttons-container {&lt;br /&gt;
	width: 960px;&lt;br /&gt;
	margin: 0 auto;&lt;br /&gt;
	position: relative;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.socialmedia-buttons {&lt;br /&gt;
	float: right;&lt;br /&gt;
	position: absolute;&lt;br /&gt;
	right: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.socialmedia-buttons img {&lt;br /&gt;
	border: 0;&lt;br /&gt;
	/*border: 0 !important;*/&lt;br /&gt;
	margin-right: 10px !important;&lt;br /&gt;
	display: inline;&lt;br /&gt;
	-webkit-transition: all 0.2s ease-in;&lt;br /&gt;
	-moz-transition: all 0.2s ease-in;&lt;br /&gt;
	transition: all 0.2s ease;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.socialmedia-buttons a {&lt;br /&gt;
	background: none !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.socialmedia-buttons a:hover {&lt;br /&gt;
	text-decoration: none;&lt;br /&gt;
	border: 0;&lt;br /&gt;
}&lt;br /&gt;
.socialmedia-buttons img.fade:hover {&lt;br /&gt;
	opacity: 1 !important;&lt;br /&gt;
	-moz-opacity: 1 !important;&lt;br /&gt;
	-webkit-transition: all 0.2s ease-in;&lt;br /&gt;
	-moz-transition: all 0.2s ease-in;&lt;br /&gt;
	transition: all 0.2s ease;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source: http://wordpress.org/extend/plugins/social-media-widget/&lt;br /&gt;
&lt;br /&gt;
///**********************************************************///&lt;br /&gt;
&lt;br /&gt;
'''This is Page 1 of ''Plugin related and other generic customizations in Builder''. [http://ithemes.com/codex/page/Plugin_related_and_other_generic_customizations_2 Here] is Page 2.'''&lt;/div&gt;</summary>
		<author><name>Sridhar</name></author>	</entry>

	<entry>
		<id>http://ithemes.com/codex/page/Plugin_related_and_other_generic_customizations_2</id>
		<title>Plugin related and other generic customizations 2</title>
		<link rel="alternate" type="text/html" href="http://ithemes.com/codex/page/Plugin_related_and_other_generic_customizations_2"/>
				<updated>2013-04-24T06:35:24Z</updated>
		
		<summary type="html">&lt;p&gt;Sridhar: Added == How to set up a responsive Full Width slideshow in iThemes Builder ==&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''This is Page 2 of ''Plugin related and other generic customizations in Builder''. [http://ithemes.com/codex/page/Plugin_related_and_other_generic_customizations_in_Builder Here] is Page 1.'''&lt;br /&gt;
&lt;br /&gt;
== How to add social media icons in nav bar ==&lt;br /&gt;
&lt;br /&gt;
This can be done in at least 2 different ways. The primary difference between method 1 and 2 is that in method 2, left margin for first social icon has to be manually adjusted every time a menu item in the nav bar is changed. For this reason, '''method 1 is recommended'''.&lt;br /&gt;
&lt;br /&gt;
=== Method 1 ===&lt;br /&gt;
&lt;br /&gt;
[[File:2012-09-02 12-52-02.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Create (if you haven't already) a custom menu at Appearance -&amp;gt; Menus, which should appear in the nav bar.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Instead of a navigation module, use a PHP enabled HTML module having this sample code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php wp_nav_menu( array( 'menu' =&amp;gt; 'primary', 'menu_class' =&amp;gt; 'builder-module-navigation') ); ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;my-social-icons&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
    &amp;lt;li class=&amp;quot;social-icon&amp;quot;&amp;gt;&amp;lt;a target=&amp;quot;_blank&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;http://www.facebook.com/&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;fade&amp;quot; style=&amp;quot;opacity: 1; -moz-opacity: 1;&amp;quot; title=&amp;quot;Follow Us on Facebook&amp;quot; alt=&amp;quot;Follow Us on Facebook&amp;quot; src=&amp;quot;http://ithemes.com/builder/misc/social-media-icons/32/facebook.png&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
    &amp;lt;li class=&amp;quot;social-icon&amp;quot;&amp;gt;&amp;lt;a target=&amp;quot;_blank&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;http://twitter.com/#!/&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;fade&amp;quot; style=&amp;quot;opacity: 1; -moz-opacity: 1;&amp;quot; title=&amp;quot;Follow Us on Twitter&amp;quot; alt=&amp;quot;Follow Us on Twitter&amp;quot; src=&amp;quot;http://ithemes.com/builder/misc/social-media-icons/32/twitter.png&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
    &amp;lt;li class=&amp;quot;social-icon&amp;quot;&amp;gt;&amp;lt;a target=&amp;quot;_blank&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;http://www.yoursite.com/feed/&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;fade&amp;quot; style=&amp;quot;opacity: 1; -moz-opacity: 1;&amp;quot; title=&amp;quot;Follow Us on RSS&amp;quot; alt=&amp;quot;Follow Us on RSS&amp;quot; src=&amp;quot;http://ithemes.com/builder/misc/social-media-icons/32/rss.png&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
    &lt;br /&gt;
    &amp;lt;li class=&amp;quot;social-icon&amp;quot;&amp;gt;&amp;lt;a target=&amp;quot;_blank&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;mailto: admin@yoursite.com&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;fade&amp;quot; style=&amp;quot;opacity: 1; -moz-opacity: 1;&amp;quot; title=&amp;quot;E-mail Us&amp;quot; alt=&amp;quot;E-mail Us&amp;quot; src=&amp;quot;http://ithemes.com/builder/misc/social-media-icons/32/email.png&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt; &lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note:&lt;br /&gt;
&lt;br /&gt;
# In the above, change &amp;lt;code&amp;gt;primary&amp;lt;/code&amp;gt; to the slug of your custom menu. Ex.: If the name of your custom menu is &amp;quot;Main Menu&amp;quot;, it slug will be &amp;lt;code&amp;gt;main-menu&amp;lt;/code&amp;gt;.&lt;br /&gt;
# It is recommended to use the social icons from your WordPress site. You should download the icons referred to in the above code, upload them to your site and use those links instead.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add the following sample code at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
/************************************************************************&lt;br /&gt;
    For right floating social icons in a HTML module showing nav bar&lt;br /&gt;
*************************************************************************/&lt;br /&gt;
&lt;br /&gt;
.builder-module-2 {&lt;br /&gt;
	background: #FAA51B;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.menu-primary-container {&lt;br /&gt;
	float: left;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#menu-primary {&lt;br /&gt;
	margin-bottom: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
li.social-icon a, li.social-icon a:hover {&lt;br /&gt;
    padding: 1px 0 0 8px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
li.social-icon a:hover {&lt;br /&gt;
    opacity: 0.8;&lt;br /&gt;
    -moz-opacity: 0.8;&lt;br /&gt;
    background: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
li.social-icon:hover,&lt;br /&gt;
li.social-icon:hover a {&lt;br /&gt;
    background: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.my-social-icons {&lt;br /&gt;
	float: right;&lt;br /&gt;
	margin-right: 10px;&lt;br /&gt;
	padding-top: 8px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.my-social-icons ul {&lt;br /&gt;
	list-style: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.my-social-icons li {&lt;br /&gt;
	float: left;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: In the above&lt;br /&gt;
&lt;br /&gt;
a) Change the number (2) in &amp;lt;code&amp;gt;.builder-module-2&amp;lt;/code&amp;gt; so it is the module number from top in layout.&lt;br /&gt;
&lt;br /&gt;
b) In &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-2 {&lt;br /&gt;
	background: #FAA51B;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
replace &amp;lt;code&amp;gt;background: #FAA51B;&amp;lt;/code&amp;gt; with child theme's styles set for navigation module or in the case of Thinner, those of &amp;lt;code&amp;gt;.builder-module-navigation ul.menu&amp;lt;/code&amp;gt;. i.e.,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-2 {&lt;br /&gt;
	/*background: #FAA51B;*/&lt;br /&gt;
	overflow: hidden;&lt;br /&gt;
	background: #F6F6F6;&lt;br /&gt;
	background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#F6F6F6));&lt;br /&gt;
	background: -webkit-linear-gradient(#FFFFFF, #F6F6F6);&lt;br /&gt;
	background: -moz-linear-gradient(#FFFFFF, #F6F6F6);&lt;br /&gt;
	background: -ms-linear-gradient(#FFFFFF, #F6F6F6);&lt;br /&gt;
	background: -o-linear-gradient(#FFFFFF, #F6F6F6);&lt;br /&gt;
	background: linear-gradient(#FFFFFF, #F6F6F6);&lt;br /&gt;
	border: 1px solid #FFF;&lt;br /&gt;
	-webkit-border-radius: 10px;&lt;br /&gt;
	-khtml-border-radius: 10px;&lt;br /&gt;
	-moz-border-radius: 10px;&lt;br /&gt;
	border-radius: 10px;&lt;br /&gt;
	-webkit-box-shadow: #AAAAAA 1px 1px 2px;&lt;br /&gt;
	-moz-box-shadow: #AAAAAA 1px 1px 2px;&lt;br /&gt;
	-o-box-shadow: #AAAAAA 1px 1px 2px;&lt;br /&gt;
	-khtml-box-shadow: #AAAAAA 1px 1px 2px;&lt;br /&gt;
	box-shadow: #AAAAAA 1px 1px 2px;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
c) &amp;lt;code&amp;gt;primary&amp;lt;/code&amp;gt; to the slug of your custom menu. Ex.: If the name of your custom menu is &amp;quot;Main Menu&amp;quot;, it slug will be &amp;lt;code&amp;gt;main-menu&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Method 2 ===&lt;br /&gt;
&lt;br /&gt;
[[File:Social-icons-navbar.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Create (if you haven't already) a custom menu at Appearance -&amp;gt; Menus, which should appear in the nav bar.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Edit your child theme's [http://ithemes.com/codex/page/Builder_Frequently_Asked_Questions#Where_is_functions.php.3F functions.php].&lt;br /&gt;
&lt;br /&gt;
Add the following at the end (before closing PHP tag, if present):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_filter('wp_nav_menu_main-menu_items','add_images', 10, 2);&lt;br /&gt;
function add_images($items, $args) {&lt;br /&gt;
 &lt;br /&gt;
        $items .= '&amp;lt;li class=&amp;quot;social-icon&amp;quot; id=&amp;quot;first-social-icon&amp;quot;&amp;gt;&amp;lt;a target=&amp;quot;_blank&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;http://www.facebook.com/&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;fade&amp;quot; style=&amp;quot;opacity: 1; -moz-opacity: 1;&amp;quot; title=&amp;quot;Follow Us on Facebook&amp;quot; alt=&amp;quot;Follow Us on Facebook&amp;quot; src=&amp;quot;http://ithemes.com/builder/misc/social-media-icons/32/facebook.png&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;';&lt;br /&gt;
        &lt;br /&gt;
        $items .= '&amp;lt;li class=&amp;quot;social-icon&amp;quot;&amp;gt;&amp;lt;a target=&amp;quot;_blank&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;http://twitter.com/#!/&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;fade&amp;quot; style=&amp;quot;opacity: 1; -moz-opacity: 1;&amp;quot; title=&amp;quot;Follow Us on Twitter&amp;quot; alt=&amp;quot;Follow Us on Twitter&amp;quot; src=&amp;quot;http://ithemes.com/builder/misc/social-media-icons/32/twitter.png&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;';&lt;br /&gt;
        &lt;br /&gt;
        $items .= '&amp;lt;li class=&amp;quot;social-icon&amp;quot;&amp;gt;&amp;lt;a target=&amp;quot;_blank&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;http://www.yoursite.com/feed/&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;fade&amp;quot; style=&amp;quot;opacity: 1; -moz-opacity: 1;&amp;quot; title=&amp;quot;Follow Us on RSS&amp;quot; alt=&amp;quot;Follow Us on RSS&amp;quot; src=&amp;quot;http://ithemes.com/builder/misc/social-media-icons/32/rss.png&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;';&lt;br /&gt;
        &lt;br /&gt;
        $items .= '&amp;lt;li class=&amp;quot;social-icon&amp;quot;&amp;gt;&amp;lt;a target=&amp;quot;_blank&amp;quot; rel=&amp;quot;nofollow&amp;quot; href=&amp;quot;mailto: admin@yoursite.com&amp;quot;&amp;gt;&amp;lt;img class=&amp;quot;fade&amp;quot; style=&amp;quot;opacity: 1; -moz-opacity: 1;&amp;quot; title=&amp;quot;E-mail Us&amp;quot; alt=&amp;quot;E-mail Us&amp;quot; src=&amp;quot;http://ithemes.com/builder/misc/social-media-icons/32/email.png&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;';&lt;br /&gt;
        &lt;br /&gt;
    return $items;    &lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: In the above code, ''main-menu'' must be replaced with the slug of your custom menu. Ex.: If the name of your custom menu is ''Primary Navigation'', then&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_filter('wp_nav_menu_main-menu_items','add_images', 10, 2);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
must be changed to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_filter('wp_nav_menu_primary-navigation_items','add_images', 10, 2);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''2.''' Add the following at the end of child theme's style.css and customize it if necessary:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
/* Custom Styles For The Social Media Widget Icons in Navigation */&lt;br /&gt;
&lt;br /&gt;
li#first-social-icon {&lt;br /&gt;
    margin-left: 355px; /* Adjust this value so the icons are positioned at your desired location. */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* li.social-icon {&lt;br /&gt;
    height: 36px;&lt;br /&gt;
} */ /* Needed only in certain themes like Traverse */&lt;br /&gt;
&lt;br /&gt;
li.social-icon a, li.social-icon a:hover {&lt;br /&gt;
    padding: 1px 0 0 8px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
li.social-icon a:hover {&lt;br /&gt;
    opacity: 0.8;&lt;br /&gt;
    -moz-opacity: 0.8;&lt;br /&gt;
    background: none;    &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
li.social-icon:hover,&lt;br /&gt;
li.social-icon:hover a {&lt;br /&gt;
    background: none;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That's it!&lt;br /&gt;
&lt;br /&gt;
This method is also explained [http://ithemesbuilder.com/how-to-add-a-items-to-builders-navigation-menus/ here].&lt;br /&gt;
&lt;br /&gt;
Sample implementations:&lt;br /&gt;
&lt;br /&gt;
'''1.''' Traverse with round icons:&lt;br /&gt;
&lt;br /&gt;
[[File:2011-11-26 10-27-16.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/index.php?/topic/20491-builder-traverse-theme-navigation-removing-block-behind-icons/#p96994 Forum topic]&lt;br /&gt;
&lt;br /&gt;
== How to display Posts from a specific category on a Page in Magazine Extension style ==&lt;br /&gt;
&lt;br /&gt;
[[File:Page-mag-style.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
The instructions below outline how to have all posts from a category named ''Issues'' (ID = 18) appear on a Page titled ''Issues List'' (slug = ''issues-list'').&lt;br /&gt;
&lt;br /&gt;
'''1.''' Ensure that [http://codex.wordpress.org/Using_Permalinks pretty permalinks] are enabled. Create a Page titled ''Issues''. Do not enter any content in the Page. Just enter the title and publish.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Save [http://d.pr/HBZR this] code as page-issues-list.php. (i.e., page-''&amp;lt;&amp;lt;slug&amp;gt;&amp;gt;''.php)&lt;br /&gt;
&lt;br /&gt;
# Set a title for this Page in line 12.&lt;br /&gt;
# Edit the category ID in line 21.&lt;br /&gt;
&lt;br /&gt;
Upload this file to child theme directory.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Copy ''lib'' directory from parent Builder/extensions/magazine directory into child theme directory.&lt;br /&gt;
&lt;br /&gt;
'''4.''' Add [http://d.pr/ns9k this] at the end of child theme's style.css.&lt;br /&gt;
&lt;br /&gt;
That's it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: If a layout is applied to this Page, ensure that it (the layout) does not have an extension applied.&lt;br /&gt;
&lt;br /&gt;
== How to use CSS3 PIE ==&lt;br /&gt;
&lt;br /&gt;
[http://css3pie.com/ PIE] stands for Progressive Internet Explorer. It is an IE attached behavior which, when applied to an element, allows IE to recognize and display a number of CSS3 properties.&lt;br /&gt;
&lt;br /&gt;
It is used to get CSS3 properties like ''border-radius'' working in IE older than version 9.&lt;br /&gt;
&lt;br /&gt;
'''Follow the steps below to make CSS3 PIE work in Builder''':&lt;br /&gt;
&lt;br /&gt;
'''Update on July 11, 2012''': Builder provides IE browser specific IDs for the html element. These are ie7, ie8 and ie9. It is thus possible to write IE 7, IE 8 and IE 9 specific CSS. [http://ithemes.com/forum/topic/30017-comment-form-text-area-weird-format-in-ie/page__view__findpost__p__139158 This] forum topic provides an example where post comment text area (which already has &amp;lt;code&amp;gt;border-radius&amp;lt;/code&amp;gt; set in style.css) can be made to show rounded corners in IE 8 using CSS3 PIE. The alternate method listed below also works.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Download the latest version of CSS3 PIE from [http://css3pie.com/download-latest here].&lt;br /&gt;
&lt;br /&gt;
'''2.''' Extract the zip flle and upload ''PIE.htc'' to any web reachable directory.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
public_html/assets/PIE.htc&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add &amp;lt;code&amp;gt;position: relative;&amp;lt;/code&amp;gt; style to all those selectors for which you would like to use CSS3 PIE. You will of course be specifying border-radius/box-shadow etc. properties (which are supported by CSS3 PIE).&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#text-6 {&lt;br /&gt;
	-moz-border-radius:10px;&lt;br /&gt;
-webkit-border-radius:10px;&lt;br /&gt;
border-radius:10px;&lt;br /&gt;
position: relative;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#text-6 .widget-title {&lt;br /&gt;
-moz-border-radius:10px 10px 0px 0px;&lt;br /&gt;
-webkit-border-radius:10px 10px 0px 0px;&lt;br /&gt;
border-radius:10px 10px 0px 0px;&lt;br /&gt;
position: relative;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The above CSS is written to make a widget whose ID is ''text-6'' rounded.&lt;br /&gt;
&lt;br /&gt;
Screenshot in Firefox:&lt;br /&gt;
&lt;br /&gt;
[[File:Rounded-corners-ff.png]]&lt;br /&gt;
&lt;br /&gt;
[http://sridhar.internal.ithemes.com/ Live Site]&lt;br /&gt;
&lt;br /&gt;
'''4.''' Add the following in your child theme's functions.php:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function my_render_ie_pie() { ?&amp;gt;&lt;br /&gt;
&amp;lt;!--[if lte IE 8]&amp;gt;&lt;br /&gt;
&amp;lt;style type=&amp;quot;text/css&amp;quot; media=&amp;quot;screen&amp;quot;&amp;gt;&lt;br /&gt;
   #your-css-elements-here { &lt;br /&gt;
          behavior: url('http://www.redkitecreative.com/PIE.htc'); &lt;br /&gt;
    }&lt;br /&gt;
&amp;lt;/style&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;![endif]--&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
}&lt;br /&gt;
add_action('wp_head', 'my_render_ie_pie', 8);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above, replace &lt;br /&gt;
&lt;br /&gt;
# &amp;lt;code&amp;gt;#your-css-elements-here&amp;lt;/code&amp;gt; with CSS selectors for which you have specified CSS 3 properties and for which you would like to use CSS3 PIE.&lt;br /&gt;
# http://www.redkitecreative.com/PIE.htc with the URL of PIE.htc on your server.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
Code in functions.php:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function my_render_ie_pie() { ?&amp;gt;&lt;br /&gt;
&amp;lt;!--[if lte IE 8]&amp;gt;&lt;br /&gt;
&amp;lt;style type=&amp;quot;text/css&amp;quot; media=&amp;quot;screen&amp;quot;&amp;gt;&lt;br /&gt;
   #text-6, #text-6 .widget-title { &lt;br /&gt;
          behavior: url('http://sridhar.internal.ithemes.com/assets/PIE.htc'); &lt;br /&gt;
    }&lt;br /&gt;
&amp;lt;/style&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;![endif]--&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
}&lt;br /&gt;
add_action('wp_head', 'my_render_ie_pie', 8);&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now ''border-radius'' property for ''#text-6'' and ''#text-6 .widget-title'' will work in IE 8 and below.&lt;br /&gt;
&lt;br /&gt;
Screenshot in IE 8:&lt;br /&gt;
&lt;br /&gt;
[[File:Rounded-corners-ie8.png]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Note&amp;lt;/u&amp;gt;: &lt;br /&gt;
&lt;br /&gt;
# This particular example does not render properly in IE 7 probably because of using PIE on an element inside another element. This is the behavior coming from PIE itself and not Builder. [http://ithemes.com/codex/images/6/63/Rounded-corners-ie7.png Screenshot].&lt;br /&gt;
# IE 9 supports border-radius natively. So PIE will not be used in IE 9.&lt;br /&gt;
&lt;br /&gt;
That's it!&lt;br /&gt;
&lt;br /&gt;
Source: http://www.position-relative.com/2011/01/using-css3-pie-in-wordpress-custom-themes/&lt;br /&gt;
&lt;br /&gt;
== How to set up Shopp in iThemes Builder ==&lt;br /&gt;
&lt;br /&gt;
[http://shopplugin.net/ Shopp] is an e-commerce plugin that adds a feature-rich online store to your WordPress-powered website or blog.&lt;br /&gt;
&lt;br /&gt;
Shopp works out of the box in Builder without the need to edit any template files.&lt;br /&gt;
&lt;br /&gt;
'''The steps below outline how Shopp can be set up in Builder''':&lt;br /&gt;
&lt;br /&gt;
'''1.''' After Shopp has been installed and activated, it will create four placeholder pages.&lt;br /&gt;
&lt;br /&gt;
[[File:Shopp-placeholder-pages.png|690px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Each of these pages include Shopp-specific shortcodes that are replaced with dynamic content generated by Shopp.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Go to Shopp -&amp;gt; Settings, Continue to Shopp Setup...&lt;br /&gt;
&lt;br /&gt;
Go through the various settings and fill them out. Refer to links at the bottom of [http://docs.shopplugin.net/Installation this] page for details on these settings.&lt;br /&gt;
&lt;br /&gt;
'''3.''' Presentation Settings:&lt;br /&gt;
&lt;br /&gt;
Make sure you have saved the settings that have been entered in the previous options thus far, if any, before proceeding further.&lt;br /&gt;
&lt;br /&gt;
a) Click on ''Use Custom Templates'' button.&lt;br /&gt;
&lt;br /&gt;
b) Create a directory in your active theme (Builder child theme) named ''shopp''. You can either use a FTP client or your hosting cPanel file manager for this.&lt;br /&gt;
&lt;br /&gt;
[[File:Creating-shopp-dir-in-child-theme.png]]&lt;br /&gt;
&lt;br /&gt;
c) Reload the Presentation Settings in the WordPress/Shopp admin and click ''Install Theme Templates'' button.&lt;br /&gt;
&lt;br /&gt;
At this point, Shopp will make a copy of the built-in default templates into the newly created shopp directory within your active theme.&lt;br /&gt;
&lt;br /&gt;
d) Tick ''Enable theme templates'' and save changes.&lt;br /&gt;
&lt;br /&gt;
'''4.''' Now you are ready to add products. Go to Shopp -&amp;gt; Products. Click Add New. Enter the details and save the product.&lt;br /&gt;
&lt;br /&gt;
[[File:Products Builder Test Site WordPress 2011-12-03 17-53-00.png|497px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Note: After a product image has been added, if its thumbnail does not appear i.e., if it looks like:&lt;br /&gt;
&lt;br /&gt;
[[File:Product-image-missing-thumbnail.png]]&lt;br /&gt;
&lt;br /&gt;
go to Shopp -&amp;gt; Settings -&amp;gt; System and uncheck ''Enable Flash-based uploading'' next to ''Upload System''. Save changes.&lt;br /&gt;
&lt;br /&gt;
You will have to edit the products and add images again.&lt;br /&gt;
&lt;br /&gt;
'''Screenshots'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Shop page (Products listing page)&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Shop- -Builder-Test-Site-2011-12-03-18-23-09.jpg|744px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Live Demo: http://sridhar.internal.ithemes.com/shop/ (Dummy site, do not place orders)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Product page&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Shop-Catalog-Products-Nike-Men-Downshifter-4-MSL-Black-Sports-Shoes- -Builder-Test-Site-2011-12-03-18-35-09.jpg|508px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Cart page&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Cart- -Builder-Test-Site-2011-12-03-18-42-53.jpg|776px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://webdesign.com/web-design-courses/under-the-hood-with-shopp-videos/ Replay videos of Under the Hood with Shopp training webinar]&lt;br /&gt;
&lt;br /&gt;
== How to float a div at any position on top of other elements in the container ==&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2011-12-19 at 10.37.52 PM.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Add the following in child theme's functions.php:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
add_action('builder_layout_engine_render_header', 'add_floating_box', 20 );&lt;br /&gt;
&lt;br /&gt;
function add_floating_box() { ?&amp;gt;&lt;br /&gt;
	&amp;lt;div id=&amp;quot;floating-box-container&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;div id=&amp;quot;floating-box&amp;quot;&amp;gt;&lt;br /&gt;
			HTML or PHP code comes here&lt;br /&gt;
		&amp;lt;/div&amp;gt;&lt;br /&gt;
	&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above, place the code needed to display your logo (for example) where &amp;quot;HTML code comes here&amp;quot; is present.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Add the following at the end of child theme's style.css:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#floating-box-container {&lt;br /&gt;
	width: 1000px; /* set this to container (layout) width */&lt;br /&gt;
	margin: 0 auto;&lt;br /&gt;
	position: relative;&lt;br /&gt;
	z-index: 100;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#floating-box {&lt;br /&gt;
	position: absolute;&lt;br /&gt;
	top: 50px;&lt;br /&gt;
	left: 0;&lt;br /&gt;
	background: yellow;&lt;br /&gt;
	width: 200px;&lt;br /&gt;
	height: 100px;	&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above, you might want to adjust top, left, background, width and height values.&lt;br /&gt;
&lt;br /&gt;
[[File:2011-12-19 22-57-10.png|800px|thumb|none|Screenshot showing the div structure]]&lt;br /&gt;
&lt;br /&gt;
A practical example of implementing this method can be found [http://ithemes.com/codex/page/Plugin_related_and_other_generic_customizations_in_Builder#How_to_add_social_media_icons_floating_at_top_right here].&lt;br /&gt;
&lt;br /&gt;
Source: http://ithemes.com/forum/topic/28189-where-is-body-tag/page__view__findpost__p__130559&lt;br /&gt;
&lt;br /&gt;
== Using Easy Custom Content Types in Builder ==&lt;br /&gt;
&lt;br /&gt;
Easy Content Types, a commercial plugin provides an extremely easy to use and intuitive interface for creating custom post types, taxonomies, and meta boxes.&lt;br /&gt;
&lt;br /&gt;
Here are some general tips on using [http://codecanyon.net/item/easy-custom-content-types-for-wordpress/234182 Easy Custom Content Types for WordPress] in Builder.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Do not use &amp;lt;code&amp;gt;Post name&amp;lt;/code&amp;gt; permalink structure. &amp;lt;code&amp;gt;Day and name&amp;lt;/code&amp;gt; works fine.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Go to plugin's settings and tick the first two under &amp;quot;Post Type Templates&amp;quot;. You might also want to tick the option under &amp;quot;Taxonomy Templates&amp;quot; if you plan on using custom taxonomy archives.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-03-01 10-32-06.png|484px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''3.''' Create your Post Types.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
[[File:2012-03-01 10-44-56.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
The URL of archive listing of entries from a CPT is: http://yoursite.com/cptslug&lt;br /&gt;
&lt;br /&gt;
Ex.: http://localhost/builder/testimonials/ &lt;br /&gt;
&lt;br /&gt;
The URL of single CPT entry is: http://yoursite.com/cptslug/entrytitle&lt;br /&gt;
&lt;br /&gt;
Ex.: http://localhost/builder/testimonials/awesome-service/&lt;br /&gt;
&lt;br /&gt;
'''4.''' Check child theme directory using a FTP client or cPanel file manager. If single-''&amp;lt;cpt&amp;gt;''.php has not been automatically created, copy/upload single.php from parent Builder into the child theme and rename it as single-''&amp;lt;cpt&amp;gt;''.php.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
[[File:2012-03-01 10-39-45.png|623px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''5.''' Create any necessary Meta Boxes and Meta Fields.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
[[File:2012-03-01 10-58-00.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
[[File:2012-03-01 10-58-18.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''6.''' To display Meta Field in template files like single-''&amp;lt;cpt&amp;gt;''.php, use&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php												&lt;br /&gt;
global $post;												&lt;br /&gt;
echo get_post_meta($post-&amp;gt;ID, 'ecpt_clienturl', true);&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace &amp;quot;ecpt_clienturl&amp;quot; with the name of your field.&lt;br /&gt;
&lt;br /&gt;
'''7.''' To display a Meta Field in LoopBuddy layout, use &amp;quot;Custom Field&amp;quot; tag and enter the field name in &amp;quot;Meta Key&amp;quot; text input.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-03-01 11-11-28.png|547px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''8.''' If comments area is not appearing in single CPT entry pages on the site, go to My Theme -&amp;gt; Settings -&amp;gt; Comments. Uncheck the CPT, save settings, re-check it and save settings.&lt;br /&gt;
&lt;br /&gt;
== How to show top most (latest) post in full and the others as excerpts ==&lt;br /&gt;
&lt;br /&gt;
Screenshot: http://d.pr/nfl1&lt;br /&gt;
&lt;br /&gt;
Edit child theme's index.php and any other needed template files like archive.php that output a list of posts.&lt;br /&gt;
&lt;br /&gt;
Replace the ''the_content()'' or ''the_excerpt()'' function call with the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php /* Conditional output flag set after first post */ ?&amp;gt;&lt;br /&gt;
&amp;lt;?php if($showexcerpt) : ?&amp;gt;&lt;br /&gt;
   &amp;lt;?php the_excerpt(); ?&amp;gt;&lt;br /&gt;
&amp;lt;?php else: ?&amp;gt;&lt;br /&gt;
  &amp;lt;?php the_content(); ?&amp;gt;&lt;br /&gt;
&amp;lt;?php endif; ?&amp;gt;&lt;br /&gt;
&amp;lt;?php $showexcerpt=true; ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ex.: In Foundation Blank's index.php,&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php the_content( __( 'Read More&amp;amp;rarr;', 'it-l10n-BuilderChild-Foundation-Blank' ) ); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
should be replaced with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php /* Conditional output flag set after first post */ ?&amp;gt;&lt;br /&gt;
							&amp;lt;?php if($showexcerpt) : ?&amp;gt;&lt;br /&gt;
							   &amp;lt;?php the_excerpt(); ?&amp;gt;&lt;br /&gt;
							&amp;lt;?php else: ?&amp;gt;&lt;br /&gt;
							  &amp;lt;?php the_content( __( 'Read More&amp;amp;rarr;', 'it-l10n-BuilderChild-Foundation-Blank' ) ); ?&amp;gt;&lt;br /&gt;
							&amp;lt;?php endif; ?&amp;gt;&lt;br /&gt;
							&amp;lt;?php $showexcerpt=true; ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With the above change, the top most (latest) post will be shown in full unless more quick tag, &amp;lt;!--more--&amp;gt; is used. If more quick tag is used, &amp;quot;Read More→&amp;quot; will appear at the cut off point.&lt;br /&gt;
&lt;br /&gt;
Source: http://wordpress.org/support/topic/full-article-for-first-post-excerpts-for-the-rest?replies=7#post-1743222&lt;br /&gt;
&lt;br /&gt;
== How to implement Yoast Breadcrumbs in Builder ==&lt;br /&gt;
&lt;br /&gt;
[http://wordpress.org/extend/plugins/breadcrumbs/ Yoast Breadcrumbs on WordPress.org]&lt;br /&gt;
&lt;br /&gt;
Determine where you want the breadcrumbs to appear and edit the appropriate template file(s) in child theme. Use [http://codex.wordpress.org/images/1/18/Template_Hierarchy.png this] image as a reference. If a particular file is not present in the child theme directory, copy it from  parent Builder directory.&lt;br /&gt;
&lt;br /&gt;
Generally speaking, these are the files that you will be modifying: page.php (for static Pages), single.php (for single post pages), index.php (for Posts page) and archive.php (for category pages).&lt;br /&gt;
&lt;br /&gt;
Let's consider Kepler child theme as an example and that we want to add breadcrumbs to all Pages.&lt;br /&gt;
&lt;br /&gt;
Edit page.php.&lt;br /&gt;
&lt;br /&gt;
Below&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php if ( have_posts() ) : ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
add&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php if ( function_exists('yoast_breadcrumb') ) {&lt;br /&gt;
	yoast_breadcrumb('&amp;lt;p id=&amp;quot;breadcrumbs&amp;quot;&amp;gt;','&amp;lt;/p&amp;gt;');&lt;br /&gt;
} ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css;&amp;quot;&amp;gt;&lt;br /&gt;
#breadcrumbs {&lt;br /&gt;
    color: #D0ECF3;&lt;br /&gt;
    margin-top: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#breadcrumbs a {&lt;br /&gt;
    color: #FFFFFF;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: The above CSS code might have to be adjusted depending on the child theme.&lt;br /&gt;
&lt;br /&gt;
This should result in [[File:2012-06-26 21-36-17.png|746px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
== How to remove hyperlink from tagline in Header module ==&lt;br /&gt;
&lt;br /&gt;
Add the following code to child theme's functions.php (at the end, but before the closing ?&amp;gt; line, if any):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
// load our javascript in the footer&lt;br /&gt;
add_action('wp_enqueue_scripts', 'add_my_code');&lt;br /&gt;
function add_my_code() {&lt;br /&gt;
    add_action( 'print_footer_scripts', 'my_footer_script' );&lt;br /&gt;
}  &lt;br /&gt;
&lt;br /&gt;
// Add jQuery to footer&lt;br /&gt;
function my_footer_script() { ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
    jQuery(document).ready(function($) {&lt;br /&gt;
            $('.site-tagline a').replaceWith(function() {&lt;br /&gt;
                    return this.innerHTML; });&lt;br /&gt;
            });&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[http://ithemes.com/forum/topic/29848-remove-link-from-tagline/page__view__findpost__p__138431 Thanks to Ronald (forum post)]&lt;br /&gt;
&lt;br /&gt;
== How to assign layouts to The Events Calendar pages ==&lt;br /&gt;
&lt;br /&gt;
[http://wordpress.org/extend/plugins/the-events-calendar/ The Events Calendar] plugin enables you to rapidly create and manage events. Features include Google Maps integration as well as default templates such as a calendar grid and event list, widget and so much more.&lt;br /&gt;
&lt;br /&gt;
To assign a layout to all pages generated by this plugin, ex.: &amp;lt;code&amp;gt;http://yoursite.com/events/&amp;lt;/code&amp;gt; add the following in child theme's functions.php before closing PHP tag (if present):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
function set_custom_layout( $layout_id ) {&lt;br /&gt;
    if ( tribe_is_month() || tribe_is_upcoming() || tribe_is_past() )&lt;br /&gt;
            return '4f5363f3cb8e1';&lt;br /&gt;
&lt;br /&gt;
    return $layout_id;&lt;br /&gt;
}&lt;br /&gt;
add_filter( 'builder_filter_current_layout', 'set_custom_layout' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above replace &amp;lt;code&amp;gt;4f5363f3cb8e1&amp;lt;/code&amp;gt; with the ID of your desired layout.&lt;br /&gt;
&lt;br /&gt;
Source: http://tri.be/tutorial-integrating-the-events-calendar-w-genesis/&lt;br /&gt;
&lt;br /&gt;
It is also possible to set different layouts to different views like&lt;br /&gt;
&lt;br /&gt;
* main calendar page&lt;br /&gt;
* calendar category pages&lt;br /&gt;
* single events&lt;br /&gt;
* single event days&lt;br /&gt;
* single venues&lt;br /&gt;
* events or venue pages&lt;br /&gt;
* events list page&lt;br /&gt;
&lt;br /&gt;
by adding more functions similar to the one above.&lt;br /&gt;
&lt;br /&gt;
The needed if conditionals can be obtained from the source linked above.&lt;br /&gt;
&lt;br /&gt;
== Jetpack and Builder ==&lt;br /&gt;
&lt;br /&gt;
=== Sharing ===&lt;br /&gt;
&lt;br /&gt;
If you would like to use Jetpack's Sharing Buttons in Widget Content widgets, go to &lt;br /&gt;
&lt;br /&gt;
# Settings -&amp;gt; Sharing. Tick &amp;lt;code&amp;gt;Widget Content&amp;lt;/code&amp;gt; under &amp;quot;Show buttons on&amp;quot;.&lt;br /&gt;
# My Theme -&amp;gt; Settings -&amp;gt; Widget Content. Select &amp;quot;Use the the_content filter to format Widget Content entries.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Sample screenshot:&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2012-12-07 at 5.22.34 PM.png|396px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
==== How to prevent automatic placement of Jetpack's Share buttons and place them manually ====&lt;br /&gt;
&lt;br /&gt;
Sample scenario:&lt;br /&gt;
&lt;br /&gt;
1) At WP Dashboard -&amp;gt; Settings -&amp;gt; Sharing,&lt;br /&gt;
&lt;br /&gt;
a) Few services have been enabled by dragging them under &amp;quot;Enabled Services&amp;quot; area.&lt;br /&gt;
&lt;br /&gt;
b) &amp;lt;code&amp;gt;Show buttons on&amp;lt;/code&amp;gt; is ticked for &amp;quot;Front Page, Archive Pages, and Search Results&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
2) Active theme: Builder Child Theme - Acute Purple - 1.1.0&lt;br /&gt;
&lt;br /&gt;
3) 'Teasers Layout - Image Left' Builder extension is applied to the Posts page with [http://ithemes.com/codex/page/Builder_Extensions#How_to_show_Read_More_below_each_excerpt_when_using_.27Teasers_Layout_-_Image_Left.27_extension Read More set to appear for all excerpts].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=178px heights=598px&amp;gt;&lt;br /&gt;
File:My iThemes Builder Test Site 2013-01-25 15-38-08.png|Before&lt;br /&gt;
File:My iThemes Builder Test Site 2013-01-25 15-39-07.png|After&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To prevent automatic placement of Jetpack's Share buttons and place them manually, follow this:&lt;br /&gt;
&lt;br /&gt;
'''1.''' Add the following at end of child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
// Remove automatically-inserted Jetpack's share buttons&lt;br /&gt;
function jptweak_remove_share() {&lt;br /&gt;
	//remove_filter( 'the_content', 'sharing_display',19 );&lt;br /&gt;
	remove_filter( 'the_excerpt', 'sharing_display',19 );&lt;br /&gt;
}&lt;br /&gt;
add_action( 'loop_end', 'jptweak_remove_share' );&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source: http://wordpress.org/support/topic/share-buttons-position-above-other-plugins#post-3686704&lt;br /&gt;
&lt;br /&gt;
'''2.''' Wherever you would like to place the Jetpack's Share buttons, edit the [http://codex.wordpress.org/images/1/18/Template_Hierarchy.png appropriate template file] and paste the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php if (function_exists('sharing_display')) echo sharing_display(); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In our sample scenario, the file would be wp-content/themes/BuilderChild-Acute-Purple/extensions/post-teasers-left/functions.php and the above code would be placed below&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php the_excerpt(); ?&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;a href=&amp;quot;&amp;lt;?php the_permalink(); ?&amp;gt;&amp;quot; class=&amp;quot;more-link&amp;quot;&amp;gt;Read More &amp;amp;rarr;&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-01-25 at 8.31.03 PM.png|587px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
That's it.&lt;br /&gt;
&lt;br /&gt;
=== Jetpack Comments ===&lt;br /&gt;
&lt;br /&gt;
Sample screenshot:&lt;br /&gt;
&lt;br /&gt;
[[File:2012-12-07 17-49-39.png|778px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
# Edit &amp;lt;code&amp;gt;comments.php&amp;lt;/code&amp;gt; in active theme (should be a child theme of Builder). If the file is not present, copy it from parent Builder directory into the child theme directory and edit it.&lt;br /&gt;
&lt;br /&gt;
Delete code similar to&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;&amp;lt;?php comment_form_title( __( 'Leave a Reply', 'it-l10n-BuilderChild-Ionic' ), __( 'Leave a Reply to %s', 'it-l10n-BuilderChild-Ionic' ) ); ?&amp;gt;&amp;lt;/h3&amp;gt;&lt;br /&gt;
		&lt;br /&gt;
		&amp;lt;div class=&amp;quot;cancel-comment-reply&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;small&amp;gt;&amp;lt;?php cancel_comment_reply_link(); ?&amp;gt;&amp;lt;/small&amp;gt;&lt;br /&gt;
		&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and replace&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;form action=&amp;quot;&amp;lt;?php echo site_url( '/wp-comments-post.php' ); ?&amp;gt;&amp;quot; method=&amp;quot;post&amp;quot; id=&amp;quot;commentform&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;?php if ( is_user_logged_in() ) : ?&amp;gt;&lt;br /&gt;
					&amp;lt;p class=&amp;quot;logged-in-as&amp;quot;&amp;gt;&amp;lt;?php printf( __( 'Logged in as &amp;lt;a href=&amp;quot;%1$s&amp;quot;&amp;gt;%2$s&amp;lt;/a&amp;gt;. &amp;lt;a href=&amp;quot;%3$s&amp;quot; title=&amp;quot;Log out of this account&amp;quot;&amp;gt;Log out?&amp;lt;/a&amp;gt;', 'it-l10n-BuilderChild-Ionic' ), admin_url( 'profile.php' ), $user_identity, $logout_url ); ?&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
				&amp;lt;?php else : ?&amp;gt;&lt;br /&gt;
					&amp;lt;p class=&amp;quot;comment-form-author&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;author&amp;quot; id=&amp;quot;author&amp;quot; value=&amp;quot;&amp;lt;?php echo esc_attr( $commenter['comment_author'] ); ?&amp;gt;&amp;quot; size=&amp;quot;22&amp;quot;&amp;lt;?php echo $aria_req; ?&amp;gt; /&amp;gt;&lt;br /&gt;
						&amp;lt;label for=&amp;quot;author&amp;quot;&amp;gt;&amp;lt;small&amp;gt;&amp;lt;?php _e( 'Name', 'it-l10n-BuilderChild-Ionic' ); ?&amp;gt; &amp;lt;?php if ( $req ) _e( &amp;quot;&amp;lt;span class='required'&amp;gt;(required)&amp;lt;/span&amp;gt;&amp;quot;, 'it-l10n-BuilderChild-Ionic' ); ?&amp;gt;&amp;lt;/small&amp;gt;&amp;lt;/label&amp;gt;&lt;br /&gt;
					&amp;lt;/p&amp;gt;&lt;br /&gt;
					&lt;br /&gt;
					&amp;lt;p class=&amp;quot;comment-form-email&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;email&amp;quot; id=&amp;quot;email&amp;quot; value=&amp;quot;&amp;lt;?php echo esc_attr(  $commenter['comment_author_email'] ); ?&amp;gt;&amp;quot; size=&amp;quot;22&amp;quot;&amp;lt;?php echo $aria_req; ?&amp;gt; /&amp;gt;&lt;br /&gt;
						&amp;lt;label for=&amp;quot;email&amp;quot;&amp;gt;&amp;lt;small&amp;gt;&amp;lt;?php _e( 'Mail (will not be published)', 'it-l10n-BuilderChild-Ionic' ); ?&amp;gt; &amp;lt;?php if ( $req ) _e( &amp;quot;&amp;lt;span class='required'&amp;gt;(required)&amp;lt;/span&amp;gt;&amp;quot;, 'it-l10n-BuilderChild-Ionic' ); ?&amp;gt;&amp;lt;/small&amp;gt;&amp;lt;/label&amp;gt;&lt;br /&gt;
					&amp;lt;/p&amp;gt;&lt;br /&gt;
					&lt;br /&gt;
					&amp;lt;p class=&amp;quot;comment-form-url&amp;quot;&amp;gt;&lt;br /&gt;
						&amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;url&amp;quot; id=&amp;quot;url&amp;quot; value=&amp;quot;&amp;lt;?php echo esc_attr( $commenter['comment_author_url'] ); ?&amp;gt;&amp;quot; size=&amp;quot;22&amp;quot; /&amp;gt;&lt;br /&gt;
						&amp;lt;label for=&amp;quot;url&amp;quot;&amp;gt;&amp;lt;small&amp;gt;&amp;lt;?php _e( 'Website', 'it-l10n-BuilderChild-Ionic' ); ?&amp;gt;&amp;lt;/small&amp;gt;&amp;lt;/label&amp;gt;&lt;br /&gt;
					&amp;lt;/p&amp;gt;&lt;br /&gt;
				&amp;lt;?php endif; ?&amp;gt;&lt;br /&gt;
				&lt;br /&gt;
				&amp;lt;!--&amp;lt;p&amp;gt;&amp;lt;small&amp;gt;&amp;lt;strong&amp;gt;XHTML:&amp;lt;/strong&amp;gt; You can use these tags: &amp;lt;code&amp;gt;&amp;lt;?php echo allowed_tags(); ?&amp;gt;&amp;lt;/code&amp;gt;&amp;lt;/small&amp;gt;&amp;lt;/p&amp;gt;--&amp;gt;&lt;br /&gt;
				&amp;lt;p&amp;gt;&amp;lt;textarea name=&amp;quot;comment&amp;quot; id=&amp;quot;comment&amp;quot; cols=&amp;quot;45&amp;quot; rows=&amp;quot;10&amp;quot;&amp;gt;&amp;lt;/textarea&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
				&lt;br /&gt;
				&amp;lt;p class=&amp;quot;comment-submit-wrapper&amp;quot;&amp;gt;&lt;br /&gt;
					&amp;lt;input name=&amp;quot;submit&amp;quot; type=&amp;quot;submit&amp;quot; id=&amp;quot;submit&amp;quot; value=&amp;quot;&amp;lt;?php _e( 'Submit Comment &amp;amp;rarr;', 'it-l10n-BuilderChild-Ionic' ); ?&amp;gt;&amp;quot; /&amp;gt;&lt;br /&gt;
					&amp;lt;?php comment_id_fields(); ?&amp;gt;&lt;br /&gt;
				&amp;lt;/p&amp;gt;&lt;br /&gt;
				&lt;br /&gt;
				&amp;lt;?php do_action( 'comment_form', $post-&amp;gt;ID ); ?&amp;gt;&lt;br /&gt;
			&amp;lt;/form&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
with&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php comment_form(); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Infinite Scroll ===&lt;br /&gt;
&lt;br /&gt;
Jetpack's Infinite Scroll can either enabled by adding code in child theme's functions.php or simply by just using a plugin.&lt;br /&gt;
&lt;br /&gt;
Details: http://ithemes.com/2012/12/03/builder-jetpack-infinite-scroll/&lt;br /&gt;
&lt;br /&gt;
=== Carousel ===&lt;br /&gt;
&lt;br /&gt;
Beginning [http://ithemes.com/codex/page/Builder/Release_Notes/4.0.15 Builder 4.0.15], [http://jetpack.me/2012/07/13/jetpack-1-5-with-carousel/ Jetpack's Carousel] module works fine in iThemes Builder.&lt;br /&gt;
&lt;br /&gt;
=== Tiled Galleries ===&lt;br /&gt;
&lt;br /&gt;
[http://jetpack.me/support/tiled-galleries/ JetPack's Tiled Galleries] module works in iThemes Builder (v4.0.15 and above) by using a workaround.&lt;br /&gt;
&lt;br /&gt;
Add the following in child theme's &amp;lt;tt&amp;gt;functions.php&amp;lt;/tt&amp;gt; file (after the &amp;lt;code&amp;gt;&amp;amp;lt;?php&amp;lt;/code&amp;gt; line):&lt;br /&gt;
&lt;br /&gt;
 function custom_disable_builder_gallery() {&lt;br /&gt;
     remove_filter( 'post_gallery', 'builder_custom_post_gallery', 10 );&lt;br /&gt;
 }&lt;br /&gt;
 add_action( 'builder_theme_features_loaded', 'custom_disable_builder_gallery' );&lt;br /&gt;
 &lt;br /&gt;
 $content_width = 604;&lt;br /&gt;
&lt;br /&gt;
Note that the &amp;lt;code&amp;gt;$content_width&amp;lt;/code&amp;gt; variable has to be set to a value that refers to the pixel width of the area displaying the gallery. The &amp;lt;tt&amp;gt;604&amp;lt;/tt&amp;gt; number refers to the total pixel width area of the Default child theme's Content Module without any Layout modifications (960 pixel wide Layout with a 320 pixel wide sidebar). Until a better solution can be found, this variable will have to be manually adjusted so that the gallery properly fills the content area. Fortunately, if you are running a responsive Builder child theme, you can set this value to be larger than required, and it will automatically shrink down (this may work in some non-responsive child themes as well, the results vary).&lt;br /&gt;
&lt;br /&gt;
Set &amp;lt;code&amp;gt;$content_width&amp;lt;/code&amp;gt; value to the width of actual content portion (.builder-module-content .builder-module-element) that is available after any padding. Firebug makes it easy to find this.&lt;br /&gt;
&lt;br /&gt;
[[File:2013-01-31 11-10-53.png|800px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Source: [http://ithemes.com/codex/page/Builder/Release_Notes/4.0.15 Builder 4.0.15 release notes].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Limitation&amp;lt;/u&amp;gt;: When the above code is used, output of standard gallery shortcode, for example, &amp;lt;code&amp;gt;[gallery ids=&amp;quot;1072,1070,1062,1050&amp;quot;]&amp;lt;/code&amp;gt; will be affected. This is a known issue for the time being.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Screen Shot 2013-01-31 at 11.43.35 AM.png|Before&lt;br /&gt;
File:Screen Shot 2013-01-31 at 11.44.35 AM.png|After&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to embed a Gravity Forms form at the bottom of all single posts ==&lt;br /&gt;
&lt;br /&gt;
[[File:2013-02-01 19-34-41.png|308px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Go to Forms -&amp;gt; Forms in WP dashboard. Hover mouse on the title of form that you wish to embed and note the number at the end of URL in browser status bar. That would be the form's ID.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Edit child theme's &amp;lt;code&amp;gt;single.php&amp;lt;/code&amp;gt;. If the child theme does not have this, copy it from parent Builder directory into the child theme directory.&lt;br /&gt;
&lt;br /&gt;
Below&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php comments_template(); // include comments template ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
paste&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php gravity_form(2, true, false, false, '', false); ?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above change &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt; to the ID of form you wish to embed.&lt;br /&gt;
&lt;br /&gt;
Source: http://www.gravityhelp.com/documentation/page/Embedding_A_Form&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
#gform_wrapper_2 {&lt;br /&gt;
    margin-top: 4em;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above change &amp;lt;code&amp;gt;2&amp;lt;/code&amp;gt; to the ID of form that's embedded.&lt;br /&gt;
&lt;br /&gt;
== Examples of Using jQuery in Builder ==&lt;br /&gt;
&lt;br /&gt;
=== Disclaimer ===&lt;br /&gt;
'''iThemes will not be responsible for any issues that may be the result of your attempts to change your site's functions.php file. You do not HAVE to change it. All code samples are for your information, possibly inspiration, and provided &amp;quot;as is&amp;quot;. However, when properly implemented, the code samples are accurate and will work.'''&lt;br /&gt;
&lt;br /&gt;
=== Warning ===&lt;br /&gt;
If you do not understand what it is you are doing, if the words &amp;quot;php&amp;quot;, &amp;quot;opening tag&amp;quot;, &amp;quot;FTP&amp;quot;, &amp;quot;functions&amp;quot; and &amp;quot;backup&amp;quot; are not familiar to you proceed with caution. You can blow up your site due to invalid code in the functions.php file. Actually, even if you know or think you know it all, it still happens (it happens to me at least once a week - Ronald).&lt;br /&gt;
&lt;br /&gt;
A single missing } or even a , or a semi-colon is all it takes to take your site down. This can be resolved by undoing the changes, however, this can not be done through the wp-dashboard &amp;gt; Appearance &amp;gt; Editor anymore (since your site is down). You then have to restore the functions.php file either through FTP or your hosting cPanel File Manager. &lt;br /&gt;
&lt;br /&gt;
'''If you think you can not do that, or do not understand what all the above means, I suggest you refrain from editing functions.php.'''&lt;br /&gt;
&lt;br /&gt;
Should anything go wrong, do not blame the code posted here. The code works. It just needs to be inserted a) the right way, and b) in the right place.&lt;br /&gt;
&lt;br /&gt;
For everyone else feeling confident, and having read the Disclaimer and the paragraph on how to add PHP code to a PHP file, DO MAKE A BACKUP, at least of the file you are editing. It is also not recommended to do these changes through the wp-dashboard &amp;gt; Appearance &amp;gt; Editor. Setup a localhost server on your computer, and use a simple PHP Editor (with syntax checking), ensure that your additions do not break the site and only THEN FTP your files to your server.&lt;br /&gt;
&lt;br /&gt;
=== How to add PHP code to a PHP file ===&lt;br /&gt;
When adding code to the &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; file (or any PHP file), make sure it is in PHP format. HTML code is not PHP code, and it '''WILL''' break things when coded inside a block of PHP code.&lt;br /&gt;
&lt;br /&gt;
PHP code can be identified by an opening tag: &amp;lt;code&amp;gt;&amp;lt;?php&amp;lt;/code&amp;gt;&lt;br /&gt;
and a closing tag &amp;lt;code&amp;gt;?&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
all code between these tags should be PHP code.&lt;br /&gt;
&lt;br /&gt;
Most WordPress themes have the opening &amp;lt;code&amp;gt;&amp;lt;?php&amp;lt;/code&amp;gt; tag in functions.php, coded all the way at the top of the file. Most (Builder Child theme) &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; files do not have a closing &amp;lt;code&amp;gt;?&amp;gt;&amp;lt;/code&amp;gt; tag (ALL THE WAY) at the end of the file, since it is not required.&lt;br /&gt;
&lt;br /&gt;
So if you add code at the end of your &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; file, and do so before the closing &amp;lt;code&amp;gt;?&amp;gt;&amp;lt;/code&amp;gt; PHP tag (if any!) you (generally!) are inside a PHP block of code. But this is '''NOT''' guaranteed.&lt;br /&gt;
&lt;br /&gt;
*You can't add html code inside PHP tags.&lt;br /&gt;
*You can't add PHP code outside PHP tags.&lt;br /&gt;
*You can't add opening PHP tags INSIDE a block of PHP code (nesting &amp;lt;code&amp;gt;&amp;lt;?php some php code ?&amp;gt;&amp;lt;/code&amp;gt; when there is no closing php tag before it).&lt;br /&gt;
&lt;br /&gt;
Before making the final edits and saving and uploading the file to your server, make sure that the syntax of the entire functions.php is valid syntax. You can do so by using a PHP Editor, and there are online tools such as this one: http://www.piliapp.com/php-syntax-check/&lt;br /&gt;
&lt;br /&gt;
====example of correct PHP code====&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
PHP code&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
html code&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
some more PHP code&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====example of incorrect PHP code 1====&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
php code&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;?php&lt;br /&gt;
   some more php code&lt;br /&gt;
   ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====example of incorrect PHP code 2====&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
html code&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====example of incorrect PHP code 3====&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
php code&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
more php code&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Introduction ===&lt;br /&gt;
&lt;br /&gt;
Please note that code shown is for a particular child theme and for a specific version used when writing the articles. It would usually have to be modified to suit your needs. All code samples use certain selector names (for menus, for builder selectors etc.) This is entirely arbitrary, and it is ''highly unlikely'' that your selectors are the same. '''You have to adapt the code accordingly'''.&lt;br /&gt;
&lt;br /&gt;
'''All code samples provided here ASSUME that it will be placed in already existing PHP tags. Therefore, you will not find an opening &amp;lt;?php code at the start, or a closing ?&amp;gt; tag at the end.'''&lt;br /&gt;
&lt;br /&gt;
=== How to assign odd and even classes to menu items in nav bar ===&lt;br /&gt;
&lt;br /&gt;
One typical usage of this would be to set different background colors to alternate menu items.&lt;br /&gt;
&lt;br /&gt;
[[File:2013-02-02 21-15-52.png|567px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// Assign even and odd classes to nav bar menu items&lt;br /&gt;
&lt;br /&gt;
add_action('wp_enqueue_scripts', 'add_my_code_1');&lt;br /&gt;
&lt;br /&gt;
function add_my_code_1() {&lt;br /&gt;
    add_action( 'print_footer_scripts', 'my_footer_script_1' );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function my_footer_script_1() { ?&amp;gt;&lt;br /&gt;
    &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
        jQuery(document).ready(function($) {&lt;br /&gt;
        	$(&amp;quot;#menu-main-menu &amp;gt; li:nth-child(odd)&amp;quot;).addClass(&amp;quot;odd&amp;quot;);&lt;br /&gt;
        	$(&amp;quot;#menu-main-menu &amp;gt; li:nth-child(even)&amp;quot;).addClass(&amp;quot;even&amp;quot;);&lt;br /&gt;
        });&lt;br /&gt;
    &amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;menu-main-menu&amp;lt;/code&amp;gt; is the CSS ID of custom menu shown in the nav bar.&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation li.even a {&lt;br /&gt;
    background: red;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation li.odd a {&lt;br /&gt;
    background: blue;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation li.even li a,&lt;br /&gt;
.builder-module-navigation li.odd li a {&lt;br /&gt;
    background: #FFF;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation li a:hover,&lt;br /&gt;
.builder-module-navigation li.even li a:hover,&lt;br /&gt;
.builder-module-navigation li.odd li a:hover {&lt;br /&gt;
    background: #333;&lt;br /&gt;
    color: #FFF;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation .current_page_item.even a, .builder-module-navigation .current_page_item.odd a&lt;br /&gt;
.builder-module-navigation .current-cat.even a, .builder-module-navigation .current-cat.odd a&lt;br /&gt;
.builder-module-navigation .current-menu-item.even a, .builder-module-navigation .current-menu-item.odd a {&lt;br /&gt;
	background: #333;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation li a,&lt;br /&gt;
.builder-module-navigation .current_page_item li a,&lt;br /&gt;
.builder-module-navigation .current-cat li a {&lt;br /&gt;
	color: #FFF;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation li li a {&lt;br /&gt;
    color: #333;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
[http://www.wpcon186.info/ Live Demo]. Code used on this site: [http://pastebin.com/Kwr3Q1g7 functions.php], [http://pastebin.com/irx9GtC8 style.css].&lt;br /&gt;
&lt;br /&gt;
=== How to spread/space out menu items equally across the nav bar ===&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-02-02 at 9.43.51 PM.png|800px|thumb|none|Before]]&lt;br /&gt;
&lt;br /&gt;
[[File:Screen Shot 2013-02-02 at 9.39.19 PM.png|800px|thumb|none|After]]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// =========================================&lt;br /&gt;
// = Space out nav bar menu items equally =&lt;br /&gt;
// =========================================&lt;br /&gt;
&lt;br /&gt;
// load javascript in the footer&lt;br /&gt;
add_action('wp_enqueue_scripts', 'add_my_code_37742');&lt;br /&gt;
function add_my_code_37742() {&lt;br /&gt;
        add_action( 'print_footer_scripts', 'my_footer_script_37742' );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// Add Javascript to footer&lt;br /&gt;
function my_footer_script_37742() { ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
jQuery(document).ready(function($) {&lt;br /&gt;
&lt;br /&gt;
        var menuItems = $(&amp;quot;ul#menu-main-menu&amp;quot;).children().length;&lt;br /&gt;
        var menuWidth = $(&amp;quot;ul#menu-main-menu&amp;quot;).width();&lt;br /&gt;
        var percentage = (menuWidth / menuItems) / (menuWidth / 100);&lt;br /&gt;
&lt;br /&gt;
        $(&amp;quot;ul#menu-main-menu&amp;quot;).children().each(function() {&lt;br /&gt;
                $(this).css('width',  percentage + '%');&lt;br /&gt;
        });&lt;br /&gt;
&lt;br /&gt;
});&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;menu-main-menu&amp;lt;/code&amp;gt; is the ID of custom menu shown in the nav bar.&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;style.css&amp;lt;/code&amp;gt; (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
/*********************************************&lt;br /&gt;
    Space out nav bar menu items equally&lt;br /&gt;
*********************************************/&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation ul {&lt;br /&gt;
	width: 100%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.builder-module-navigation li a, .builder-module-navigation .current_page_item li a, .builder-module-navigation .current-cat li a {&lt;br /&gt;
	text-align: center;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thanks to Ronald. Source: http://ithemes.com/forum/topic/37742-navigation-spread-items-to-length-of-the-nav-bar/#entry173441&lt;br /&gt;
&lt;br /&gt;
=== How to add a slow transition effect for second level menus in nav bar ===&lt;br /&gt;
&lt;br /&gt;
[http://jsfiddle.net/ronald/nBFm3/ Live Demo]&lt;br /&gt;
&lt;br /&gt;
Add the following at the end of child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// =========================================&lt;br /&gt;
// = Smoothen transition of 2nd level menu =&lt;br /&gt;
// =========================================&lt;br /&gt;
&lt;br /&gt;
// load javascript in footer&lt;br /&gt;
add_action('wp_enqueue_scripts', 'add_my_code_2');&lt;br /&gt;
function add_my_code_2() {&lt;br /&gt;
	add_action( 'print_footer_scripts', 'print_my_footer_scripts_2' );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// Add required javascript to footer (for delayed opening of subnav)&lt;br /&gt;
function print_my_footer_scripts_2() { ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;script type='text/javascript'&amp;gt;&lt;br /&gt;
jQuery(document).ready(function($) {&lt;br /&gt;
	    $(&amp;quot;#menu-main-menu li&amp;quot;).hover(function(){&lt;br /&gt;
	    $(this).find('ul:first').css({visibility: &amp;quot;visible&amp;quot;,display: &amp;quot;none&amp;quot;}).show(400);&lt;br /&gt;
	    },function(){&lt;br /&gt;
	    $(this).find('ul:first').css({visibility: &amp;quot;hidden&amp;quot;});&lt;br /&gt;
	});&lt;br /&gt;
&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;menu-main-menu&amp;lt;/code&amp;gt; is the CSS ID of custom menu (usually &amp;lt;code&amp;gt;&amp;amp;lt;ul id=&amp;quot;menu-main-menu&amp;quot;&amp;gt;&amp;lt;/code&amp;gt;) shown in the nav bar. This is entirely arbitrary, and it is highly unlikely that your selectors are the same. You need to adapt the code accordingly.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Alternate Method&amp;lt;/u&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
Go to My Theme -&amp;gt; Settings -&amp;gt; Analytics and JavaScript Code. Paste the following in the text area under&lt;br /&gt;
&lt;br /&gt;
&amp;quot;List any JavaScript or other code to be manually inserted inside the site's &amp;lt;head&amp;gt; tag in the input below.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush:php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;script type='text/javascript'&amp;gt;&lt;br /&gt;
jQuery(document).ready(function($) {&lt;br /&gt;
	    $(&amp;quot;#menu-main-menu li&amp;quot;).hover(function(){&lt;br /&gt;
	    $(this).find('ul:first').css({visibility: &amp;quot;visible&amp;quot;,display: &amp;quot;none&amp;quot;}).show(400);&lt;br /&gt;
	    },function(){&lt;br /&gt;
	    $(this).find('ul:first').css({visibility: &amp;quot;hidden&amp;quot;});&lt;br /&gt;
	});&lt;br /&gt;
&lt;br /&gt;
});&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;lt;code&amp;gt;menu-main-menu&amp;lt;/code&amp;gt; is the CSS ID of custom menu shown in the nav bar.&lt;br /&gt;
&lt;br /&gt;
Save settings.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Thanks to Ronald. Source: http://ithemes.com/forum/topic/30998-is-it-possible-to-add-a-slow-transition-effect-to-the-navbar/#entry144025&lt;br /&gt;
&lt;br /&gt;
Another similar forum topic: http://ithemes.com/forum/topic/21002-navigation-with-animated-effect/&lt;br /&gt;
&lt;br /&gt;
=== How to Clear Placeholder Text Upon Focus in Gravity Forms Fields ===&lt;br /&gt;
&lt;br /&gt;
[http://wordpress.org/extend/plugins/gravity-forms-placeholders/ Gravity Forms - Placeholders add-on] plugin can be used to add HTML5 placeholder support to Gravity Forms' fields with a javascript fallback. &amp;lt;code&amp;gt;gplaceholder&amp;lt;/code&amp;gt; CSS class should be added to text fields or textareas as needed, or to the form itself to enable this feature to all fields within it.&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
[[File:2013-02-04 20-35-47.png|513px|thumb|none]]&lt;br /&gt;
&lt;br /&gt;
Now all Gravity Forms' field labels will appear inside the fields as placeholder text.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Screen Shot 2013-02-04 at 8.39.24 PM.png|Before&lt;br /&gt;
File:Screen Shot 2013-02-04 at 8.39.33 PM.png|After&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The placeholder text will continue to appear when clicked or tabbed to inside a field, but will disappear when user starts typing.&lt;br /&gt;
&lt;br /&gt;
If you would like the fields' placeholder text to be cleared when a field gets focus, add the following at the end of child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt;:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// =========================================&lt;br /&gt;
// = Auto hide placeholder text upon focus =&lt;br /&gt;
// =========================================&lt;br /&gt;
&lt;br /&gt;
// load javascript in footer&lt;br /&gt;
add_action('wp_enqueue_scripts', 'add_my_code_3');&lt;br /&gt;
&lt;br /&gt;
function add_my_code_3() {&lt;br /&gt;
    add_action( 'print_footer_scripts', 'my_footer_script_3' );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// Add jQuery to footer&lt;br /&gt;
&lt;br /&gt;
function my_footer_script_3() { ?&amp;gt;&lt;br /&gt;
    &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
        jQuery(document).ready(function($) {&lt;br /&gt;
            $('.gform_wrapper').find(':input').each(function() {&lt;br /&gt;
                $(this).data('saveplaceholder', $(this).attr('placeholder'));&lt;br /&gt;
&lt;br /&gt;
                $(this).focusin(function() {&lt;br /&gt;
                    $(this).attr('placeholder', '');&lt;br /&gt;
                });&lt;br /&gt;
&lt;br /&gt;
                $(this).focusout(function() {&lt;br /&gt;
                    $(this).attr('placeholder', $(this).data('saveplaceholder'));&lt;br /&gt;
                });&lt;br /&gt;
&lt;br /&gt;
            })&lt;br /&gt;
        })&lt;br /&gt;
    &amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thanks to Ronald for providing this code [http://jsfiddle.net/ronald/KfZTp/ here].&lt;br /&gt;
&lt;br /&gt;
=== Loading Script in Footer on All Pages Except One ===&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
/* JMAC script load */&lt;br /&gt;
// load jquery and prepare javascript in footer&lt;br /&gt;
add_action('wp_enqueue_scripts', 'jmac_scripts_method');&lt;br /&gt;
function jmac_scripts_method() {&lt;br /&gt;
	wp_enqueue_script('jquery');&lt;br /&gt;
    add_action('print_footer_scripts', 'jmac_print_footer_scripts');&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// Add required javascript to footer&lt;br /&gt;
function jmac_print_footer_scripts() { if(!is_page('videoconferencing')) { ?&amp;gt;&lt;br /&gt;
	&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
		jQuery(document).ready(function($) {&lt;br /&gt;
		function toggleVideo(state) {&lt;br /&gt;
		    // if state == 'hide', hide. Else: show video&lt;br /&gt;
		    var div = document.getElementById(&amp;quot;popupVid&amp;quot;);&lt;br /&gt;
		    var iframe = div.getElementsByTagName(&amp;quot;iframe&amp;quot;)[0].contentWindow;&lt;br /&gt;
		    div.style.display = state == 'hide' ? 'none' : '';&lt;br /&gt;
		    func = state == 'hide' ? 'pauseVideo' : 'playVideo';&lt;br /&gt;
		    iframe.postMessage('{&amp;quot;event&amp;quot;:&amp;quot;command&amp;quot;,&amp;quot;func&amp;quot;:&amp;quot;' + func + '&amp;quot;,&amp;quot;args&amp;quot;:&amp;quot;&amp;quot;}','*');&lt;br /&gt;
		}&lt;br /&gt;
&lt;br /&gt;
		});&lt;br /&gt;
	&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
} }&lt;br /&gt;
/* JMAC script load end */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note: The focus of this wiki entry is not what the jQuery code does, but rather the if conditional used:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;if(!is_page('videoconferencing'))&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
where &amp;quot;videoconferencing&amp;quot; is the slug of Page in which jQuery code should NOT be loaded.&lt;br /&gt;
&lt;br /&gt;
Forum topic: http://ithemes.com/forum/topic/33305-script-in-footer-on-all-pages-except-one/&lt;br /&gt;
&lt;br /&gt;
=== Loading Script in Footer Only on Site's Front Page ===&lt;br /&gt;
&lt;br /&gt;
Ex.:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// prepare javascript in footer&lt;br /&gt;
add_action('wp_enqueue_scripts', 'add_my_script_4');&lt;br /&gt;
&lt;br /&gt;
function add_my_script_4() {&lt;br /&gt;
	add_action( 'print_footer_scripts', 'home_page_only_script' );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
// Add javascript to footer&lt;br /&gt;
function home_page_only_script() {&lt;br /&gt;
    if ( is_front_page() ) : ?&amp;gt;&lt;br /&gt;
        &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
        	//your javascript here...&lt;br /&gt;
        &amp;lt;/script&amp;gt;&lt;br /&gt;
	&amp;lt;?php endif;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thanks to Ronald. Source: http://ithemes.com/forum/topic/33473-adding-javascipt-to-home-page/#entry155302&lt;br /&gt;
&lt;br /&gt;
=== How to Create a &amp;quot;Stay-On-Top&amp;quot; element ===&lt;br /&gt;
&lt;br /&gt;
==== Method 1 ====&lt;br /&gt;
&lt;br /&gt;
Live Demos: [http://ithemes.com/ iThemes.com], [http://webdesign.com/ WebDesign.com]&lt;br /&gt;
&lt;br /&gt;
[[File:Parent page Builder Responsive Test Site.png|800px|thumb|none|Standard nav bar]]&lt;br /&gt;
&lt;br /&gt;
As the user scrolls down..&lt;br /&gt;
&lt;br /&gt;
[[File:2013-02-14 16-52-24.png|800px|thumb|none|As user scrolls below past the standard nav bar, it gets replaced by a nav bar in a fixed position at the top of browser. When user scrolls to top, it goes away]]&lt;br /&gt;
&lt;br /&gt;
'''1.''' Identify the selector of the element that you wish to stay on top. Firebug can be used for this.&lt;br /&gt;
&lt;br /&gt;
Ex.: &amp;lt;code&amp;gt;.builder-module-navigation-background-wrapper&amp;lt;/code&amp;gt; in case of a navigation module.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Add the following at the end of child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; (before closing PHP tag, if present):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// =========================================&lt;br /&gt;
// = &amp;quot;Stay-On-Top&amp;quot; element =&lt;br /&gt;
// =========================================&lt;br /&gt;
&lt;br /&gt;
add_action('wp_enqueue_scripts', 'add_my_code');&lt;br /&gt;
&lt;br /&gt;
function add_my_code() {&lt;br /&gt;
    add_action( 'print_footer_scripts', 'my_footer_script' );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
function my_footer_script() { ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    jQuery(function($) {&lt;br /&gt;
&lt;br /&gt;
      var filter = $('.builder-module-navigation-background-wrapper');&lt;br /&gt;
&lt;br /&gt;
      pos = filter.offset();&lt;br /&gt;
&lt;br /&gt;
      var filterSpacer = $('&amp;lt;div /&amp;gt;', {&lt;br /&gt;
        &amp;quot;class&amp;quot;: &amp;quot;filter-drop-spacer&amp;quot;,&lt;br /&gt;
        &amp;quot;height&amp;quot;: filter.outerHeight()&lt;br /&gt;
      });&lt;br /&gt;
&lt;br /&gt;
      var fixed = false;&lt;br /&gt;
&lt;br /&gt;
      $(window).scroll(function() {&lt;br /&gt;
&lt;br /&gt;
        if($(this).scrollTop() &amp;gt;= pos.top+filter.height() )&lt;br /&gt;
&lt;br /&gt;
          {&lt;br /&gt;
            if( !fixed )&lt;br /&gt;
              {&lt;br /&gt;
                fixed = true;&lt;br /&gt;
&lt;br /&gt;
                filter.fadeOut('fast', function() {&lt;br /&gt;
                  $(this).addClass('fixed').fadeIn('fast');&lt;br /&gt;
                  // $('.search_in_nav, .my-social-icons').hide();&lt;br /&gt;
                  $(this).before(filterSpacer);&lt;br /&gt;
                  });&lt;br /&gt;
              }&lt;br /&gt;
          }&lt;br /&gt;
&lt;br /&gt;
          else&lt;br /&gt;
&lt;br /&gt;
          {&lt;br /&gt;
            if( fixed )&lt;br /&gt;
              {&lt;br /&gt;
                fixed = false;&lt;br /&gt;
&lt;br /&gt;
                filter.fadeOut('fast', function() {&lt;br /&gt;
                  $(this).removeClass('fixed').fadeIn('fast');&lt;br /&gt;
                  // $('.search_in_nav, .my-social-icons').show();&lt;br /&gt;
                  filterSpacer.remove();&lt;br /&gt;
                });&lt;br /&gt;
              }&lt;br /&gt;
        }&lt;br /&gt;
      });&lt;br /&gt;
&lt;br /&gt;
    });&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;?php }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above, enter the selector from step 1 in the following line:&lt;br /&gt;
&lt;br /&gt;
 var filter = $('.builder-module-navigation-background-wrapper');&lt;br /&gt;
&lt;br /&gt;
(Optional) If you would like to hide any children of the element in fixed state, specify their selectors in the line below and remove the comment.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// $('.search_in_nav, .my-social-icons').hide();&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Remember to do similarly in the line below:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
// $('.search_in_nav, .my-social-icons').show();&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''3.''' Add the following at the end of child theme's style.css (WP dashboard -&amp;gt; Appearance -&amp;gt; Editor):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: css; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
.builder-module-navigation-background-wrapper.fixed {&lt;br /&gt;
	position: fixed;&lt;br /&gt;
	left: 0;&lt;br /&gt;
	top: 0;&lt;br /&gt;
	width: 100%;&lt;br /&gt;
&lt;br /&gt;
	-webkit-box-shadow: 0 0 40px #222;&lt;br /&gt;
	-moz-box-shadow: 0 0 40px #222;&lt;br /&gt;
	box-shadow: 0 0 40px #222;&lt;br /&gt;
&lt;br /&gt;
	background: rgba(255, 255, 255, 0.92);&lt;br /&gt;
	z-index: 100;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.admin-bar .builder-module-navigation-background-wrapper.fixed {&lt;br /&gt;
	top: 28px;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the above CSS code, ensure that correct selector is being used.&lt;br /&gt;
&lt;br /&gt;
Source: http://www.1stwebdesigner.com/tutorials/create-stay-on-top-menu-css3-jquery/ and http://ithemes.com/wp-content/themes/iThemes2012/js/ui.js&lt;br /&gt;
&lt;br /&gt;
==== Method 2: Using Sticky jQuery plugin in iThemes Builder  ====&lt;br /&gt;
&lt;br /&gt;
Below instructions can be used to make nav bar and a widget as sticky (fixed position and always visible) using the Sticky jQuery plugin.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|Pv8dZcmMr9E|640|none|Watch in 1080p HD and in full screen for best viewing experience}}&lt;br /&gt;
&lt;br /&gt;
Please note that I have tested it only in Builder Default child theme. Numbers in the code and CSS may have to be adjusted for other child themes.&lt;br /&gt;
&lt;br /&gt;
'''1.''' Download [http://stickyjs.com/ Sticky jQuery plugin]. Extract the zip file and upload jquery.sticky.js to /assets/sticky under site root.&lt;br /&gt;
&lt;br /&gt;
'''2.''' Add the following in child theme's &amp;lt;code&amp;gt;functions.php&amp;lt;/code&amp;gt; (before closing PHP tag if any):&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;brush: php; gutter: false;&amp;quot;&amp;gt;&lt;br /&gt;
add_action('wp_enqueue_scripts', 'add_my_code');&lt;br /&gt;
&lt;br /&gt;
function add_my_code() {&lt;br /&gt;
	wp_enqueue_script( 'jquery-sticky', get_bloginfo('wpurl') . '/assets/sticky/jquery.sticky.js', array('jquery'), '1.0', true );&lt;br /&gt;
    add_action( 'print_footer_scripts', 'my_footer_script' );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function my_footer_script() { ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;?php if(is_admin_bar_showing()) : ?&amp;gt;&lt;br /&gt;
	    &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
	    	jQuery(function($) {&lt;br /&gt;
            $(&amp;quot;.builder-module-navigation&amp;quot;).sticky({topSpacing: 28, getWidthFrom: &amp;quot;.builder-module-navigation-outer-wrapper&amp;quot;});&lt;br /&gt;
            $(&amp;quot;#meta-5&amp;quot;).sticky({topSpacing: 64});&lt;br /&gt;
        });&lt;br /&gt;
	    &amp;lt;/script&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;?php else : ?&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	    &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
	        jQuery(function($) {&lt;br /&gt;
	            $(&amp;quot;.builder-module-navigation&amp;quot;).sticky({topSpacing: 0, getWidthFrom: &amp;quot;.builder-module-navigation-outer-wrapper&amp;quot;});&lt;br /&gt;
	            $(&amp;quot;#meta-5&amp;quot;).sticky({t