Home › Community Forums › Optimal Theme Support › Question regarding home.php › Reply To: Question regarding home.php
December 3, 2012 at 3:17 pm
#2022

Customer
Ok, I have the following code loaded first in home.php
<?php
/** Add Generate Box after header **/
add_action( ‘genesis_after_header’, ‘generate_box’ );
function generate_box() {
if ( is_active_sidebar( ‘generate-box’ ) ) {
echo ‘<div id=”generate-box”><div class=”wrap”>’;
dynamic_sidebar( ‘generate-box’ );
echo ‘</div><!– end .wrap –></div><!– end #generate-box –>’;
}
}
add_action( ‘genesis_meta’, ‘optimal_home_genesis_meta’ );
/**
* Add widget support for homepage. If no
I’ve added all of the CSS except for the responsive. Nothing. None of the CSS is showing up. Is this code affecting that?