I am sending a query to see if you can help me. I'm making a web page with wordpress and I'm trying to insert a background with colored lateral lines, that is, the entire background is white and there are some small lines on the sides, the background is here: https://live.staticflickr.com /65535/50115893367_4593b8a1f1_k.jpg
For me to "paint" it like this, the code is as follows:
body{
width:100%;
background-image: url(https://live.staticflickr.com/65535/50115893367_4593b8a1f1_k.jpg);
background-repeat: no-repeat;
background-size: 100% 100%;
}
But in this way both in the header and in the right part of the footer this background is lost and the lines do not appear
If I put it like this:
.container{
width:100%;
background-image: url(https://live.staticflickr.com/65535/50115893367_4593b8a1f1_k.jpg);
background-repeat: no-repeat;
background-size: 100% 100%;
}
The question is: HOW DO I MAKE THAT BACKGROUND BE SEEN IN THE ENTIRE PAGE WITH THE LINES AT THE END OF THE PAGE? Both in the header and in the body and footer without strange breaks
Thank you very much for your help