How to delete this Blogs section?

How to hide this section? (Blogs)
And how to small this thumbnails on Computer

Hey Saswata,

Please add this code in X > Theme Options > CSS:

.x-header-landmak {
    display: none;
}

@media (min-width: 980px) {
    .entry-featured {
        max-width: 400px;
        float: left;
        margin: 0 10px 10px;
    }
}

Here are some related links for further reading:

Hope this helps.

1 Like

Thank you Jade.

You’re more than welcome, glad we could help.

Cheers!

1 Like

Can you also help me with this?
How can I reduce the font size of the title “PARTS OF SPEECH: DEFINITION AND EXAMPLES” only on mobile.
In desktop or tab view it is fine. but in mobile view, it is quite large

Hey Saswata,

Please add this code as well:

@media (max-width: 480px) {
    .entry-title.h-landmark {
        font-size: 20px;
    }
}

Hope this helps.

yeah, now it’s work, Thanks mate.

You’re most welcome Saswata! :slight_smile:

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