|
From: Alessandro P. <al...@ti...> - 2003-06-11 07:44:38
|
hi all...
more on CSS and skinnability:
in wrap.html and admin/wrap.html you can find a lot of occourances like:
<td><a href="bug.php?op=add"><font
class="navlink">{$STRING.WRAP.AddNewBug}</font></a></td>
this causes any eventual personalization of the <a> tag in CSS to be clobbered
by the <font> tag (which is also deprecated in current HTML specs AFAIK).
Suggested changes for wrap.html and admin/wrap.html :
<td><a href="bug.php?op=add"
class="navlink">{$STRING.WRAP.AddNewBug}</a></td>
and in default.css the following changes have to get applied conseguently:
- .navlink {
+ a.navlink:link, a.navlink:visited, a.navlink:active {
+ a.navlink:hover {
+ text-decoration: underline;
+ }
bye,
Alessandro
--
Alessandro Pisani (TXM) - alextxm at tin dot it
ICQ: 2209087 - AIM: TXM J578
"It's a great thing when you realize you still have the
ability to surprise yourself. It makes you wonder what else
you can do, that you have forgotten about."
- Lester Burnam [from "American Beauty"]
|