Quote Originally Posted by markus75 View Post
Hello, my website is http://footballmaniax.com/.

And below is how i edited that part of the stylesheet.css
I also edited the sidebox.gif to be 170px large.

PHP Code:
}
.
outer {
    
padding-left185px/* Same width as margin-left for the float-wrap div */
    
padding-right150px/* Our right column width */
}
.
inner {
    
width100%;
}
.
float-wrap {
    
floatleft;
    
width97%;
    
margin-left: -185px/* Same length as .outer padding-left but with negative value */
}
#content {
    
floatright;
    
margin-right: -185px/* Same length as .outer padding-left but with negative value */
    
width100%;
    
line-height:1.6;
    
positionrelative/* IE needs this  */ 
Thanks a lot in advance for your help
Lets say you increase the width of both sideboxes to 170px (20px more - the original is 150px), you'll need to open up includes/templates/cherry_zen/css/stylesheet.css and change .outer's padding-right to 170px (20 px more) and change all the instances of 165px in the section below, to 185px (20 px more)
That's from the readme, see the part in bold, that is what you missed.