Add in a hover color to text or your title:
#replacetext a:hover { background: #000; text-decoration: none; }
You will need to replacetext area with your div id.
The code for adding in a custom header effect for your header or image:
index.php: (this is just for the front page. you will need to have this code in your single.php and page.php for your header to show up across every page of your site)
css:
a.id {
background: url(“imagelinkhere”) no-repeat scroll 0 0 transparent;
height: 305px;
position: fixed(which will make it stay in place even when you scroll);
text-indent: -9999px;
width: 305px;
}
a.id:hover { background-position: 0 -305px; }
Let us know how it goes by sharing a link in the comment section to your site.
Any questions? Feel free to ask them in the comment section.
*kyle

