• Hey everyone,
    How do I reduce the opacity of the white background on my page? Or even completely remove it? I was surprised to see that there was still a white background behind my text and that the background picture only showed on the edges.
    Here’s the site : https://maesmusings.com/

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter tskniep

    (@tskniep)

    Bump

    You will find most themes are like that. Most people do not want images making it difficult for people to read the text on their blogs.

    You can try adding this to your child theme’s css:

    #page {
      rgba(255,255,255,0.5);
    }
    
    article:nth-child(even) {
      rgba(247,247,247,0.2);
    }

    But it looks like it’s going to make your author links too light, and then you’ll have to tweak them too. Try

    .basic a {
     color: #0063B8;
    }

    Look into Google or Firefox website editors. It does wonders for being able to customize your site.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to reduce opacity of background?’ is closed to new replies.