[Resolved] Image Tools?

Home Forums Support [Resolved] Image Tools?

Home Forums Support Image Tools?

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #177375
    James

    I have been searching for a plugin that will work with GP to add some image effects, such as a shadow effect, etc. Any suggestions?

    Thanks,
    James

    #177421
    Tom
    Lead Developer
    Lead Developer

    Probably no need for a plugin, just use CSS3.

    For example:

    .entry-content img {
        box-shadow: 5px 5px 5px #000000;
    }
    #177433
    James

    Thanks Tom, but will implementing this code affect all images? Featured images, etc?

    • This reply was modified 8 years, 1 month ago by James.
    #177441
    Tom
    Lead Developer
    Lead Developer

    That code will do images inside your content.

    Post images:

    .post-image img {
        /* CSS3 effects in here */
    }

    Page headers/featured images:

    .page-header-image img {
    
    }

    All images site-wide:

    img {
    
    }
    #177443
    James

    Hmmmm…assuming I have implemented it correctly, I am seeing no difference, Tom.

    .page-header-image img {box-shadow: 5px 5px 5px #375b7f;
    }

    #177500
    Tom
    Lead Developer
    Lead Developer

    Can you link me to the page where it’s not working?

    #177530
    James

    My bad… once I refreshed my browser the effects were there. Thanks!

    #177638
    Tom
    Lead Developer
    Lead Developer

    No problem 🙂

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.