| View previous topic :: View next topic |
| Author |
Message |
Ash 1000+ Club

Joined: 03 Aug 2005 Posts: 1016 Location: England
|
Posted: Sat Sep 17, 2005 7:22 pm Post subject: Mouseovers |
|
|
Ok I am trying to make a webpage that uses mouse overs but niether images appear.
| Code: |
<td class="nav_this"><a href="#">
<img src="http://www.freewebs.com/corrosiongfx/images/home.gif" width="73" height="27" border="0"></a></td>
<td class="nav" onMouseOver="this.className='nav_over'" onMouseOut="this.className='nav'"> |
What is wrong here? |
|
| Back to top |
|
 |
|
|
webmaster Site Admin

Joined: 17 Aug 2004 Posts: 3612 Location: Sweden
|
Posted: Sat Sep 17, 2005 7:39 pm Post subject: Re: Mouseovers |
|
|
Theese are the ones I made for DEVPPL (uses them in the menu in the top)
HTML:
| Code: |
| <a href="sida.html" id="img1"></a> |
CSS:
| Code: |
#img1
{
width: 96px;
height: 134px;
overflow: hidden;
background: url(../images/image.gif) top left no-repeat;
display: inline;
float: left;
}
#img1:hover
{
background-position: bottom left;
} |
|
|
| Back to top |
|
 |
|