Hello dkth,
Blogging CM's are really a pain to work with. If it will let you make these changes I've highlighted in red, you can use that space taken by the 120px of padding in the sidebar you now have.
Make sure you have a backup that you can restore from in case this all goes wrong!!!
CSS -
Code:
.post {
line-height: 1.6;
margin-bottom: 25px;
overflow: hidden;
/*width: 115%;*/
word-wrap: break-word;
}
/*#sidebar {
padding-left: 120px;
}*/
#side2 {
height: 600px; /*demo only*/
width: 120px;
float: left;
background: #f00; /*demo only*/
}
And add this bit to your markup -
Code:
});
</script><script type="text/javascript">
(function() {
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = '//pagead2.googlesyndication.com/pagead/js/google_top_exp.js';
var head = document.getElementsByTagName('head')[0];
if (head) {
head.appendChild(script);
}})();
</script>
</div></div>
<div id="side2">sidebar content here</div>
<div class="grid_4 omega section" id="sidebar"><div class="widget HTML" id="HTML745">
<form action="/search" class="searchform" method="get">
<input class="searchfield" name="q" onblur="if (this.value == '') {this.value = 'Search...';}" onfocus="if (this.value == 'Search...') {this.value = '';}" value="Search..." type="text">
<input class="searchbutton" value="Go" type="submit">
</form>
</div><div class="widget PageList" id="PageList1">
<div class="widget-content">
<ul>
<li class="selected"><a href="http://finallymommy.blogspot.com/">Home</a></li>
</ul>
<div class="clear"></div>
<span class="widget-item-control">
<span class="item-control blog-admin">
<a class="quickedit" href="//www.blogger.com/rearrange?blogID=7632064660253456606&widgetType=PageList&widgetId=PageList1&action=editWidget&sectionId=sidebar" onclick="return _WidgetManager._PopupConfig(document.getElementById("PageList1"));" target="configPageList1" title="Edit">
<img alt="" src="http://img1.blogblog.com/img/icon18_wrench_allbkg.png" height="18" width="18">
</a>
Something you need to now about is the Box Model. See the
box model here. The box model says that whatever you put inside an element cannot be larger than that element. margin/padding/border all count when figuring width/height.
In otherwords, if you want you posts to be 15% wider than their container, you are taking room from those sidebars. If you want to change the sidebars width, you will need to look at those elements in #sidebar, like your 300px wide ads.