It is very difficult to edit a genesis theme for the beginners or those who don’t have much knowledge about programming. Hopefully,this post will help you out in learning and modifying the genesis theme to some extent. First of all , open the child theme of genesis framework and then go to functions.php file and insert the below snippet.
Use the below hook to insert a block of text or an image just after the site title or logo .
genesis_site_title
function banner_below_logo() {
echo “<div id=’banner_logo’>Text below banner</div>”;
};
add_action(‘genesis_site_title’, ‘banner_below_logo’);