sharepoint 2010 隐藏左边菜单left menu样式脚本

来源:互联网 发布:mac 安装 复杂 编辑:程序博客网 时间:2024/04/28 07:30

转:http://www.cfanz.cn/?c=article&a=read&id=60536

在v4.master中,<head></head>标签中,加入如下样式脚本,就可以将左边菜单隐藏。

<style type="text/css">
 #s4-leftpanel {
    display:none !important;
 }
 .s4-ca{
    margin-left:0px !important;
 }
< /style>


0 0