delete the 215px backgroud position

ruggero / 2012-02-05 18:05:40   
  1. Hello,
  2. 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.
  3. 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
  4. body {
  5.     background-attachment: fixed;
  6.     background-image: url("http://factorio.us/frames/ndx1/files/1_background.jpg");
  7.     background-position: 215px 0;
  8.     background-repeat: no-repeat;
  9. }

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.

ruggero / 2012-02-05 18:08:28   

Sorry, it's messy..

  1. Hello,
  2. 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.
  3. 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
  4. body {
  5.     background-attachment: fixed;
  6.     background-image: url("http://factorio.us/frames/ndx1/files/1_background.jpg");
  7.     background-position: 215px 0;
  8.     background-repeat: no-repeat;
  9. }
  10. body {
  11. background-image: url("http://www.factorio.us/frames/ndx1/img/bg3.png");
  12. background-position: 0px;
  13. font-family: Verdana,sans-serif;
  14. font-size: 10px;
  15. }
  16. How i can change that rule? Where it is generated?
  17. the site is: http://factorio.us/frames/ndx1/
  18. thank you very much.
ruggero / 2012-02-05 18:11:02   

ooooowwww, and how i can edit my posts??

tuub / 2012-02-05 23:47:08   

Go to (/ndxz-studio/site/plugin/index.php)

And change the 215px to 0px

ruggero / 2012-02-06 15:55:55   

perfect!
great!

This thread has been closed, thank you.