If the only reason you want to do that is because the corner image doesn't look right, let me know and I can give you one that matches your site.
If not, and you just want those boxes gone....
In style_main.css.php, find this:
Code:
/******************************************************************
Rounded corners for some boxes
******************************************************************/
.boxc {
position:relative;
border: silver solid 1px;
padding: 10px;
}
.boxc b.cn {
height: 10px;
width: 10px;
background: url(https://www.woodwickcandles.ca/store/squirrelcart/themes/squirrelcart/images/corner.gif) no-repeat;
position:absolute;
}
.boxc b.tl {
top: -2px;
left: -2px;
background-position: top left;
}
.boxc b.tr {
top: -2px;
right: -2px;
background-position: top right;
}
.boxc b.bl {
bottom: -2px;
left: -2px;
background-position: bottom left;
}
.boxc b.br {
bottom: -2px;
right: -2px;
background-position: bottom right;
}
Change to this:
Code:
.boxc {
padding: 10px;
}
If you don't want that padding, you can remove that entire block of code replacing it with nothing.
FYI - you still have something screwy going on with your CSS. You have 2 link tags for style_main.css.php. You should fix that first before trying the above.