Quote:
Originally Posted by kishorprins
I really can't use that since I will be using the default image. Even if I were to change the CSS and image, the jquery is setting the position. I want to use a custom image to close but it seems to be not possible.
|
No, the CSS fixes the image and position.
PHP Code:
/* default close button positioned on upper right corner */
.close {
background-image:url(images/img/close.png);
position:absolute; right:0px; top:0px;
cursor:pointer;
height:35px;
width:35px;
}
The line 'position:absolute; right:0px; top:0px;' fixes the position to the top right.
This can be changed or omitted to suite your needs.