Skip to content Skip to sidebar Skip to footer

Header Text Over Image

I want my Header text (Events, Blog, About) to LAY ON TOP OF the 'Images/Damask.png' image. Instead the image is displayed at the very top of the header with the text BELOW the im

Solution 1:

Instead of separately adding an image, you can simply add the following CSS to your stylesheet and that would achieve what you're trying to do:

header {
     background-image: url('Images/Damask.png');
}

Post a Comment for "Header Text Over Image"