Thread Starter
veekee
(@veekee)
EDIT: The hovering “Pin It” button was part of the Pinterest Chrome extension.
The image border and drop shadow issues remain!!
are you able to change the styling in css?
Thread Starter
veekee
(@veekee)
I bet but don’t know where to find that particular piece of CSS…?
Your css file is located /NEWSITE2014/wp-content/themes/virtue/assets/css/virtue.css You could create a child theme as it’s best not to edit the themes css incase of updates, or overwrite it using:
[class*=wp-image]
{
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
border:0px !important;
}
@veekee
I think this particular styling is in your virtue.css file.
Thread Starter
veekee
(@veekee)
Thank you! I pasted this code into the custom CSS box and it worked perfectly!!