Forum Replies Created
-
AuthorPosts
-
mweb
MemberThanks, yes I'm aware that there are other ways to do this. I just don't know how, which is why I'm asking.
I'm trying to get a header that looks like the current one, but with the logo being clickable.
mweb
MemberThanks, but can you provide a bit more of a hint?
This is where it's probably gone wrong:
// Sets up Custom Header
remove_action( 'genesis_header', 'genesis_do_header' );
add_action( 'genesis_header', 'genesis_do_new_header' );function genesis_do_new_header() {
echo '<div>';
do_action( 'genesis_site_title' );
echo '</div>';echo '<div class="fp-nav-menu">';
echo '<div class="genesis-nav-menu">';
do_action( 'genesis_header_right' );
dynamic_sidebar( 'header-right' );
echo '</div>';
echo '</div>';
}Embarrassingly, I don't remember why I did it that way. I was very new to Genesis, and WordPress, then. Now, even if I take it all out, clicking the image still doesn't do anything.
April 19, 2016 at 5:25 am in reply to: Header Right Menu Formatting Gone – Now Showing Skip Links #183899mweb
MemberNever mind. The answer is, invalid CSS. Somehow deleted a closing }
mweb
MemberNever mind, it was a problem with the css. I had looked at that again and again, but am apparently going blind.
Sorry, and thanks.
MW
-
AuthorPosts