• In the search results, in the mobile version, the featured images of the posts are not appearing. can you tell me why?
    In the desktop version, they appear normally.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    Please try to add the below CSS code from the Appearance > Customize > Custom CSS, and check.

    @media only screen and (max-width: 480px){
    .search-results article .thumbnail {
        display: block;
    }
    }
    Thread Starter devkbr

    (@devkbr)

    Very good! It worked.
    But the image is on the left side of the post title and summary, compressing the text. How to put the image always at the top, before the post title?

    Hello,

    Glad to hear that the previous solution worked well.

    Please add the below CSS code and check.

    .search-results article .search-entry-inner {
        display: flex;
        flex-direction: column;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Featured images in Mobile’ is closed to new replies.