Colorbox make the light box fixed when scrolling

colorbox, jquery, jquery-plugins

Solution

Puaka i am changing a little thing, which make it works awesome. It aligns center perfectly.

Change the colorbox.css

from

#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}

to

#colorbox, #cboxOverlay{position:fixed; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxWrapper{}

colorbox is perfectly aligned.

Problem

I working with jquery colorbox. When the page content is big and colorbox is opened. Then the color box scrolled along with the page content. I want the colorbox need to be fixed even the background content scrolls. Please help me out to fix this issue.

Original source