这是一篇老文章,但它需要知道解决方案和操作方法。专门用于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
, 等