Posted by John
2015-06-05

First want to say great poll, you are providing an awesome service! I have the error message coming up under the radio button and text after I tried to integrate it into an existing page. How can you modify the z-index or other to modify the layer of the error message vs. the form fields and how can I see that the changes are happening through debugging?

Thanks.
Posted by Tom
2015-06-09

Hi, I think the cause is z-index. You can edit either the host page's z-index or the tipbox's. To edit the tipbox's index, open web/app.code/tclass.js.inc.php and find and edit the following code.
var s = '';
s += "<span ";
s += "style='";
s += "text-align:center;";
s += "padding:10px;";
s += "margin:10px;";
s += "font-size:22px;";
s += "font-weight:bold;";
s += "font-style:italic;";
s += "font-family:times;";
s += "color:#ffffff;";
s += "background-color:" + bgcolor + ";";
s += "border:3px solid #cfcfcf;";

s += "-moz-border-radius: 15px;";
s += "-webkit-border-radius: 15px;";
s += "border-radius: 15px;";

s += "-moz-box-shadow: 1px 1px 3px #000;";
s += "-webkit-box-shadow: 1px 1px 3px #000;";
s += "'>";
s += txt;
s += "</span>";