div tag in jsf
Hi,
i have header in my jsf where i put my text over the existent image:
<h:panelGrid>
<div id="lastimport">
my lastimport
</div>
</h:panelgrid>
and my stylesheet has following:
...
#lastimport
{
position:absolute; top:38px; left:685px;
}
...
now i would like to change the div-tags through jsf-tags. Unfortunately i didn磘 find appropriate jsf tag. I tried with:
<h:outputText styleClass = "lastimport" value="my last import ">
</h:outputText>
but the text appeared not at the place i wanted and its important for me to keep my design (stylesheet).
Is there any possibility to solve this problem?

