[Theme: Diginews} Replacing a header with image
-
I have my logo uploaded as an image in my Library, but I need to replace the font I have with the image. Here’s the code:
<!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <meta name="viewport" content="width=device-width" /> <title><?php wp_title('|', true, 'left'); ?></title> <link rel="profile" href="https://gmpg.org/xfn/11" /> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <div id="container"> <?php do_action( 'before' ); ?> <header id="branding" role="banner"> <div id="inner-header" class="clearfix"> <hgroup id="site-heading"> <h1 id="site-title"><a>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> <h2 id="site-description"><?php bloginfo( 'description' ); ?></h2> </hgroup> <nav id="access" role="navigation"> <h1 class="assistive-text section-heading"><?php _e( 'Main menu', 'diginews' ); ?></h1> <div class="skip-link screen-reader-text"><a href="#content">"><?php _e( 'Skip to content', 'diginews' ); ?></a></div> <?php diginews_main_nav(); // Adjust using Menus in WordPress Admin ?> <?php get_search_form(); ?> </nav><!-- #access --> </div> </header><!-- #branding -->
[Use the Code buttons please]
What would I replace with the logo URL?
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘[Theme: Diginews} Replacing a header with image’ is closed to new replies.