• James Welbes

    (@highprrrr)


    tech.itiswhatitis.biz

    If you check out the latest post, you’ll notice the bottom portion of the image is covered by the title.

    Currently, my workaround has been to just modify each image and add about 50 extra pixels to the bottom of each image.

    Is there some way I can edit the theme so that I don’t have to do this to every featured image?

    Thanks!

Viewing 1 replies (of 1 total)
  • Theme Author Brian Harris

    (@zgani)

    That is a theme specific design.

    You can offset the content off the image via the following CSS code – you need to be using a child theme or a custom CSS plugin for this. Please do not edit the theme files directly as you’ll loose all of your edits when the theme is updated.

    Code:

    @media screen and (min-width: 594px) {
          .site-content .has-post-thumbnail .entry-header { margin-top:0px !important; }
        }
        @media screen and (min-width: 846px) {
          .site-content .has-post-thumbnail .entry-header { margin-top:0px !important; }
        }
        @media screen and (min-width: 1040px) {
          .site-content .has-post-thumbnail .entry-header { margin-top:0px !important; }

    Regards,
    Zulf

Viewing 1 replies (of 1 total)
  • The topic ‘Featured Image’ is closed to new replies.