I'd suggest one of the forums from this Google listing:
http://www.google.com/search?client=...utf-8&oe=utf-8
as being more directly related to your issue. However, the simple answer would be to find its selector in the stylesheet and adjust the dimensions there. If, as sometimes happens in elaborate CMS setups, the width and height are set elsewhere in the code, you can usually override that with the !important qualifier in the stylesheet, example:
Code:
selector {
width:300px!important;
height:100px!important;
}
where selector is the selector for the element controlling the dimensions of the cutenews display box.
Bookmarks