Hi,<br />
<br />
on the following site <a class='bbc_url' href='
http://www.eclipse.org/birt/phoenix/project/notable2.5.php#jump_14'>New and Notable Features within BIRT 2.5</a> I found a discription for styling hyperlink. So i wrote a css file with the code below and tried to import or to use this external css-file in my Birt-project:<br />
<br />
a:link{<br />
color: black;<br />
text-decoration: none;<br />
}<br />
<br />
a:visited{<br />
color: black;<br />
text-decoration: none;<br />
}<br />
<br />
a:hover{<br />
color: black;<br />
text-decoration: none;<br />
}<br />
<br />
a:aktive{<br />
color: black;<br />
text-decoration: none;<br />
}<br />
<br />
The problem is that birt(2.5.1) says he cannot import style.<br />
I also tried something like this:<br />
.table-header a:link{<br />
background : grey;<br />
font-size : 12pt;<br />
}<br />
<br />
Someone has an idea why it doesnt work?