标签: html css wordpress sidebar
http://judopassion.com/wordpress/
我会移动leftSidebar,现在位于右侧边栏下方,位于内容的左侧,如下图所示:
我要添加什么css代码? 提前谢谢。
答案 0 :(得分:1)
要让它看起来像右边的图像,您必须在模板上重新排序标记,以便<aside id="leftSidebar"></aside>在文档流程中<div id="content">之前出现。
<aside id="leftSidebar"></aside>
<div id="content">
在给定所有现有填充等的情况下,您还必须将#content的宽度减少到476px。