Reply To: Change Front Page FROM Full Content TO Content & Sidebar

Homepage Community Forums Epik Theme Support Change Front Page FROM Full Content TO Content & Sidebar Reply To: Change Front Page FROM Full Content TO Content & Sidebar

#6633
francky
Customer

    Thank you Scooby!

    home.php changes;
    I have changed
    add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
    TO
    add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_content_sidebar' );

    and the width: 1152px; to width: 65.277777777%; in the following CSS parts;

    #welcome .wrap {
        margin: 0 auto;
        overflow: hidden;
        padding: 40px 0 0;
        width: 1152px;
    }
    #home-feature-bg .wrap {
    	margin: 0 auto;
    	overflow: hidden;
    	padding: 40px 0 0;
    	width: 1152px;
    }
    #home-feature-bg-alt .wrap {
    	margin: 0 auto;
    	overflow: hidden;
    	padding: 40px 0 0;
    	width: 1152px;
    }
    #home-feature-bg-dark .wrap {
    	margin: 0 auto;
    	overflow: hidden;
    	padding: 40px 0 0;
    	width: 1152px;
    }

    But it still didn’t work though I could tell I might be in the right direction.
    Would what other CSS stuffs am I supposed to change?
    Is there and other php file I have to touch too?

    I shall appreciate you help, Sir!