Discuz修改笔记-去除导航栏图片

打开文件

template/default/common/common.css

第一步

找到

ing-right: 1px; height: 33px; line-height: 33px; background: url({IMGDIR}/nv_a.png) no-repeat 100% 0; font-weight: 700; font-size: 14px; }

修改为

ing-right: 1px; height: 33px; line-height: 33px; background: url() no-repeat 100% 0; font-weight: 700; font-size: 14px; }

第二步

找到

#mu ul { background: url({IMGDIR}/mu_bg.png) no-repeat 0 100%; line-height: 22px; z-index: 2; font-size: 12px; }

修改为

#mu ul { {MENUHOVERBGCODE}; line-height: 22px; z-index: 2; font-size: 12px; }

第三步

找到

#nv li.hover a:hover, #nv li.hover a { background: url({IMGDIR}/nv_a.png) no-repeat 50% -99px; }

修改为

#nv li.hover a:hover, #nv li.hover a { {MENUHOVERBGCODE}}

第四步

找到

#nv li a:hover { background: url({IMGDIR}/nv_a.png) no-repeat 50% -66px; }

修改为

#nv li a:hover { {MENUHOVERBGCODE} }

你可能感兴趣的:(Discuz修改笔记-去除导航栏图片)