Sorry if the post title is not clear. I am wondering if there is a way to over-ride the CSS which renders the text widget in my sidebar. Every single sidebar widget I currently activate such as categories calender etc.. take on the following CSS from my style.css for my theme
//Renders the top part of a sidebar widget
.sidemenu-head {
float:right;
background-image: url('images/sidemenu-head.gif');
width:200px;
height:50px
}
Renders the body of the sidebar widget
.sidemenu-content {
float:right;
background: url('images/sidemenu-content.gif') repeat-y;
font: 12px Arial;
color: #737373;
width: 200px;
}
Renders the bottom of the sidebar widget
.sidemen-foot {
float: right;
background-image: url('images/sidemen-foot.gif');
width:200px;
height:15px;
margin-bottom: 10px
}
I would like only the text widget not to take on the above CSS so that it will come out clear when I add an instances of it to the sidebar. Is this possible? In other words I am asking is there a way to override this to make it not take on the default CSS from my style.css file.

