Mr A
Mr A

Reputation: 6778

Automatically setting image width and height with Coin slider

I am using jquery coinslider , What I am looking for is to fix the image size and height , Is there any plugins out there which can automatically change the height and width of an image to certain pixels.

<div id='coin-slider'>

<a href="#" target="_blank">

    <img src='@img01.jpg' > //size should be 960 x 305 , cant use height and width as it will disturb the pixel definition  </a> </div>

Upvotes: 1

Views: 4255

Answers (2)

prgDevelop
prgDevelop

Reputation: 1587

Answered the question here:

Resize issue with coin slider

Upvotes: 1

noob
noob

Reputation: 9212

If you wana change the image size and hight generaly just do it in the instalation of coinslider

$('#coin-slider').coinslider({ width: 960, height: 305 });

Upvotes: 0

Related Questions