i would like to use my own default image as the featured image — sitewide for all posts — instead of the pencil icon supplied with the theme. How do I do this?
Hey Nancy!
Please see – http://kriesi.at/documentation/enfold/change-icon-used-for-standard-theme-elements/
Cheers!
Yigit
thank you. Does this mean I must use an icon? Can I use an image?
Hey!
Yes, you need to use an icon. If you want to use an image instead, use this on the Quick CSS field:
.main_color .fallback-post-type-icon:before {
display: none;
}
.main_color .fallback-post-type-icon {
background: url(IMAGE URL HERE);
background-position: center center;
background-repeat: no-repeat;
}
Add the image url inside the background property.
Regards,
Ismael
the code you sent me works for the category listing:
http://howtomentor.net/category/mentoring/getting-started/
but not this page:
http://howtomentor.net/getting-started/
Can you suggest CSS for the blog listing?
Thanks, Nancy