Did you ever wonder how to make your header image clickable? Here’s what I did to my other site. Note that some steps differe depending on the theme you ar using.
Go to header.php, find the following code:
<div id=”header”>
And change it to:
<div id=”header” onclick=”location.href=’http://yourdomain.com/’”;” style=”cursor: pointer;”>
Voila, your header is now clickable!
If you are using a theme that has a code that looks like this:
<div id=”header”>
Then you paste this code instead:
<div id=”header” onclick=”location.href=’http://yourdomain.com/’”;” style=”cursor: pointer;”>
Does it work?
Popularity: 72% [?]






