|
You could always conjugate your css like so:
background:url(address goes here) left no-repeat;
That will align the bg image to the left and stop it from repeating. Has always worked for me.
If it is not working in numerous browsers, check your code to make sure you haven't mistakenly left the div unclosed.
Or, another thing to look for if it s broken across different browsers - make sure you don't have duplicate css renderings of the same div as the css styles will be ignored if there is another one further down the code which gives different attributes.
Hope that's helpful
|