• Resolved talb

    (@talb)


    Hi, I want to hide the main image on my index page, when it is viewed in the mobile version, how can I do that?
    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author Richie KS

    (@rkcorp)

    which main image? do you mean the header image?

    Thread Starter talb

    (@talb)

    Sorry, I meant the featured image of the index page, not the header image.

    Theme Author Richie KS

    (@rkcorp)

    try add this to theme option->custom css

    @media only screen and (min-width:200px) and (max-width:500px) {
    #custom .post-thumb { display:none; }
    }
    Theme Author Richie KS

    (@rkcorp)

    sry, more correct should be

    @media only screen and (min-width:200px) and (max-width:780px) {
    #custom .post-thumb,#custom .feat-thumb { display:none; }
    #custom .post-right,#custom .feat-right{margin:0 !important;}
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Hide main image in mobile version’ is closed to new replies.