why not just not put them in the post if you don’t want anyone to see them?
id look for an RSS plugin that lets you do stuff like that.
Believe me, I’ve searched high and low.
Should this be in a different thread? Can anyone help me?
Try using display: none in CSS ID. That will help I guess.
I am looking for custom css that will hide all images in my main posts that are exactly 150px x 150px. IS this possible?
Not unless your 150×150 images have ids or classes that identify them. CSS can’t do complicated logic like checking image size. Probably, you will need to do this at the point of import– that is, read the RSS feed and remove the images before they are displayed.
The class is called “attachment-thumbnail” so would it look something like this in my custom css?:
img[class=”attachment-thumbnail”] {
display: none;
}
This did not work by the way.
No.
.attachment-thumbnail {
display:none;
}