Shop.CSS file here ya go, cant see it.
/* <?php
*/
/* Shop Styles here please
*/
.legalinfo {
background: lightgray;
border: 2px solid gray;
margin: 10px;
padding: 0px 0px 10px 10px;
}
/*
General Formatting
*/
.formLabel {
float:left;
width:30%;
text-align:right;
font-weight: bold;
margin: 2px;
white-space: nowrap;
clear: left;
}
.formField {
float:left;
width:60%;
margin: 2px;
}
/**
* Administration Styles
*/
.adminListHeader {
float:left; height: 48px; background-repeat: no-repeat;
text-align: left; font-size: 18px; font-weight: bold;
padding-left: 80px;
}
.labelcell {
margin-left: auto;
text-align: right;
font-weight: bold;
vertical-align: top;
width: 30%;
}
/**
* Errors, Warnings and Info formatting
*/
.shop_error, .shop_warning, .shop_info, .shop_debug, .shop_critical, .shop_tip {
font-size: 120%;
margin-top: 0.8em;
margin-left: auto;
margin-right: auto;
width: 70% !important;
clear: both;
text-align: justify;
vertical-align: middle;
border-collapse: collapse;
padding: 15px 20px 15px 80px;
background-position: 20px 50%;
background-repeat: no-repeat;
-moz-border-radius: 20px;
-khtml-border-radius: 20px;
border-radius: 20px;
}
.shop_error {
background-color: #fdd;
background-image: url( ../shop_image/ps_image/log_error.png );
}
.shop_warning {
background-color: #ffc;
background-image: url( ../shop_image/ps_image/log_warning.png );
}
.shop_info {
background-color: #eef;
background-image: url( ../shop_image/ps_image/log_info.png );
}
.shop_tip {
background-image: url( ../shop_image/ps_image/info.png );
background-color: #dfd;
}
.shop_debug {
background-color: #F0F8FF;
background-image: url( ../shop_image/ps_image/log_debug.png );
}
.shop_critical {
background-color: salmon;
font-weight: bold;
background-image: url( ../shop_image/ps_image/log_critical.png );
}
And for good measure, here is a copy of the Sleight.js file it also mentions
/**********************************************************
Sleight
(c) 2001, Aaron Boodman
http://www.youngpup.net**********************************************************/
if (navigator.platform == "Win32" && navigator.appName == "Microsoft Internet Explorer" && window.attachEvent) {
document.writeln('<style type="text/css">img, input.image { visibility:hidden; } </style>');
window.attachEvent("onload", fnLoadPngs);
}
function fnLoadPngs() {
var rslt = navigator.appVersion.match(/MSIE (\d+\.\d+)/, '');
var itsAllGood = (rslt != null && Number(rslt[1]) >= 5.5);
for (var i = document.images.length - 1, img = null; (img = document.images
); i--) {
if (itsAllGood && img.src.match(/(.*)\/com_virtuemart\/(.*)\.png/i) != null) {
fnFixPng(img);
img.attachEvent("onpropertychange", fnPropertyChanged);
}
img.style.visibility = "visible";
}
var nl = document.getElementsByTagName("INPUT");
for (var i = nl.length - 1, e = null; (e = nl); i--) {
if (e.className && e.className.match(/\bimage\b/i) != null) {
if (e.src.match(/\.png$/i) != null) {
fnFixPng(e);
e.attachEvent("onpropertychange", fnPropertyChanged);
}
e.style.visibility = "visible";
}
}
}
function fnPropertyChanged() {
if (window.event.propertyName == "src") {
var el = window.event.srcElement;
if (!el.src.match(/x\.gif$/i)) {
el.filters.item(0).src = el.src;
el.src = "x.gif";
}
}
}
function dbg(o) {
var s = "";
var i = 0;
for (var p in o) {
s += p + ": " + o[p] + "\n";
if (++i % 10 == 0) {
alert(s);
s = "";
}
}
alert(s);
}
function fnFixPng(img) {
var src = img.src;
img.style.width = img.width + "px";
img.style.height = img.height + "px";
img.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "', sizingMethod='scale')"
img.src = "components/com_virtuemart/shop_image/blank.gif";
}
But as I dont know that much about php, its all gobbledygook to me lol