
Originally Posted by
FatGuyinAZ
Hello,
I have installed this template on my demo site where I am trying to get it set the way I like for my main site. I have changed the column width for left and right to 225px and I have adjusted the necessary images for the template so it looks good. I would like to change a few other things but I can’t seem to figure them out.
1. I would like the site to expand automatically to almost 100%. Say about 97% so that the background image still shows on the left and right side. About the same amount shows on each side as shows at the top (about ½”).
2. When viewing the demo site with a screen set at 800 x 600 the right side product column bleeds into the right sidebox column. I can’t seem to find the place to add padding or whatever is needed to keep it out of that right sidebox column. When viewing with a larger screen size I was able to set the .float-wrap width from 97% to 90%. I am not sure that was the right thing to do but it seemed to work. If there is a correct way to set this I would love to find out.
3. Lastly, the background image extends just a fraction above the left and right column sidebox header. You can see it in the picture just below the Cherry Zen logo.
I have drawn arrows to all three items in the picture below. Any help would be greatly appreciated.
The demo site I am working on is:
http://www.swiker.com/demo
Thank you
Please post smaller images in the future, thanks!
1. Change the width in the stylesheet.css to the percentage you'd like:
Code:
#nw {
width:80%; /* main site width; if you'd prefer a fixed width site, enter the width in px here. */
max-width:1300px /* prevents the main content from getting wider than 1300px in sites other than IE */
min-width:1000px; /* this prevents the main content from getting smaller than 1000px in browsers OTHER THAN IE. You can make this as small as 800px, BUT any smaller than that, and the top header menu will break into two lines. Also, if you make this width 800px, you will need to make sure your product image on the product info page is no wider than 190px */
}
2. Add this to your css:
Code:
* html #navColumnTwo {
margin-right: -170px !important; /* Fixes IE6 Issue */
}
This is specifically for IE6, and it may not address your issue, but it will fix an issue in IE6. 
Code:
You might want to also change .contentWrap to this:
.contentWrap{
padding: 5px;
}
3. You can add this to your css:
Code:
h3.leftBoxHeading, h3.rightBoxHeading {margin:0!important;}
Bookmarks