
Re: using PIE on button/submit tag within generated content
i had commented out the css lines that were causing the error. i have un-commented them now, and sending a screenshot of error in ie8.
http://www.roxstyle.com/projects/blssi/ ... stant.htmlif i comment out a couple of lines (PIE) then i don't get the error.
the default input buttons have a class of .ib
----------from stylesheet-------------------
/* default buttons */
/* removed advanced input type selectors due to conflict with pie.js */
.ib {
position: relative;
display:inline-block;
outline: none;
cursor: pointer;
text-align: center;
text-decoration: none;
border: none;
border-width: 0;
text-shadow: 0 1px 1px rgba(0,0,0,.3);
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px; <- if i comment out this line
-webkit-box-shadow: 0px 1px 2px rgba(0,0,0,.2);
-moz-box-shadow: 0px 1px 2px rgba(0,0,0,.2);
box-shadow: 0px 1px 2px #915328;
color: #fef4e9;
border:1px solid #da7c0c;
background: #f59a05;
background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
background: -moz-linear-gradient(top, #faa51a, #f47a20);
background: linear-gradient( #faa51a, #f47a20);
-pie-background: linear-gradient( #faa51a, #f47a20); <- if i comment out this line
behavior:url(../themes/ih/PIE.htc); /* local */
/*behavior:url(../App_Themes/v1/PIE.htc);*/ /* live */
}
if i comment out the 2 lines above i remove the error generated in ie8
i am testing on macOSX and parallels IE8