Cs Tip01: 怎样让Default皮肤全屏

译自: http://soup.co.za/weblog/archive/2006/03/20/6.aspx

第一个Tip很简单.
有人问我怎样去掉在Default皮肤cs中的边框?
答案是我们需要修改Default皮肤文件下的Common.css

1. 打开安装文件夹下的 /Themes/default/style/common.css
2. 您需要定位到#common 标记下
#Common {
        margin-top: 0px;
        border-top: solid 6px #bbde79;
        background-color: #ffffff;
        width: auto;
        margin-left: 35px;
        margin-right: 35px;
        }
  • 您需要去掉左边和右边的margin, 变成下面这样
    #Common {
            margin-top: 0px;
            border-top: solid 6px #bbde79;
            background-color: #ffffff;
            width: auto;
            }
  • 为了好看一些您可以把您可以把背景色从#606060改为#FFF(白色#FFFFFF的缩写).

    注意: 在Gallery.css中重载了#Common标记,这意味着与Gallery.css相关的页面都将不会全屏,您可以在Gallery.css中删掉#Common标记,他们不再有用,或者您也可以像上面一样删掉#Common.css中的margin

  • posted on 2006-07-24 05:36  xwang  阅读(446)  评论(0编辑  收藏  举报

    导航