making header image a link in Attitude free theme
-
details:
using WP 3.6, Attitude free theme, site: https://www.macofficesupplies.co.ukIf you look at the home page I have created for my client there is a header with an email address in. I would like to make that header image or the email text area link to an ‘open new email’ link.
Ive looked at the header code and I cant see the image code in there. Ive tried to follow other suggestions and nothing seems to do the trick. Ive found the css that effects the header area but not the actual code to make a link.
header code is:
<?php /** * Displays the header section of the theme. * * @package Theme Horse * @subpackage Attitude * @since Attitude 1.0 */ ?> <!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <?php /** * attitude_title hook * * HOOKED_FUNCTION_NAME PRIORITY * * attitude_add_meta 5 * attitude_show_title 10 * */ do_action( 'attitude_title' ); /** * attitude_meta hook */ do_action( 'attitude_meta' ); /** * attitude_links hook * * HOOKED_FUNCTION_NAME PRIORITY * * attitude_add_links 10 * attitude_favicon 15 * attitude_webpageicon 20 * */ do_action( 'attitude_links' ); /** * This hook is important for wordpress plugins and other many things */ wp_head(); ?> </head> <body <?php body_class(); ?>> <?php /** * attitude_before hook */ do_action( 'attitude_before' ); ?> <div class="wrapper"> <?php /** * attitude_before_header hook */ do_action( 'attitude_before_header' ); ?> <header id="branding" > <?php /** * attitude_header hook * * HOOKED_FUNCTION_NAME PRIORITY * * attitude_headerdetails 10 */ do_action( 'attitude_header' ); ?> </header> <?php /** * attitude_after_header hook */ do_action( 'attitude_after_header' ); ?> <?php /** * attitude_before_main hook */ do_action( 'attitude_before_main' ); ?> <div id="main" class="container clearfix">
Can anybody help me please. Thanks.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘making header image a link in Attitude free theme’ is closed to new replies.