start to edit header.php – at the end: change from this:
<div id="body">
<div id="body_top">
<div id="body_left">
<div id="body_left_content">
to this:
<div id="body">
<div id="body_top">
<?php include("sidebar2.php") ?>
<div id="body_left">
<div id="body_left_content">
(read for instance: https://www.quickonlinetips.com/archives/2007/11/how-to-create-multiple-dynamic-sidebars-for-wordpress-widgets/)
make a copy of ‘sidebar.php’ and name it ‘sidebar2.php’, save it in the theme folder (the same folder you got sidebar.php from).
edit ‘sidebar2.php’: end up with this code in there, sidebar2 code
edit ‘functions.php’: only at the beginning functions code (only the first 16 lines are different – copy them from the link without the line numbers, scroll further down to get the code)
edit style.css at a few places:
(assuming and tested with sidebar2 width:190px)
add these new lines:
#sidebar2 {
width:190px;
float:left;
margin-left:10px;
margin-top: 15px;
}
find these and edit the numbers:
#body_left{
width:460px; /*was 670px without sidebar2 wide 190px*/
float:left;
#body_left_content{
width:415px; /*was 615px without sidebar2 wide 190px*/
padding:25px 0 0 30px;
}
#respond{
margin:40px 15px 0 10px; /*reduced 30px to 10px*/
padding-bottom:60px;
}
#commentform{
margin-left:25px; /*reduced from 55px*/
color:#000000;
font-size:12px;
width:80%;
font-family:Arial, Helvetica, sans-serif;
}
this should be all, not intensively tested:
good luck, ??