I'm having a problem trying to make my big ass background to appear on my website.
Currently, I've already uploaded the image onto the server via file upload filezilla.
Pathway is the generic one that zymic gives you:
xxx/xxx/xxx/xxx/htdocs/images/image.jpg
My CSS for whole body background:
CODE
body {
margin-left: auto;
margin-right: auto;
width: 50em;
background-image:url(xxx/xxx/xxx/xxx/htdocs/images/background.jpg);
background-size: 100%;
background-repeat: no-repeat;
}
margin-left: auto;
margin-right: auto;
width: 50em;
background-image:url(xxx/xxx/xxx/xxx/htdocs/images/background.jpg);
background-size: 100%;
background-repeat: no-repeat;
}
My website just has the <body> tags with some words inside. I'm not going to open my website to the public, because I'm a shy person. All help on trying to help me figure this out this problem will be greatly appreciated.
In my index.php has:
<link rel="stylesheet" href="style.css" type="text/css" /> in the <head> tag.
Additional info:
I've already tired;
background:url('xxx/xx/x/xxx/'); - also with " "
background:url(xxx/x//x/xxx/x);
background-image:url('xxx/xx/x/xx/x'); - also with " "
Neither of these works.
Thanks!
