Hi,
Both of my sites look okay in IE7 and FF, but they are off in older browsers. They both are too wide even though I have them set to go no wider than 850. What did I do wrong?
Any ideas?
Thanks,
Kelly
Kelly Ann
Raven Media, LLC
I am redesigning my site using the cherry zen template (which by the way is awesome) however I am running into a problem that I am not sure how to fix. Currently if you check out my create account page my Zip/Postal code box is being pushed to the right hand side. I did modify the width of the template and also added a bunch of mods but I can't see anything that would specifically relate to the moving of just that box. You can see what I mean by going to my work site.
http://oldsite.lotsofgifts.net/index...create_account
Any insight would be greatly appreciated. I would hate to have just one little flaw after spending a bunch of time redesigning my site.![]()
FORUM:
# a public meeting or assembly for open discussion
#An online discussion group, where participants with common interests can exchange open messages.
# a public facility to meet for open discussion
Hi,
I tried to use the stylesheet_dropshadow css to apple zen template, i also did copy all the images wich the css looks for..but unable to get thhe dropshadow look for the productinfo page.. is there anything i miss??
Because there are two sections that control width, one for IE, one for other browsers:
Code:#nw { width:80%; /* main site width; if you'd prefer a fixed width site, enter the width in px here. */ max-width:850px; /* prevents the main content from getting wider than 1300px in sites other than IE */ min-width:850px; /* 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 */ } /* IE only. Controls Width of Site and Main Content*/ * html #nw { width:expression((d=document.compatMode=="CSS1Compat" ? document.documentElement : document.body) && (d.clientWidth > 1300? "1300px" : d.clientWidth > 1048? "80%" : d.clientWidth < 1048? "1000px" : "80%")); /* this prevents the site from getting smaller than 1000px or wider than 1300px in IE */ }
So you would change the IE section to this:
Code:/* IE only. Controls Width of Site and Main Content*/ * html #nw { width:expression((d=document.compatMode=="CSS1Compat" ? document.documentElement : document.body) && (d.clientWidth > 1300? "850px" : d.clientWidth > 1048? "80%" : d.clientWidth < 1048? "850px" : "80%")); /* this prevents the site from getting smaller than 1000px or wider than 1300px in IE */ }
Though I'm not sure why you'd not want it to resize for people with wide browser windows?
Well, you said you already uploaded the shadow css, so I thought you already had that covered.
Add this to your stylesheet.css:
/* css for product image drop shadow and border. To disable the drop shadow and border, simply delete or comment out this section */
#productMainImage {
float:left;
background: url("../images/shadowAlpha.png") no-repeat bottom right !important;
background: url("../images/shadow.gif") no-repeat bottom right;
margin: 10px 0 0 10px !important;
margin: 10px 0 0 5px;
}
#productMainImage img {
display: block;
position: relative;
background: #ffffff;
margin: -3px 6px 6px -3px;
border: 1px solid #a9a9a9; /* defines the border for the product image. To remove the border delete or comment out this line, AND padding: 4px; below */
padding: 4px;
}
/* end css for product image drop shadow */
Bookmarks