Hi I’m using facebox plugin to display iframe link.
I want to change the style of my close button. I want to show it on Top can any one please help with CSS part.
I want to make facebox draggable is it possible to do soo..
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For Dragging facebox window i used jquery UI’s draggable plugin like this,
$(document).bind(‘reveal.facebox’, function () {
$(“#facebox”).draggable();
})
thats it.
For close button CSS im using,
facebox .close-image
{
background-color: inherit;
position: absolute;
right: -2px;
width: 24px;
height: 22px;
background-image: url(../images/close.png);
cursor: pointer;
z-index: 1103;
display: none;
}