Re: [css-d] Images defined as %

2007-01-31 Thread Chris Ovenden
Here's something I did a while back that relies heavily on image scaling: http://alisonmg.com/galleries/landscapes/show.php Chris -- Chris Ovenden http://thepeer.blogspot.com Imagine all the people / Sharing all the world __

Re: [css-d] Images defined as %

2007-01-31 Thread Michael Stevens
Looks good... I've run into IE problems and they way it does't work properly. My layout is a little odd with basically a two column layout with one big picture on the left and two little pictures on the right stacked on top of each other with two separate images underneath those three forming a

[css-d] Images defined as %

2007-01-30 Thread Michael Stevens
I'm working on redesigning a site converting it from some horrendous, completely non-compliant code using tables throughout, into XHTML CSS. What I've got is: A page that has a min-width: 725px and max-width: 975px. The header fills the entire width. leftmenu is 143px wide floated left.

Re: [css-d] Images defined as %

2007-01-30 Thread Gunlaug Sørtun
Michael Stevens wrote: [...] What I'd like is the images be placed as a % NOT according to the font-size but according to how large content is. If the minimum window of 800x600 is used the images need to be smaller. If the browser is out to the max at 1024x768 then the images can be larger.

Re: [css-d] Images defined as %

2007-01-30 Thread Michael Stevens
Excellent... So, I drop img src=... width=200 height=100 alt= into my HTML and .scaledimages {width: 30%;} in my CSS and the CSS % dimensions will overide the width of the image dropped into the HTML? Seems like a conflict... or do I remove the width height from the img tag? There won't be a

Re: [css-d] Images defined as %

2007-01-30 Thread Gunlaug Sørtun
Michael Stevens wrote: So, I drop img src=... width=200 height=100 alt= into my HTML and .scaledimages {width: 30%;} in my CSS and the CSS % dimensions will overide the width of the image dropped into the HTML? Seems like a conflict... or do I remove the width height from the img tag? The