Try changing this in your CSS code:
Code:
/***************************************************************************/
/* This is the container for the whole page */
/***************************************************************************/
.page {
max-width:none;
min-width:none;
position:relative;
padding:5px;
margin:0 auto;
text-align:left;
}
to this:
Code:
/***************************************************************************/
/* This is the container for the whole page */
/***************************************************************************/
.page {
width:100%;
position:relative;
padding:5px;
margin:0 auto;
text-align:left;
}
Bookmarks