• For some odd reason on my about page, the three profile images are being washed out:

    https://www.nooranigreiner.com/about/

    If you drag and drop the images to your desktop you can see that they are not as bright as they should be.

    Something is clearly happening to them on this page … I have tried saving them differently out of photoshop to no avail.

    Any idea why this is happening? It’s only happening on this page of the website.

Viewing 2 replies - 1 through 2 (of 2 total)
  • .blog-posts .blog-post .blog-post-content p, .container p {
        opacity: 0.65;
    }

    is causing the issue

    In Edit css under ‘Appearance’ add the following:

    .blog-posts .blog-post .blog-post-content p, .container p {
        opacity: 1;
    }

    The above will fix the images but will also darken the text

    For just the images use this code

    .blog-post-content img{
        opacity: 1;
    }
    • This reply was modified 8 years, 1 month ago by luckychingi.
    • This reply was modified 8 years, 1 month ago by luckychingi.
    • This reply was modified 8 years, 1 month ago by luckychingi.
    • This reply was modified 8 years, 1 month ago by luckychingi. Reason: Forgot the
    Thread Starter alessandroab2llc

    (@alessandroab2llc)

    Amazing, thanks so much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Images Are Washed Out’ is closed to new replies.