I'm working on a site with multiple people right now, were using a bootstrap css template, someone added a background image with the following code.
body {
font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
background: url('../img/bgPhoto.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
My issue is, no matter what I do to change/ get rid of the image, it wont go away, I've restarted my IDE, I've restarted my FTP, I've even the code and the image itself, heck I've even restarted my computer. But the haunting image remains.
I've tried small things like
background-image: none !important;
but that doesn't even work. Am I missing something super simple here?