views:

24

answers:

1

I'd like to use this jQuery plugin: jQuery Tools: Overlay effect

It shows a light box in mac style with a black+white x-circle to close it. But it's on the upper right. Since my audience are Mac users, that would suck. How could I reposition that close-x icon to the left of the light box so that the usability doesn't get hurt?

+1  A: 

Default style:

#custom div.close {
    right:-15px;
    top:-10px;
}

Change it to this:

#custom div.close {
    left:-15px;
    top:-10px;
}
Šime Vidas