Contentflow auto resize issues

823 Views Asked by At

I'm using this javascript plugin: http://jacksasylum.eu/ContentFlow/

Well, I'm a beginner in js programming and I have this problem:

When I resize the browser window, the images are reduced too. But i don't have any idea how to turn off the resize function. I tried to comment many lines of codes that have .resize or something but it didn't work. I was searching on google but with no success for the answer, I hope someone could help me here :/

1

There are 1 best solutions below

2
On

did you try to style the class item with fix width because I think this is the issue.

As I can see the class item is use on each div and everything is set with % width.

.item{
 width:200px;
}

note that I put 200px but choose the size you want.