Hello,
I apologize if this has been asked before but after searching for it I could not find anything. I am trying to remove a white box that is appearing above the “Recent Posts” box on a comments page. I’m pretty sure the CSS code is this (but changing to the visibility to hidden breaks all the boxes below it):
.sidebar div.sidebar-wrap {
background: #fff;
-moz-box-shadow: 0 0 5px #bbb;
-webkit-box-shadow: 0 0 5px #bbb;
box-shadow: 0 0 5px #bbb;
-moz-box-shadow: 0 0 5px rgba(0,0,0,0.15);
-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.15);
box-shadow: 0 0 5px rgba(0,0,0,0.15);
margin-bottom: 16px;
padding: 10px 12px;
position: relative;
}
Here is a link to a picture of what I am referring to:
http://imgur.com/w5HuzoD
Also, this kind of goes along with this question — Is there a way to change the text that appears on the top of these boxes on a comment page (Recent Posts, Recent Comments, Archive, etc. for example)?
Thank you very much for your time!