最近有朋友问如何去掉 Discuz!NT 默认的广告样式里的那张小 AD 图片,其实不用改代码,这是样式表控制了,找到你当前使用的网站模板,我的是默认的,所以就在 templates/default/ 里有个dnt.css文件,打开后找到下面这段代码:
  1. /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Advertisments ~~~~ */
  2. #ad_headerbanner { float: right; margin-top: 4px; }
  3. .ad_text { border: 1px solid #DCE6F1; margin-bottom: 10px; padding: 6px; background: #FFF url(images/portalbox_bg.gif); background-repeat: repeat-x; }
  4. .ad_text table { width: 100%; border-collapse: collapse; }
  5. .ad_text td { background-repeat: repeat-x; background-position: 0 0; padding: 2px 10px; }
  6. .ad_textlink1 { float: left; white-space: nowrap; }
  7. .ad_textlink2 { margin: 10px; }
  8. .ad_textlink1,.ad_textlink2 { padding-left: 25px; background: url(images/ad_icon.gif) no-repeat 0 50%; }
  9. .ad_pip { clear: right; float: right; display: inline; margin: 10px 10px 10px; }
  10. .ad_topicrelated { clear: both; float: right; display: inline; margin: 0 10px 10px; padding: 10px 10px 10px 30px; border: 1px solid #78A73D; background: #CAEEC0; }
  11. .ad_column { text-align: center; margin-bottom: 10px; }
  12. .ad_footerbanner { text-align: center; clear: both; margin:5px; }
复制代码
这是控制广告样式的CSS,将里面的.ad_textlink相关样式去掉或修改即可,改后如下:

  1. /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Advertisments ~~~~ */
  2. #ad_headerbanner { float: right; margin-top: 4px; }
  3. .ad_text { border: 1px solid #DCE6F1; margin-bottom: 10px; padding: 6px; background: #FFF url(images/portalbox_bg.gif); background-repeat: repeat-x; }
  4. .ad_text table { width: 100%; border-collapse: collapse; }
  5. .ad_text td { background-repeat: repeat-x; background-position: 0 0; padding: 2px 10px; }
  6. .ad_textlink1 { float: left; white-space: nowrap; }
  7. .ad_pip { clear: right; float: right; display: inline; margin: 10px 10px 10px; }
  8. .ad_topicrelated { clear: both; float: right; display: inline; margin: 0 10px 10px; padding: 10px 10px 10px 30px; border: 1px solid #78A73D; background: #CAEEC0; }
  9. .ad_column { text-align: center; margin-bottom: 10px; }
  10. .ad_footerbanner { text-align: center; clear: both; margin:5px; }
复制代码
当然你也可以根据自己的喜好修改,完工

文/cobra  出处/拼吾爱程序人生
TOP