i've tryed to do something for ya, but i'm not sure i understood you right.
try this code i've wirtten for you and see if it fits your needs!
Code:
<html>
<head>
<title>
</title>
<style type="text/css">
#hoverlink {
width: 300px;
padding: 0;
margin: 5px;
}
#hoverlink ul {
list-style-type: none;
}
#hoverlink ul li {
border: 1px dotted gray;
border-width: 1px 0;
margin: 5px 0;
}
#hoverlink ul li a {
text-decoration: none;
background-color: black;/*set the color you want*/
color: red;/*set the color you want*/
display: block;
padding: 5px;
}
* html #hoverlink li a {
width: 300px;
margin: 5px 0;
}
#hoverlink a:hover {
background-color: yellow;/*set the color you want*/
}
</style>
</head>
<body>
<div id="hoverlink">
<ul>
<li><a href="link.html"><h3>Something</h3>
<p>And here comes the text you need to link</p></a>
</li>
<li><a href="link2.html"><h3>Something New</h3>
<p>Something you want to link to</p></a>
</li>
</ul>
</div>
</body>
Bookmarks