Hi everyone, I'm new to this forum, I joined up because I'm studying many programming and mark-up languages, and because I am stuck with using CSS background image
I'm trying to set an image as my background on my ASP.NET.
I've only started on CSS today, so I have no idea why this isn't working;
Code:
body
{
background-image: url('I:\COMP1551(Web Applications)\CWK\TestApp\TestApp\Images\cwcHeaderBackground.png');
font-size: .80em;
font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
margin: 0px;
padding: 0px;
color: #696969;
}
What's confusing to me is that it appears to work in microsoft visual studios design view, but when I run the application in IE (the latest version), it appears to have no effect.
Any ideas?