You are Here :- Home Wordpress Designing

Remove Home Content Bar of Daily Theme

Theme Junkie’s Daily theme’s Home Content Bar seems pretty odd and unnecessary to me that’s why i removed it. Are you using Theme Junkie’s Daily theme and wanna remove daily theme’s Home Content Bar? Just follow my step by step instructions to remove home content bar.

remove-Home-Content-Bar

Very 1st open index.php file via notepad or WordPad and remove below lines.

<div class=”content-bar”>
<?php
if(is_active_sidebar(‘home-content-bar’))
dynamic_sidebar(‘home-content-bar’);
else { ?>
<div class=”widget”>
<h3 class=”section-title”><?php _e(‘Home Content Bar’, ‘themejunkie’); ?></h3>
<div class=”textwidget”>
<p>Drag Widgets to this widget area from Dashboard -> Appearance -> Widgets</p>
</div>
</div>
<?php } ?>
</div>

Then open functions.php and remove below lines.

// Home Right Content
register_sidebar( array (
‘name’ => __( ‘Home Content Bar’, ‘themejunkie’ ),
‘id’ => ‘home-content-bar’,
‘before_widget’ => ‘<div id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => “</div>”,
‘before_title’ => ‘<h3 class=”section-title”>’,
‘after_title’ => ‘</h3>’,
) );

Your very last job is to modify style.css file

.content-loop { float:left; width:479px; overflow:hidden; border-right:1px solid #ECEDE8; }

Search above  line it’s located into /* LAYOUT */ Change width:479px to 670.

Everything done.