Hello there. Im trying to put an image, centeres and aligned on the left side, away from the last column, but i just don't know how, could someone please help me whit that? Also, where in the text codes should i put it? Im new whit all the code stuffs, so it's very complicate for me right now.
Thanks in advice :)
If you look up your code you have this there, right?
body,html{background-image:url(); background-color:; color:; font-family:helvetica, tahoma, arial, sans serif; font-size:11px; }
change it to
body{background-image:url(IMAGE URL HERE); background-attachment:fixed; background-repeat:no-repeat; background-position: 0px 200px; background-color:; color:; font-family:helvetica, tahoma, arial, sans serif; font-size:11px; }
background-image:url(IMAGE URL HERE); is where you put the link to the picture you want background-position: 0px 200px; change the amount in px around until the image is where you want it to be.