View Single Post
Old 04-21-2009, 05:58 AM  
XR2
Registered User
 
XR2's Avatar
 
Join Date: Apr 2009
Location: London(UK)
Posts: 38
Just create a div place it below with a bit of javascript

e.g
<div id='back' style="position:absolute; visibilitydden; background-color:#000000; opacity:0.4;filter:alpha(opacity=40);-moz-opacity:0.5;-khtml-opacity: 0.5;" ></div>


function setBack()
{
var opBack = document.getElementById('back');
opBack.style.visibility = 'visible';
opBack.style.top = 0;
opBack.style.left = 0;
opBack.style.width = '100%';
opBack.style.height = '100%';
}

then wack your pic in another div ontop/ cnetered
XR2 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote