Please help, I can't add a link to my header image
-
I use the theme Catch Evolution. I’d like to redirect to the homepage when clicking the header image. I’ve searched a lot and I can’t find the solution since I have no idea of CSS programming.
I have this code in header.php
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id=”main”>
*
* @package Catch Themes
* @subpackage Catch_Evolution_Pro
* @since Catch Evolution 1.0
*/
?><!DOCTYPE html>
<!–[if IE 6]>
<html id=”ie6″ <?php language_attributes(); ?>>
<![endif]–>
<!–[if IE 7]>
<html id=”ie7″ <?php language_attributes(); ?>>
<![endif]–>
<!–[if IE 8]>
<html id=”ie8″ <?php language_attributes(); ?>>
<![endif]–>
<!–[if !(IE 6) | !(IE 7) | !(IE 8) ]><!–>
<html <?php language_attributes(); ?>>
<!–<![endif]–>
<head>
<meta charset=”<?php bloginfo( ‘charset’ ); ?>” />
<title><?php if ( is_home() ) { ?><? bloginfo(‘name’); ?> – <?php bloginfo(‘description’); } else { wp_title(”); } ?></title>
<link rel=”profile” href=”http://gmpg.org/xfn/11″ />
<link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>” />
<?php
/* Always have wp_head() just before the closing </head>
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to <head> such
* as styles, scripts, and meta tags.
*/
wp_head();
?>
</head><body <?php body_class(); ?>>
<?php
/**
* catchevolution_before hook
*/
do_action( ‘catchevolution_before’ ); ?><div id=”page” class=”hfeed site”>
<?php
/**
* catchevolution_before_header hook
*/
do_action( ‘catchevolution_before_header’ ); ?><header id=”branding” role=”banner”>
<?php
/**
* catchevolution_before_headercontent hook
*
* @hooked catchevolution_header_topsidebar – 10
*/
do_action( ‘catchevolution_before_headercontent’ ); ?><div id=”header-content” class=”clearfix”>
<div class=”wrapper”>
<?php
/**
* catchevolution_headercontent hook
*
* @hooked catchevolution_headerdetails – 10
* @hooked catchevolution_header_rightpsidebar – 15
*/
do_action( ‘catchevolution_headercontent’ ); ?>
</div><!– .wrapper –><?php
/**
* catchevolution_after_headercontent hook
*
* @hooked catchevolution_header_menu – 10
*/
do_action( ‘catchevolution_after_headercontent’ ); ?><!– #branding –>
<?php
/**
* catchevolution_after_header hook
*
* @hooked catchevolution_featured_header – 10
* @hooked catchevolution_header_menu – 15
*/
do_action( ‘catchevolution_after_header’ ); ?><?php
/**
* catchevolution_before_main hook
*/
do_action( ‘catchevolution_before_main’ );
?><div id=”main” class=”clearfix”>
<div class=”wrapper”><?php
/**
* catchevolution_before_contentsidebarwrap hook
*/
do_action( ‘catchevolution_before_contentsidebarwrap’ );
?><div class=”content-sidebar-wrap”>
<?php
/**
* catchevolution_before_primary hook
*
* @hooked catchevolution_slider_display – 10 if full width image slide is selected
*/
do_action( ‘catchevolution_before_primary’ ); ?><div id=”primary”>
<?php do_action( ‘catchevolution_before_content’ ); ?>
<div id=”content” role=”main”>
<?php
/**
* catchevolution_content hook
*
* @hooked catchevolution_slider_display – 10 if full width image slide is not selected
*/
do_action( ‘catchevolution_content’ ); ?>Thanks
The blog I need help with is: (visible only to logged in users)
-
Hi there, It looks like you are using WordPress but you are not hosted here at WordPress.com. For self-hosted WordPress sites, you should ask for help from the theme author directly or ask in the volunteer-based forums for self-hosted WordPress.org setups at http://wordpress.org/support/.
- The topic ‘Please help, I can't add a link to my header image’ is closed to new replies.