Hi yosall,
this is a z-index problem.
Place this line in your portal.css
.DnnModule {z-index: 90 !important}
There is another way to solve this as well, edit the /desktopmodules/nb_store/js/jquery.lightbox-0.5.css and increase the z-index of the following marked with '******':
Geoff
this is a z-index problem.
Place this line in your portal.css
.DnnModule {z-index: 90 !important}
There is another way to solve this as well, edit the /desktopmodules/nb_store/js/jquery.lightbox-0.5.css and increase the z-index of the following marked with '******':
#jquery-overlay {
position: absolute;
top: 0;
left: 0;
z-index: 998; ******
width: 100%;
height: 500px;
}
#jquery-lightbox {
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 999; ******
text-align: center;
line-height: 0;
}
#lightbox-nav {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 997; ******
}
Regards,Geoff