this is what i got.
<ul id="headermenulist">
<li id="active"><a href="#" id="current">Home</a></li>
<li><a href="#">Link1</a></li>
<li><a href="#">Link1</a></li>
<li><a href="#">Link2</a></li>
<li><a href="#">Link3</a></li>
<li><a href="#">Link4</a></li>
<li><a href="#">Link5</a></li>
</ul>
and yes active would be they are on the home page and the arrow shows that.
as far as css i have
#headermenulist li{
display: inline;
list-style-type: none;
padding-right: 40px;
}
so its a horizontal list.
When they are on say the home page the id would be active like shown above.
But i dont know how to get just that to have an image above the text.
As of right now i have a header area like
Code:
|-------------------------------------|
|-------------------------------------|
| |
|-------------------------------------|
i want to do something like this.
Code:
|-------------------------------------|
|-----\/------------------------------|
| |
| Home Link1 Link2 Link3 |
| |
|-------------------------------------|
Where the text is going to be vertically centered. But the image will be way at the top there.
Bookmarks