Hello
I have a VB.NET project in Visual Studio 2013. I am hoping to customise the standard Register.aspx form and want to insert a background image. However, I can't see any 'images' folder in Solution Explorer and I wish to import an image from the desktop and then use something like
body {
background: transparent url(../images/background.png) repeat;}
}
or
body {
background: transparent url(../images/background.png);
background-repeat:repeat-x;
}
Where do I import the images to, please?