• Resolved Walterhf

    (@walterhf)


    Hi! i try everything, but with no results, what i need is to show the full size of my images in lightbox mode.

    Catablog only show the images at 100% height according to browser height (or monitor resolution), i need the images shows at full height.

    is there any way to do that?

    Thanks!

    http://ww.wp.xz.cn/extend/plugins/catablog/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author macguru2000

    (@macguru2000)

    You will need to hack the catablog lightbox javascript file yourself. Sorry, if I get some more time I will possibly post instructions here on hacking it.

    Thread Starter Walterhf

    (@walterhf)

    Thanks! but i found the solution by myself about two days ago…

    in plugins/catablog/js/catablog.lightbox.js i’ve changed this values in the line 156:

      if (w > window_width || h > window_height) {
      w_ratio = window_width / w – 0.1;
      h_ratio = window_height / h – 0.1;

    for this one

      if (w > window_width || h > window_height) {
      w_ratio = window_width / w – 0.0;
      h_ratio = window_height / h – 0.0;

    and that makes the trick… thanks! this is a great plugin.

    Saludos!

    Plugin Author macguru2000

    (@macguru2000)

    Glad to hear you found a solution. Marking this thread as resolved. Thanks 🙂

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘[Plugin: CataBlog] Lightbox Full size image’ is closed to new replies.