I got this solved by placing the [mwm-aal-display] tag in the main content and using custom CSS to move it to the left sidebar.
<div class="balinksLeftfixed">
[mwm-aal-display]
</div>
Then in my custom CSS I made it fixed (or absolute) positioned. Don’t forget a media query to hide it if you are using responsive design.
.balinksLeftfixed{
position:fixed;
left:0;
margin-left:10px;
}
@media all and (max-width: 767px) {
div.balinksLeftfixed{
display: none;
}
}