i installed your popup tutorial and it was pretty easy to edit and stuff but i was wondering if it was possible to give the popups square corners instead of the rounded ones. also is it possible to give them a thin black border (i want my popups to look like your inbox one basically)
.popup_block{display: none; /*—hidden by default—*/background: #fff;padding: 20px;border: 2px solid #ddd;float: left;font-size: 12px;position: fixed;top: 50%; left: 50%;z-index: 99999;/*—CSS3 Box Shadows—*/-webkit-box-shadow: 0px 0px 20px #000;-moz-box-shadow: 0px 0px 20px #000;box-shadow: 0px 0px 20px #000;/*—CSS3 Rounded Corners—*/-webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;}
this code is how you edit the popup
for square corners change the 10s to 0
for a thin black border find border: 2px solid #ddd;and change the #ddd to #000
-Annie









