Hi EJ,
The CSS property
background-image:url() had the capability to accept other properties as well such as
background-repeat and
background-position. Here is a listing of these properties and valid arguments for them at w3schols:
http://www.w3schools.com/css/pr_background-position.aspLooking at your source, I find the following:
<body style="color: rgb(127, 127, 95); background-color: rgb(0, 0, 0); background-image: url(http://steelsheen.com/bg/moria-gate.jpg);"
link="#7f7f5f" alink="#7f7f5f" vlink="#7f7f5f" text="#7f7f5f"
bgcolor="#000000" background="http://steelsheen.com/bg/moria-gate.jpg">
As, I am not certain why you have background listed twice, I have removed the non-CSS version in the following code:
<body style="color: rgb(127, 127, 95); background-color: rgb(0, 0, 0); background-image: url(http://steelsheen.com/bg/moria-gate.jpg);" link="#7f7f5f" alink="#7f7f5f" vlink="#7f7f5f" text="#7f7f5f" bgcolor="#000000">
Now, you should likely add some code such as
background-repeat:no-repeat to the style as well as
background-position:center center, which would give you the following:
<body style="color: rgb(127, 127, 95); background-color: rgb(0, 0, 0); background-image: url(http://steelsheen.com/bg/moria-gate.jpg);background-position:center center;background-repeat:no-repeat" link="#7f7f5f" alink="#7f7f5f" vlink="#7f7f5f" text="#7f7f5f"
bgcolor="#000000">
Additionally, I am wondering why you have the style sheet
background-color and
bgcolor...I would remove the
bgcolor completely, and put the
background-color to sth that give your picture the impression of filling up the entire screen (like maybe a dark brown or gray).
I hope this helps.