Moderator
Jan Dembowski
(@jdembowski)
Forum Moderator and Brute Squad
For that sort of CSS modification, use a tool like Firebug to identify the CSS that needs updating.
I think you mean via the shortcode in a post. Using that tool, I was able to eliminate the border and drop shadow by adding these lines to my child theme’s style.css file.
.masonryItem, .masonryItem hr {
box-shadow: none !important;
border: none !important;
}
Give that a try and see if that does it for you.
We tried it but it’s not working. Does this work in the widget? Our site is http://www.rogerelizabeth.com so you can see the border I’m talking about.
Hi roger,
Open simply-instagram.css and go to line 33.
Replace this:
.front-photo {
border: none;
padding: 2px;
margin-right: 4px;
background-color: white;
border-radius: 5px;
vertical-align: middle;
}
to this:
.front-photo {
border: none;
margin-right: 4px;
background-color: white;
vertical-align: middle;
}