• Resolved Media800

    (@media800)


    Thanks for the awesome plugin. I need this plugin to only show the featured image on mobile as the desktop version of the theme is displaying featured images inside the articles fine. How do I go about making the featured image just show on mobile?

    Kind Regards,
    Bruce

Viewing 1 replies (of 1 total)
  • Plugin Author Nick Halsey

    (@celloexpressions)

    You could add some custom CSS to hide the images on larger screens. (Go to the additional CSS section in the customizer.) For example:

    
    @media screen and (min-width: 600px) {
        .wp-post-image {
            display: none;
        }
    }
    
Viewing 1 replies (of 1 total)
  • The topic ‘How do I go about making the featured image just show on mobile?’ is closed to new replies.