Hi CafeChatNoir,
A quick fix for your problem might be to add !important
after your width value in #sidebar
– ie:
#sidebar {
float: left;
width: 250px;
/* background: url(images/sidebar.gif) no-repeat top right;*/
font-size: 0.9em;
text-align: left;
}
becomes
#sidebar {
float: left;
width: 250px !important;
/* background: url(images/sidebar.gif) no-repeat top right;*/
font-size: 0.9em;
text-align: left;
}
Hope this helps!