宠儿博客吧 关注:132贴子:1,417
  • 2回复贴,共1

想问大家2个问题。

收藏回复

  • 60.176.107.*
就是这张图。

为什么标题颜色变掉,还有下划线。
下面的首页。上一页下一页。尾页也是。都变掉了。


如何将下面的首页。上一页下一页。尾页的字体大小变成日志那种字的大小。还有那个被过滤广告的字的大小也是,是不是有代码?还是。


1楼2008-05-10 17:08回复
    • 60.176.107.*
    补充


    2楼2008-05-10 17:10
    回复
      2025-05-19 22:36:23
      广告
      这个要定义CSS,就是定义连接的颜色.
      代码类似:
      <style>a {
       font-size: 12px;
      }
      a:link {
       color: #000000;
       text-decoration: none;
      }
      a:visited {
       text-decoration: none;
       color: #000000;
      }
      a:hover {
       text-decoration: none;
       color: #000000;
      }
      a:active {
       text-decoration: none;
       color: #000000;
      }
      --></STYLE>

      其中COLOR后面的是颜色代码.那个可以随意修改,想知道都是什么颜色,请看下面的地址来对照:
      http://www.crblog.cn/user1/1305/archives/2006/76589.html


      禁言 |3楼2008-05-12 06:10
      回复