将侧边栏从左改为右二十四个主题

时间:2014-04-24 作者:sosytee

我正在创建一个使用2014主题的网站。我想保持主题,但我有兴趣将侧栏从左向右移动,因为它更适合我的网站。是否可以通过这种方式自定义主题。

1 个回复
SO网友:wpcoder

这是一篇老文章,但它需要知道解决方案和操作方法。专门用于RTL 经验

Usefull tutorial here

正如@Mayeenul所说,first create a child theme (视频)

然后添加到CSS file 在儿童主题中:

.sidebar {
        float: right; // the side bar will be on right
        margin-left: -100%;
        max-width: 413px;
        position: relative;
        width: 29.4118%;
    }
.main {
        display: block;
        float: left; //the content will be on left
        margin-right: 29.4118%;
        width: 70.5882%;
    }
请注意,您可能需要根据您的工作主题更改提要栏和main的选择器,即。.sidebar 可能是#theme-sidebar.main 可能是#theme-main, 等

结束

相关推荐

show tags on "single"-template sidebar only

如果一篇帖子有标签,我想在查看单个帖子时,只在侧栏中显示这些标签作为列表;我该怎么做?我已经搜索了一个合适的插件,但没有找到,因为我查找的所有插件最终都显示了网站上的每个标签或类别。我很乐意使用非插件解决方案。

将侧边栏从左改为右二十四个主题 - 小码农CODE - 行之有效找到问题解决它

将侧边栏从左改为右二十四个主题

时间:2014-04-24 作者:sosytee

我正在创建一个使用2014主题的网站。我想保持主题,但我有兴趣将侧栏从左向右移动,因为它更适合我的网站。是否可以通过这种方式自定义主题。

1 个回复
SO网友:wpcoder

这是一篇老文章,但它需要知道解决方案和操作方法。专门用于RTL 经验

Usefull tutorial here

正如@Mayeenul所说,first create a child theme (视频)

然后添加到CSS file 在儿童主题中:

.sidebar {
        float: right; // the side bar will be on right
        margin-left: -100%;
        max-width: 413px;
        position: relative;
        width: 29.4118%;
    }
.main {
        display: block;
        float: left; //the content will be on left
        margin-right: 29.4118%;
        width: 70.5882%;
    }
请注意,您可能需要根据您的工作主题更改提要栏和main的选择器,即。.sidebar 可能是#theme-sidebar.main 可能是#theme-main, 等

相关推荐

“Sidebar”模板中包含评论计数的最近帖子

我试过这个代码,但它完全破坏了我的网站。我想这是因为我在侧栏模板中WP\\u查询的神圣帖子上下文中做错了什么。请一些WP专家更正此代码好吗?<?php $args = array( \'orderby\' => \'date\' ,\'order\' => \'DESC\' ,\'showposts\'=>6 ); $my_query = new WP_Query($args);