make logo and search box center in genesis framework

Make logo and search box center in Genesis

make logo and search box center in genesis framework

Sometimes you need to make logo and search box center in genesis framework. That’d be easy. Just tweak some CSS. Caution: make sure your CSS is backed up to avoid unwanted awkward styling.

Just add these codes in style.css in Genesis framework.

/**make sure you are adding search in top right widgets **/

.site-header .widget-area {
    /* float: right; */
    width: 500px;
    margin: 0 auto;
}

.title-area {
    font-weight: 700;
    /* float: left; */
    overflow: hidden;
    width: 320px;
    /* margin: auto 0; */
    text-align: center;
    margin: 0 auto;
}

See live example

customize footer in Genesis Framework

How to customize footer in Genesis Framework

customize footer in Genesis Framework
If you need to customize footer in genesis framework manually, then follow these snippets. Just add one of the codes snippets in functions.php you are done.

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
//* Customize the credits
add_filter( 'genesis_footer_creds_text', 'sp_footer_creds_text' );
function sp_footer_creds_text() {
	echo '<div class="creds"><p>';
	echo 'Copyright &copy; ';
	echo date('Y');
	echo ' &middot; <a href="http://mydomain.com">My Custom Link</a> &middot; Built on the <a href="http://www.studiopress.com/themes/genesis" title="Genesis Framework">Genesis Framework</a>';
	echo '</p></div>';
}
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
//* Change the footer text
add_filter('genesis_footer_creds_text', 'sp_footer_creds_filter');
function sp_footer_creds_filter( $creds ) {
	$creds = '[footer_copyright] &middot; <a href="http://mydomain.com">My Custom Link</a> &middot; Built on the <a href="http://www.studiopress.com/themes/genesis" title="Genesis Framework">Genesis Framework</a>';
	return $creds;
}

The codes source is here.

Although you can use this plugins called “Genesis Simple Edits” to edit/change the footer texts.