Welcome to LyndaRoxanne.Com your eBay auction help site!
AuctionSniper.com - Powerful eBay sniping solutions.




How to Change the Dimensions of an Image

You can resize an image by adding width and height commands to your HTML image tag.
The image we'll be resizing is below. First, we'll need to know the current height and width of our image. Right-click on the image immediately below and click on Properties and you'll see the image dimensions listed in pixels. This image is 333 pixels wide and 223 pixels high, lets make it one third larger.

This is the tag before we add new attributes to it down arrow

<IMG SRC="http://yourimagehost.com/yourname/yourpicsname">

And this is how it looks when when we make it one third larger down arrow

<IMG SRC="http://yourimagehost.com/yourname/yourpicsname" WIDTH="444" HEIGHT="297">

To make it half its size, we'll just halve the dimensions like this down arrow

<IMG SRC="http://yourimagehost.com/yourname/yourpicsname" WIDTH="166.5" HEIGHT="111.5">


Click here to pracice your HTML