Hello,
I believe I have the same problem. See my website here:
http://abigenten007.net/jopold//index.php
I want the template to utilize as much screen space as possible, i.e. there are two possible concepts:
1. The left and right columns align to the left and right browser window borders, the center is in the relative middle with the content being of fixed width but the layout "table" spanning the whole distance between left and right menu.
2. The left and right menu align to the center layout or contentbox. But I want that A LOT wider.
I am quite sure that I need to tweak this part of the layout.css
:
#mainbody {
float:left;
width:80%;
}
#right {
float:right;
width:20%;
overflow:hidden;
margin-left:-3px;
}
#left {
float:left;
width:25%;
overflow:hidden;
margin-right:-3px;
}
#content {
float:right;
width:75%;
overflow:hidden;
}
/*left only*/
#mainbody_L {
float:left;
width:100%;
}
#content_L {
float:right;
width:75%;
overflow:hidden;
}
#left_L {
float:left;
width:25%;
overflow:hidden;
margin-right:-3px;
}
/*right only*/
#mainbody_R{
float:left;
width:75%;
}
#content_R {
float:right;
width:100%;
overflow:hidden;
}
#right_R {
float:right;
width:25%;
overflow:hidden;
margin-left:-3px;
}[/code]
BUt I don't know how! I have tried every combination of widths that made sense to me, and about 30% yielded a functioninig but unsatisfactory result.
So , I want to know: Can I use more screenspace/width with this template
AT ALL?