Reputation: 4740
How can I set as a default image a gif, via css.
I'm trying to put this (the gif exist in my project), but returns an error. URL undefined.
background: url('..tema/default/images/loadingvenda.gif')
Upvotes: 0
Views: 132
Reputation: 2912
background: url('../tema/default/images/loadingvenda.gif')
Upvotes: 6
Reputation: 20475
You are defining the wrong relative URL (cannot do ..
in a word):
background: url('..tema/default/images/loadingvenda.gif')
should be something like:
background: url('../tema/default/images/loadingvenda.gif')
Notice the ../tema/
Upvotes: 2