Lukas W.
Well-known member
When opening the chrome developer tool, I'm getting a total of 36 errors, 33 in the first, 3 in the second css.php (why are there two anyway?). They do not seem to be harmful to the page, but I don't believe, they should be there though.
One of them is a continuous ; too much whenever the rgba.php is called. For example here:
Others are marked as invalid even though I don't know why, like min-height: auto; or background-position: fixed;
I think you can substract the errors caused by -moz-syntax, but this still leaves a bunch of errors.
One of them is a continuous ; too much whenever the rgba.php is called. For example here:
Code:
.xenOverlay .errorOverlay
{
color: white;
padding: 25px;
-webkit-border-radius: 20px; -moz-border-radius: 20px; -khtml-border-radius: 20px; border-radius: 20px;
border: 20px solid rgb(0,0,0); border: 20px solid rgba(0,0,0, 0.25); _border: 20px solid rgb(0,0,0);
background: url(rgba.php?r=0&g=0&b=0&a=191); background: rgba(0,0,0, 0.75); _filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#BF000000,endColorstr=#BF000000);;
}
Others are marked as invalid even though I don't know why, like min-height: auto; or background-position: fixed;
I think you can substract the errors caused by -moz-syntax, but this still leaves a bunch of errors.