1

I'm trying to use Wookmark js to show images on my website, I've followed the official guide but the plugin seems to not work, probably for some inheritance of my CSS theme. Images simply shows up in a list.

I've uploaded jquery-1.10.2-min, wookmark css and jquery.wookmark.js and followed this page source code Wookmark

How can I fix this problem? You can see my website

RavatSinh Sisodiya
  • 1,596
  • 1
  • 20
  • 42

1 Answers1

0

Here is the fiddle for example - http://jsfiddle.net/qcsm3/ - its an example from wookmark github.

Firstly, define tile selector.

var handler = $('#tiles li');

then start plugin

handler.wookmark({

    autoResize: true,resized.
    container: $('#main'),
    offset: 5,
    outerOffset: 10,
    itemWidth: 210

});
Evgeniy
  • 2,915
  • 3
  • 21
  • 35