not2easy

msg:4424180 | 4:38 pm on Mar 2, 2012 (gmt 0) |
Without seeing any more than you have here I would suggest that you remove inline styling: style="border:0;width:100%" and style your image borders in css. I would also suggest staying away from decimal percentages in your css and let the container set the image width. I could be wrong, but that is all I could suggest from the snippets posted.
|
Marshall

msg:4424182 | 4:41 pm on Mar 2, 2012 (gmt 0) |
Is there a reason the images have to be in their own <div>? Why not put them in line <img src=""><img src=""> etc then set the <div> to the width of the combined images width and the height ti the image height with no padding. You can also add white-space: nowrap to the <div> using this method. Marshall
|
KeesH

msg:4424685 | 10:14 am on Mar 4, 2012 (gmt 0) |
Gents, I solved the problem. The issue doesn't really belong here. I just noticed that the IE9 didn't pickup the CSS file at all. And because I recently was upgraded to an IIS 7.5 server and I also changed the MIMETYPE settings in my web.config for CSS files. That did the trick: What went terrible wrong in my web.config is this: <remove fileExtension=".css" /> <mimeMap fileExtension=".css" mimeType="text/css; charset=UTF-8" /> Just keep it to this: <remove fileExtension=".css" /> <mimeMap fileExtension=".css" mimeType="text/css" /> So no explicit charset settings here! Thanks anyhow. Kees
|
alt131

msg:4430580 | 3:51 pm on Mar 18, 2012 (gmt 0) |
Hey KeesH, I'm coming to this very late - but welcome back to css. Pleased you have this fixed, and thanks for posting the solution. A good reminder to look a little more broadly because style issues aren't always in the css itself :)
|
|