Ozzy47
Well-known member
In my CSS I have this:
In the folder,
If you try to load the image you get a 403 forbidden error. If I change the image to the styles folder, and change the CSS to
CSS:
#CaptchaDiv {
font: bold 17px verdana, arial, sans-serif;
font-style: italic;
text-align: center;
color: @xf-paletteNeutral3;
background-color: @xf-paletteNeutral1;
background-image: url('src/addons/OzzModz/Spaminator/images/captcha.jpg');
padding: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
}
In the folder,
src/addons/OzzModz/Spaminator/images
have the captcha.jpg loaded. All the folders are 755 and the image is 644 or 755.If you try to load the image you get a 403 forbidden error. If I change the image to the styles folder, and change the CSS to
background-image: url('styles/captcha.jpg');
the image loads. The styles folder is 755 and the image is 644. Not sure what the issue is why it will not load the image in the original location.