Reply To: Question regarding home.php

Homepage Community Forums Optimal Theme Support Question regarding home.php Reply To: Question regarding home.php

#2022
walidmrealtor
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?