First, get the Firebug add on for Fireforx. This will make your life much easier if you are redesigning.

Next, when using Firebug, realize the DIV that controls that section (at least on your site) is:

#rightFloat

which in your stylesheet is set to:

#rightFloat {
float:left;
width:45%;


}


Change that percentage to something else till you like it. If you have Firebug you can text this right in the browser without having to reload the file.



-lindasdd