<div id="ARDiv" style="bottom: 10px; float: left; position: fixed; height:200px ; width:161px;">
</div>
In this Div Images are shown one after the other using jquery
what i want to do is fix the height and width of the image so that it doesn’t get bigger than
height:200px ; width:161px;
EDIT: This is just how my adrotator works-
$("#ARDiv").adrotator({ intervalTime: 3000, xmlFileName: 'Adrotator.xml' });
You can do it with css like so
or with jquery after you insert the image add this
.height(200).width(161);