• Resolved tiffD99

    (@tiffd99)


    Is there a way to fade the background when you are in a post. This is my first experience trying to build a website… and My 24hr experience means you are going to have to talk to me like I am a kindergarten in computer language. But I love this theme and want to keep my background image. I just want my post readable when you click on a circle.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hey there tiffD99,

    Hope you’re well today!

    Generally this is something that could be done with some custom CSS. Try adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin if your theme doesn’t have custom CSS tab.

    http://ww.wp.xz.cn/plugins/simple-custom-css

    Once the plugin is installed and activated you can add this code to Appearance >> Custom CSS:

    body.single.single-post {
    background-image: none;
    }

    This should remove the background image from your single post pages only. If this doesn’t work please provide link to your site so I can take a look 🙂

    Best regards,
    Bojan

    Thread Starter tiffD99

    (@tiffd99)

    naturalgreenhousespecialist.com

    .

    Still can not make it readable. Thank you for the simple instructions I was able to do what you told me to do. It just did not work

    Hi there tiffD99,

    Hope you are having a great week so far!

    Can you try adding the fallowing snippet the way Bojan explained –

    .site-content{
      background-color: #fff;
    }

    Let us know if this works for you.

    Thanks,
    Ivan

    You have Bojan’s code in comments:

    /*
    body.single.single-post {
    background-image: none;
    }
    */

    Those /* */ marks before and after the code are comment marks: they tell the browser to ignore anything CSS in between them. If you remove them, you should be good to go.

    Thread Starter tiffD99

    (@tiffd99)

    YES! You are awesome Stephencottontail! I am clearly an newbie! Thank you so much for the quick lesson! YOU ROCK!

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Background Image makes Post Unreadable’ is closed to new replies.