Remove featured image on mobile

Hello! Is it possible to remove the blog posts featured image on mobile? I can’t find the option in Pro.
Thank you!

Hello Cristian,

Thanks for asking. :slight_smile:

You can add following CSS under Pro > Theme Options > CSS:


@media only screen and (max-width: 600px) {
  .entry-featured {
    display: none;
}
}

Here are some related links for further reading:

Hope this helps.

Hello @Prasant, thanks for the response! Unfortunately although it does remove the picture in mobile view, the header part visible in mobile seems now to take over most of the blog’s first post title. I’ve shrinked the chrome tab so you can take a look at this problem:

Thank you so much for your kind help!

Hi Christian,

Please edit the header builder and edit the bar’s Element CSS and add this code:


@media (max-width: 480px) {
    $el.x-bar-absolute {
        display: relative !important;
    }
}

Hope this helps.

Hi @Jade ! I’ve added the code in the bar’s Element CSS but unfortunately it doesn’t do anything

Hello @CristianD,

To resolve your issue, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

@media(max-width: 979px){
    .x-container>.offset {
        margin-top: 150px;
    }    
} 

We would loved to know if this has work for you. Thank you.

1 Like

Everything works perfectly now! Thank you so much @RueNel, @Jade, @Prasant and all your wonderful team at Themeco. You guys rock! I will definitely recommend others to purchase X Theme

You’re most welcome and we’re glad we could help :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.