Hi,
In your functions.php file at around line 107 you will find this:
//* Add My Custom Footer Links
add_filter('genesis_footer_creds_text', 'custom_footer_creds_text');
function custom_footer_creds_text($creds) {
$creds = '[footer_copyright] ' . get_bloginfo('name') . ' • <a href="http://wpgeothemes.com/theme/geo-travel/">Geo Travel Theme</a> by <a href="http://wpgeothemes.com/">WP Geo Themes</a>';
return $creds;
}
You can change that to whatever you like.
For the footer colour, in your style.css file at around line 1744 you will find this:
.site-footer {
background-color: #fff;
border-top: 4px solid #bfefff;
font-size: 16px;
line-height: 1;
padding: 40px 0;
text-align: center;
}
Change the background-color property to your desired colour.
🙂