I have a folder called “Images” inside my IDE and I want to access this file for my CSS property background-repeat:repeat;
How do I “call” it?
images/background.png isn’t working! 🙁
EDIT: Here’s the solution showing the hierarchy. Any help? 🙂
EDIT3:
I’ve got this now on my CSS:
body
{
background-color: #FFFFFF;
background-image: ../../Images/BackgroundPatternAlt.png;
background-repeat:repeat;
}
According to my solution explorer picture, it should work but it isn’t. Any help?
ps. To clarify my CSS can modify my page properly because if I change the background-color, everything changes properly. The error must be inside the background-image address. T_T

The background images you define inside CSS is always relative to the path of the CSS (if you do not explicitly say not to).
So, if you want to use:
…the CSS-file must be located in the “parent”/root of the images-folder, so I suggest you move the Images folder into App_Themes/Default.