I will paypal anyone $5 USD dollars who can help me with a real simple CSS problem. I just want to add a hover box (or whatever) to a background image over some text. That way when someone mouses over the logo, and clicks, it brings them back to the main page. This is whats on the CSS stylesheet: #header { width: 100%; background: #000; height: 100%; background: #FFF url('images/banner.jpg') top center repeat-y; } Code (markup): ...and if it helps, here is the header.php <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head profile="http://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <title><?php if(is_home() || is_search()) { bloginfo('name'); echo ' - '; bloginfo('description'); } else { wp_title('') ;} ?></title> <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats --> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" /> <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <?php wp_get_archives('type=monthly&format=link'); ?> <?php wp_head(); ?> </head> <body> <div id="page"> <div id="header"> <div id="header_left"> <!-- <h1><a href="<?php echo get_settings('home'); ?>"><?php bloginfo('name'); ?></a></h1> --> <!-- <div class="description"><?php bloginfo('description'); ?></div> --> </div> <div id="header_right"> <div id="subscribe"> <a href="<?php bloginfo('rss_url'); ?>" title="Subscribe to RSS feed" rel="nofollow"><img src="<?php bloginfo('template_url'); ?>/images/rss-feed-button.jpg" alt="Subscribe to RSS feed" /></a> </div> </div> <div style="clear:both;"></div> </div> <hr /> Code (markup): Please PM me for website link, and to make sure someone didn't beat you too it :-P