Reputation: 37
Can anyone offer suggestions as to how I can get the "new" icon to display correctly as absolute over the forum category images? my website
I want it to display over each category image, yet it only does the first one.
Upvotes: 0
Views: 86
Reputation: 43810
use the css :
ul.listf li {
...
position: relative;
}
and for the new image:
ul.listf li .newf{
...
position:absolute;
top:12px;
left: 143px;
}
the important part is setting your list item position to relative so the absolute position will depend on the position of the list
Upvotes: 2