无限星辰工作室-客户无限互联网动力之源

标题: 升级Discuz!X3.2后站点宽窄风格失效的解决方案 [打印本页]

作者: crx349    时间: 2014-6-8 00:30
标题: 升级Discuz!X3.2后站点宽窄风格失效的解决方案

升级到 X3.2 后宽窄风格失效
经查是css加载问题

查找源码发现

      
  1. <!--{if widthauto()}-->
  2.                 <link rel="stylesheet" id="css_widthauto" type="text/css" href='{$_G['setting']['csspath']}{STYLEID}_widthauto?{VERHASH}' />
  3.                 <script type="text/javascript">HTMLNODE.className += ' widthauto'</script>
  4.         <!--{/if}-->
复制代码




将源码改成如下就OK了


      
  1. <!--{if widthauto()}-->
  2.                 <link rel="stylesheet" id="css_widthauto" type="text/css" href='{$_G['setting']['csspath']}{STYLEID}_widthauto.css?{VERHASH}' />
  3.                 <script type="text/javascript">HTMLNODE.className += ' widthauto'</script>
  4.         <!--{/if}-->
复制代码


原因是少写了个.css





欢迎光临 无限星辰工作室-客户无限互联网动力之源 (https://www.xmspace.net/) Powered by Discuz! X3.4