Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #793601

    How can I set a default feature image for blog posts? I’m trying to set a default feature image of my choosing other than the standard pen/pencil.

    If it is not possible to set a default feature image, how can I set the default so that there is no feature image in post pages and in the grid format blog page.

    #793680

    Hey Derek,
    The pen/pencil you see is a entypo-fontello icon. You can change that with a 60×60 image using this in your quick css:

    .main_color .fallback-post-type-icon[data-av_icon]:before {
        content: url(https:// ... .jpg)!important;
    }

    If you want to use a bigger image use this css:

    .main_color .fallback-post-type-icon[data-av_icon]:before {
        content: url(http: ... .jpg)!important;
        left: -10px!important; 
        top: -10px!important; 
    }

    adjust the left & top as needed :)

    Best regards,
    Mike

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.