Hi,
I guess I will start this category off by asking what seems to be a simple question:
How do you get the email icon (or print icon etc) to sit at the top right part of the contentitem div?
Here is the relevant HTML:
<div class="contentitem">
<h2>Title goes here</h2>
<div class="buttonheading">
<span class="EmailIcon">
<a title="... email link sits here..."/>
</a>
</span>
</div>
(...)
</div>
And here is what I thought I should put in my .css file:
div.buttonheading{
float:right;
position:absolute;
top:0;}
But this sends the icons way up to the top of the screen, based on the body tag I guess. How can I have the icons sit at the top right of the div.contentitem?
Anyone?
/anders