Hello all! I have a quick question.. I sized the sub-category images to 120*120 for the binoculars category, but then i found a way to max size & min size (Set to 120*120 so i dont have to manually resize the images). So I did this on the Camp Kitchen categories and the ones below it. My problem: Everything is fine in Firefox, but in IE it completely ignores that part of the CSS.. I'm fairly new to CSS so i believe it's a simple fix. Sorry I dont have the .css here right now but most of you probably have web developer =). the Here is my site: http://www.shop.greenwayoutdoors.com Thanks!
max-width, max-height and min-width, min-height are not supported in IE6, do not know about IE7 though
Read more tutorials on internet. Search Google for it, and see how other users do it. If you use firefox i'd recommend you to use Web Developer Toolbar extension for that. And of course, good luck
Well the best way to go about it would be to use ImageMagick or some other software that creates thumbnails for you on-the-fly as it'd use less bandwidth. You might want to look at your site in Opera too!
Internet Explorer 5 and 6 do not understand min/max-width/height; however IE 5/6 will treat height as min-height (if you want to force IE 5/6 to treat height as height, you have to use the overflow property to do so). As far as min-width is concerned, there are two ways to go about it - extra markup (HTML and CSS) or scripting. The two links below are perfect examples of this (in order). http://www.pmob.co.uk/temp/min-width-ie.htm http://friendlybit.com/css/min-width-and-max-width-template/ Note that the second link also covers max-width for IE 5/6 as well.