Hi,killeralienmonk.
I could locate and correct the fault.
/wp-content/plugins/camera-slideshow/css/camera_front.css
Please search the caption “COLORS & SKINS” in the camera_front.css
You’ll find the class like this:
.pattern_1 .camera_overlayer {
background: url(images/patterns/overlay1.png) repeat;
}
url “patterns” is unnecessary. Please change it like this:
.pattern_1 .camera_overlayer {
background: url(images/overlay1.png) repeat;
}
And please repeat changing it from “.pattern_2” to “.pattern_10”
I was also in trouble with same problem. I could locate and correct the fault with Your Post. Thanks!