Global.css dosyanızda;

#container {
width: 100%;
}

yapın. Daha sonra yine #container satırında min-width ve max-width kodlarını silin. Genişliği %100 olacaktır.

Son olarak, köşeleri kıvrılmasın istiyorsanız yine #container içerisinde border-radius ve -webkit-border-radius kodlarını silebilirsiniz.

Css dosyanız aşağıdaki gibi olmalı;


#container {
width: 100%;
color: #fc0;
text-align: left;
line-height: 1.4;
margin: auto;
margin-bottom: 10px;
border: 2px solid #fc0;
border-top: 0;
-webkit-box-shadow: 0 0 5px 2px #000;
-moz-box-shadow: 0 0 5px 2px #000;
box-shadow: 0 0 5px 2px #000;
border-bottom-left-radius: 8px;
-moz-border-radius-bottomleft: 8px;
-webkit-border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
-moz-border-radius-bottomright: 8px;
-webkit-border-bottom-right-radius: 8px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
border-radius: 25px;
overflow: hidden;
font-family: Tahoma,Verdana,Arial,Sans-Serif;
font-size: 13px;
}


Eğer köşeleri düz olsun istiyorsanız;


#container {
width: 100%;
color: #fc0;
text-align: left;
line-height: 1.4;
margin: auto;
margin-bottom: 10px;
border: 2px solid #fc0;
border-top: 0;
-webkit-box-shadow: 0 0 5px 2px #000;
-moz-box-shadow: 0 0 5px 2px #000;
box-shadow: 0 0 5px 2px #000;
overflow: hidden;
font-family: Tahoma,Verdana,Arial,Sans-Serif;
font-size: 13px;
}