Hi smack,
I'v seen your website. You have narrowed the left side from 160px to 100px right?
So, you have 60px that you wanna add to 'middle wrap', yes?
Ok, there are several values in several files to change:
1. Open
index.php file, find this declaration (perhaps line 32-38):
if ( $mrightall == 0 ) {
$bodycontentwidth = 916;
if ( $mleft == 0 ) {$maincontentwidth = 916;}
} else {
$bodycontentwidth = 746;
if ( $mleft == 1 ) {$maincontentwidth = 576;} <--- change this value to 636
}
2. Open
joomla.css, find this:
a.mainlevel:link, a.mainlevel:visited {
display: block;
background: transparent;
border-bottom: 2px dotted #993300;
vertical-align: middle;
font-size: 11px;
font-weight: bold;
color: #ff9900;
text-align: left;
padding-top: 5px;
padding-left: 10px;
height: 18px !important;
height: 25px;
width: 150px !important; <-- change 150px to 90px
width: 160px; <-- change 160px to 110px (could be different for ie)
text-decoration: none;
}
3. The last, open
custom.css, find this:
#left_module_wrap {
width: 160px; <-- change 160px to 100px
float: left;
margin-right: 10px;
}
I hope this could help..
regards