Hi,
To achieve that, you will have to make more custom work on your site from css file
- Open templates/ja_wall/css/layout.css file
/* Sidebar ---*/
body.has-sidebar #container .container-main {
padding-left: 120px; /* Space for sidebar */
}
#sidebar {
margin-left: -120px;
position: fixed;
top: 70px; /* Space for header */
width: 120px;
}
- Open templates/ja_wall/css/template.css file
/* Sidebar Nav */
#sidebar .menu li a {
border-radius: 3px;
color: #999;
display: inline-block;
line-height: normal;
max-width: 100px;
overflow: hidden;
padding: 2px 5px;
text-overflow: ellipsis;
text-transform: uppercase;
white-space: nowrap;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
/* Sidebar ---*/
#sidebar {
color: #999;
font-size: 92%;
text-align: right;
text-shadow: 0 1px 0 #FFF;
}
and change values for properties like width, left or text from script above.
Regards