How can I set Upcoming Event List width and height in my web page.

You can override the automatic height and width of an Upcoming Event List on any web page.  This is accomplished by including a javascript function in the <head> of your web page and also an onload function in the <body> tag of your web page.

Here is an example of a simple web page:

<HTML>
<head>
<SCRIPT LANGUAGE="JavaScript">
// Function to resize CalendarWiz Upcoming Event List.
// Just edit the height and width and include this function
// in the head of your web page.  Also include an onload
// call to this function in the body tag of your web page

function resizelist(){
  var newwidth = 400;
  var newheight = 600;
  var  listobj = document.getElementById("cwucelist");
  listobj.style.width = newwidth;
  listobj.style.height = newheight;
}
</SCRIPT>
</head>
<BODY onLoad="resizelist();">
<TABLE>
<TR>   
<TD>
<script type="text/javascript"
src="http://www.calendarwiz.com/calendars/ucfeeder.php?
crd=yourcalendaridentifier"></script>
</TD>   
</TR>
</TABLE>
</BODY>
</HTML>

Remember to change the ucfeeder script with the scripts for your calendar created on the Web Tools Administration page.