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 badges1 Answer
Reset to default 0You 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>
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744722906a4590015.html
评论列表(0条)