我最近扩展了一个儿童主题,从“提示和窍门”到“215”主题,我想我应该与大家分享如何将侧边栏向右移动。在扩展的儿童主题中,我将侧边栏从215主题中完全删除,因为有些人更喜欢这样使用它。您可以下载子主题here 并更改代码以将侧栏恢复到右侧:
更改以下代码:
.sidebar {
float: none !important;
margin-right: 0px;
max-width: 413px;
position: relative !important;
width: 29.4118%;
background: #fff;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
display: none;
}
至
.sidebar {
float: right;
margin-right: 0px;
max-width: 413px;
position: relative !important;
width: 29.4118%;
background: #fff;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
}