Wait a second...
This is weird...
When I put:
Code:
<img src="images/art.jpg">
It comes in normal at full size.
When I put:
Code:
<img src="images/art.jpg" width="100%" height="100%">
It comes in at 50%...
Code:
<img src="images/art.jpg" width="50%" height="50%">
That makes it come in even smaller. I'm not sure why it is working all of the sudden. Maybe I have to define the original widths and heights in like javascript or something. Any ideas?
EDIT:
Here is a page I made, check the code see what's up...
Notice that the image at 100% isn't that same size as the original and the one at 50% isn't 50% than the original...
http://dizzythermal.oxyhostsfree.com/picture.html
That's the page... Thanks guys!
EDIT: I was also thinking that I might be able to use JAVASCRIPT (like I said before)
Code:
<script type="text/javascript">
if (document.images)
{
picture = new Image
picture.src = 'picture.bmp'
picture.width = '200px'
picture.height = '200px'
}
</script>
This didn't work, not sure if this 'might' work and I just have the wrong syntax.
__________________