Adding background image to div using CSS
You need to add a width and a height of the background image for it to display properly. For instance, .header-shadow{ background-image: url(‘../images/header-shade.jpg’); width: XXpx; height: XXpx; } As you mentioned that you are using it as a shadow, you can remove the width and add a background-repeat (either vertically or horizontally if required). For … Read more