sifr链接颜色不变

时间:2009-09-24 16:52:46

标签: sifr

我试图替换我网站上的链接样式,似乎字体面被成功替换,但它没有采用颜色和文本装饰。这是我的剧本:

<script type="text/javascript">var archermed = {src: 'archermed.swf'}; sIFR.activate(archermed);sIFR.replace(archermed, {selector: '.CollectionTopTabHdr',css: '.sIFR-root {font-size:14px; color:#663399; text-decoration; font-weight:normal; margin:0;} a, a:link, a:visited, a:active {color:#663399; text-decoration:none;}',wmode: 'transparent'});</script>

这是我的HTML代码:

<div class="CollectionTopTabHdr"><a href="#">LINK</a></div>

提前致谢! 18fis

1 个答案:

答案 0 :(得分:0)

我从另一个问题中发现我需要将css中的链接状态分开,所以这就是我所做的,它现在有用了!:

sIFR.replace(archerbold, {selector: '.sifrHeader',css: ['.sIFR-root { font-size:14px; color: #663399;}','a { text-decoration: none; color: #663399; }','a:link { color: #663399; }','a:hover { color: #663399; }','a:active {color:#663399;}'],offsetTop: -1, tuneHeight: 0,wmode: 'transparent', forceSingleLine: true});