This works fine in FF and Chrome. Any help would be great.
Posting my scripts and CSS for reference:
//required for each plugin
$(document).ready(function() {
//plugin specific statements here
$("#content .section ").dropShadow({left: -4, top: 4, blur: 3, opacity: .1});
$(".sidebar .block").dropShadow({left: -4, top: 4, blur: 3, opacity: .1});
})
CSS:
#content .section {
background-color: #fff;
min-height: 400px;
}
.sidebar .block {
background-color: #FFFFFF;
margin-bottom: 20px;
padding: 20px;
}

Comments

aniebel’s picture

Priority: Major » Minor

Turns out it was working. However, it did not like 10% alpha on the opacity parameter. Has anyone else experienced this?