Hello,
I'm trying to get a back-ground image full screen in the homepage. The problem is that there is a css rule "background-position: 215px 0;" which I' can't overwrite beacuse I don't know how it's generated.
Firebugs show me this: the first BODY is the problematic css rule, the second BODY is from my css stylesheet. The first overwrite the second
body {
background-attachment: fixed;
background-image: url("http://factorio.us/frames/ndx1/files/1_background.jpg");
background-position: 215px 0;
background-repeat: no-repeat;
}
body {
background-image: url("http://www.factorio.us/frames/ndx1/img/bg3.png");
background-position: 0px;
font-family: Verdana,sans-serif;
font-size: 10px;
}
How i can change that rule? Where it is generated?
the site is: http://factorio.us/frames/ndx1/
thank you very much.