I use the following wrapper to limit my pages to 1000px wide, centered:
I do, however, occasionally have illustrations which are a lot wider than 1000px, and I would like to move them to the absolute left of the screen. How can I achieve this with CSS?
-Peter
Code:
#wrapper {
width: 99%;
margin: 1em auto 0 auto;
max-width: 1000px;
min-width: 554px;
text-align: left;
font-size: 80%;}
-Peter