Ok, this is confusing me to no end, I am making a site and am trying to get the background image to stay in the center, not repeating. I've done this countless times by linking to an internet URL, but not from off of my own hdd.
The code I got to work is:
<html>
<head>
<title>title here</title>
</head>
<body background=assets\back.jpg>
but it repeats it, I don't want it too.
but, when I use CSS, it just shows a blank page.
My CSS code (I just used it in the head tag) is:
<head>
<title>title here</title>
<style>
body { background: url(assets\back.jpg) #fff center no-repeat fixed;}
</style>
</head>
I have no idea what I'm doing wrong.
Any help will be greatly appreciated