Site logo

Archived topic

Image Tools?

7 replies · Started by James on March 6, 2016

Viewing posts 1–8 of 8

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

Probably no need for a plugin, just use CSS3.

For example:

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

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

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 {

}

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

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

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

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

No problem :)

This archived topic is closed to new replies.