I'm trying to customize the CSS of a popup ad built with WP Popup Scheduler. It gives the option of using text that, when clicked on, will close the window. I went into the CSS of the plugin to insert an image of a close window button (X) in the upper right corner, you see the site with the popup here.
My problem: the close window button isn't functioning. I'm almost assuming this is something I have to fix in Javascript, but I have no idea where to begin.
-
Then again, maybe the CSS for my close window button is the problem:
.wps_closewin_text
{
background: url("http://wyofiletest.com/wp-content/uploads/2011/12/wyo_closebox.png") no-repeat scroll left top transparent;
cursor: pointer;
height: 35px;
position: absolute;
right: -20px;
top: -10px;
width: 35px;
}
{float:right;padding:5px;}
Thanks in advance for any help or advice.