Help with hover effect?

Jmanyoma

New Member
Hey guy's im currently designing a website for a friend and i'm looking to adding a highlight or hover effect to the seperate div tags.

I was looking to have something similar to this http://rostrumrecords.com/ when you hover over the area of the artist.

Thank you for any help
 

Jmanyoma

New Member
I need the hover effect but not for text. I'm sure its something else but not sure what.

The site is working again, help anyone?
 

JakClark

New Member
Code:
<!DOCTYPE html>
<html>
<head>
	<title>CSS Hover Pseudo</title>
	<style>
		body { margin:20px; padding:0; background:#000; }
		
		div.example { padding:10px; width:200px; height:350px; font-family:Arial; font-size:12px; font-weight:bold; border:1px solid #DADADA; color:#fff; }
		div.example:hover { background:#DADADA; color:#000; }
	</style>
</head>
<body>
	<div class="example">
		Hover over me!
	</div>
</body>
</html>

This should help. No more than actually reading the example Chris posted, though.
 
Top