admin管理员组

文章数量:1390204

am trying to develop my own wordpress custom,am having problems trying to add a sidebar float left e.g something like Twenty Sixteen theme. please help am still learning. Thank you.

am trying to develop my own wordpress custom,am having problems trying to add a sidebar float left e.g something like Twenty Sixteen theme. please help am still learning. Thank you.

Share Improve this question asked Feb 22, 2020 at 17:58 Mulusa ProMulusa Pro 75 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

You would do something like this with your CSS. Setting a fixed height and whatnot is only for example purposes:

#content {
  background: brown;
  width: 75%;
  height: 500px;
  float: left;
}

#sidebar {
  background: gray;
  width: 25%;
  height: 500px;
  float: left;
}
<div id="content"></div>
<div id="sidebar"></div>

本文标签: How to make sidebar float right and site content left