• In the past, I am sure I changed the background image in the stylesheet for our theme. But, I have changed the image in the sheet and it is not changing on our website. Below is the section of code from the stylesheet (style.css). I am stumped as the image that is specified is not showing up. I have checked the ftp server and the correct image is there. Am I missing something?

    body {
    	color: #141412;
    	line-height: 1.5;
    	margin: 0;
                    background-color: #122F00;
    	font-family: verdana, Arial, sans-serif;
    	font-size:12px;
    
        background-image: url('https://gurreathomes.com/wp-content/uploads/2018/04/28.jpg');
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @tgurr I hope you are well today.

    Currently the image that is added in the body’s CSS is different, I can see only this

    https://www.gurreathomes.com/wp-content/uploads/2020/12/backgroundwinter.jpg

    You can check that your changes by FTP if they are being saved correctly, it can also be something from the Cache

    You can also try to delete the css code from the body and check if you are making the change to the correct file to avoid confusion.

    I see this

    body {
    	color: #141412;
    	line-height: 1.5;
    	margin: 0;
                    background-color: #122F00;
    	font-family: verdana, Arial, sans-serif;
    	font-size:12px;
    
        background-image: url('https://www.gurreathomes.com/wp-content/uploads/2020/12/backgroundwinter.jpg');
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
    
    }
    Thread Starter tgurr

    (@tgurr)

    Hi Andres. Thank you so much for your quick reply! I just looked at the style.css file on FTP and it is the same as I have above (in my beginning post). But what you are seeing is what is actually showing up. How do I delete the code from the body? I am making the change in style.css and this is where I would normally do it.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing Background Image’ is closed to new replies.