Yeah, your page titles are too long.
Find the lines below in skin.css and change the width for the leftcolumn and the MainMenu_MenuContainer and the margin for the centercolumn2
#leftcolumn {float:left;width:200px;}
.MainMenu_MenuContainer{ background:#FFF; width:200px; height:1px; border:#D6DCE0 solid; border-width:1px 0px; margin-bottom:5px; }
#centercolumn2{ width:auto !important; width:100%; margin:0px 0px 0px 203px !important; margin:0px; }
Try something like
#leftcolumn {float:left;width:260px;}
.MainMenu_MenuContainer{ background:#FFF; width:260px; height:1px; border:#D6DCE0 solid; border-width:1px 0px; margin-bottom:5px; }
#centercolumn2{ width:auto !important; width:100%; margin:0px 0px 0px 263px !important; margin:0px; }
|