New Landing How can we help? Atelier Post featured image size issue

Viewing 6 posts - 1 through 6 (of 6 total)
  • Posted in: Atelier
  • #271688
    micheal_w
    Member
    Post count: 498

    Hi Guys,
    since one of the previous update, the post’s featured image works differently.
    When a post page opened on mobile, the featured image on the top is just a small stripe, before it was a nice sized picture.

    How can I solve this?
    Thanks!

    #271705
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    Hi

    Try adding this to your custom css:

    @media only screen and (max-width: 479px) { 
    .fancy-tabbed-style .fancy-heading .heading-text h1 {
      font-size: 24px;
    }
    }

    – Kyle

    #271706
    micheal_w
    Member
    Post count: 498

    Hi Kyle,

    it works. Sort of.
    The stripe issue is still there between 480 – 767 px 🙁

    #271707
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    Add this:

    @media only screen and (max-width: 768px) { 
    .page-heading.fancy-heading {
      max-height: 370px!important;
    }
    }

    – Kyle

    #271712
    micheal_w
    Member
    Post count: 498

    Oh great, thanks!

    One more question regarding this: at the moment the picture is aligned vertically to the top and the bottom of the picture cut off… Is it possible to align the featured image vertically in the middle?

    #271717
    Kyle – SUPPORT
    Moderator
    Post count: 35880

    Add this to the previous css:

    background-position: center -40px !important;

    So:

    @media only screen and (max-width: 768px) { 
    .page-heading.fancy-heading {
      max-height: 370px!important;
      background-position: center -40px !important;
    }
    }

    – Kyle

Viewing 6 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic.