Hello All! I'm here with a problem! I'm working on a bootstrap theme with no background image. I want to put a single one, but unable to do that. I implement "html { background: url (image url);}". But nothing is displayed.
I don't know anything about bootstrap, but check if the path to the image is correct. Also check if something is z-indexed above the background image.
If you have written it like you have above, that won't work. No space between url and the containing (). The correct syntax is background: url('link_to_file');
It probably also shouldn't go on HTML as that's a non-render element in some browsers. Apart from setting the height for body, you are best off leaving the HTML element alone... and of course anything set on body will overlap html anyways so unless that's the effect you're going for...