Homepage › Community Forums › Epik Theme Support › Upgrade from 1.4 to 1.4.1 › Reply To: Upgrade from 1.4 to 1.4.1
Oh I see, you’re using the Primary Navigation that’s why the responsive icon isn’t showing up as it was only designed for the Menu that is used in the Header Right widget area (just like the demo). Most people use the Header Right for their menu so that’s why it originally worked for that particular menu. However, if you would prefer to use the Primary Menu area instead of the Header Right, then you can use the newer version 1.4.1 and it will automatically work since I’ve added the code in for that menu area.
I’m guessing you got the footer code from this page right? – http://my.studiopress.com/snippets/footer/#custom-footer Are you sure you don’t have any code anywhere else that edits your footer? I’d recommend using one of the other code snippets instead. Try this one for the entire footer area –
//* Customize the entire footer
remove_action( 'genesis_footer', 'genesis_do_footer' );
add_action( 'genesis_footer', 'sp_custom_footer' );
function sp_custom_footer() {
?>
<p>© Copyright 2012 <a href="http://mydomain.com/">My Domain</a> · All Rights Reserved · Powered by <a href="http://wordpress.org/">WordPress</a> · <a href="http://mydomain.com/wp-admin">Admin</a></p>
<?php
}
I didn’t see a logo/image, but I did see text on your site which shows up fine on my end (checking from an iPhone).
