CSS - Max width help
Trying to keep things simple, sometimes I use the 'max-width' and 'min-width' properties of CSS. Makes it simple if you are letting someone upload images to a site for you.
For example, blogCFC has a slideshow function. Here's an example. Ok.. so you've got this slideshow and you are letting someone else upload the images or create totally new slideshows.. Telling them to keep the images a to a certain width is all fine but.. People tend to "forget" and then you may have an image or two soooo big that they break your lay-out. Well, that's were the 'max-width' property would come in. In your style sheet you could add something like:
.slideshow img {
max-width: 150px;
}
Another property is the 'min-width' which, the liquid skin of blogCFC uses in the layout css. It sets the minimum width of the page to 800 pixels.. looking like this in the style sheet:
#page{
width:90%;
min-width:800px;
margin: 0 auto 0 auto;
padding: 0 0 10px 0;
}
<script type="text/javascript" src="/folder/minmax.js"></script>



Does the aspect ratio remain intact when using max-width?
D.