0

my background is not loading. It is embedded in the header tag loading through the style sheet. See css below:

header{
margin: 0;
background-image: url(/images/sagage_header900.png) no-repeat ;
display: block;    
}

Thanx in advance!

Savage
  • 17
  • 2

2 Answers2

1

Don't use no-repeat in background-image property.

Try this :

background: url(/images/sagage_header900.png) no-repeat;

OR

background-image: url(/images/sagage_header900.png);
background-repeat: no-repeat;
Cyril Beeckman
  • 1,248
  • 10
  • 24
1

Try removing no-repeat

background-image: url(/images/sagage_header900.png);

if you want to add background-repeat:

background-repeat: no-repeat

If still doesn't work, try adding !important to background-image as follow:

background-image: url(/images/sagage_header900.png)!important;
Hari Das
  • 10,145
  • 7
  • 62
  • 59