• Hi there,

    I am having a couple issues with the featured images on my site.

    1. On mobile, my featured images are showing above the post titles in the carousel vs behind the title like on desktop.

    2. Also on mobile, I would like to hide the featured image on the related section under a post. I think I have figured out how to hide them everywhere else but here.

    Any help would be great! Thanks!

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Janny

    (@unruffled)

    I discovered one more issue with featured images. When trying to share one of my posts to social media, it is using the featured image as the default and doesn’t give the option to choose the other images. I am using blank colored featured images on my site so I do not want them to show other than in the carousel. Can anyone help with this?

    Hi there,
    this is the default behaviour, or else the carousel image would be almost invisible.
    You can try it though by adding

    @media(max-width:768px) {
        .slide .slide-content {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            height: auto;
            min-width: 80%;
            -webkit-transform: translate(-50%, 0%);
            -ms-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
            background: #fff;
            text-align: center;
        }
        .home-slider button {
            top: 0;
            bottom: 0;
            height: 46px;
            margin: auto;
        }
        .home-slider {
            max-height: 200px;
        }
    }

    in your custom CSS box.

    Related section comes from Jetpack’s related posts, hide them like this

    @media(max-width:768px){
        #jp-relatedposts .jp-relatedposts-items-visual .jp-relatedposts-post img.jp-relatedposts-post-img{
        display:none;
    }
    }

    in mobile.
    3. Use Yoast SEO (or any similar tool) to control the featured image and what are you sharing in social media https://yoast.com/social-media-optimization-with-yoast-seo/

    Let me know if you need additional help on this.

    Thread Starter Janny

    (@unruffled)

    This helps, thank you!

    You are welcome @unruffled!I’d like to ask you, if you like the theme and could take a minute to review it here it would help us a lot!

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