解决wordpress文档界面显示宽度窄

内容纲要

问题现象

在文档界面的右边存在大量空白,并且左边的内容空间太小
file

解决方法

在footer.php的最后一行加入如下代码即可

<script>  
        if(window.location.href.match('/index.php/docs/')){
                jQuery("#primary").css("max-width", "100%")
            }else{
                jQuery("#primary").css("max-width", "")
            }</script>

zakra主题需要如下修改:

<script>  
        if(window.location.href.match('/index.php/docs/')){
                jQuery("#primary").css("width", "100%")
            }else{
                jQuery("#primary").css("width", "70%")
            }</script>
解决wordpress文档界面显示宽度窄

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

滚动到顶部