Forum Moderators: not2easy
What I want to know is if this same effect is possible with out using an image?
Before I had this effect with images as links in a navigation bar. When I rolled over each image for its respected link a layer would show/un hide then go back to the default layer.
I am not sure if this is possible to do with my new project where I am trying to use no images for my navigation area.
Thanks for the ideas.
Anyway, I hoped that helped.
<style>
.navbox {
width: 600px;
display: inline;
}
.navbox, .navbox a:link {
background: #eee;
width: 150px;
height: 26px;
}
.navbox a:link, .navbox a:hover {
display: block;
float: left;
text-align: center;
}
.navbox a:hover {
background: #ccc;
color: #333;
width: 144px;
border: 3px double #222;
height: 20px;
}
</style>
<div class="navbox">
<a href="#">One link</a> <a href="#">Another</a> <a href="#">And another</a> <a href="#">Enough?</a>
</div>