Deleting text underneath Blog post

Hi,

I would like my blog post, on my blog page, to only show the featured image I selected. Instead, I have the image, a text underneath and a “read more”. How can I delete all that so only the image stays?

Thanks!

Hello There,

Thanks for writing in!

To remove the text underneath the images in your blog and only display those featured images, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.x-iso-container-posts .entry-wrap {
    display: none;
}

Please let us know if this works out for you.

Wow that’s just great thanks a lot! Exactly what I needed!!! Is there a way I could put a title only underneath my blog post picture?

Hello Again,

If you only want to display the featured image and the post title, you will need to update the css code and use this instead:

.x-iso-container-posts .entry-wrap .entry-content.excerpt {
    display: none;
}

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

I dont understand. When I enter the code you are giving me, it works, then when I open up my website from another window, it’s still the same (there is still text underneath).

Hi Stephanie,

I see this on your Theme Options > CSS

<meta name="google-site-verification" content="84XbDBZk0NoLFOjlo-4CBK15am8Rntp8HDxMYSip2yU" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-122666481-1"></script>
<script>window.dataLayer = window.dataLayer ||[];function gtag(){dataLayer.push(arguments);}gtag('js',new Date());gtag('config','UA-122666481-1');</script>

Please remove that because that is not a CSS code. Then check your entire Theme Options CSS here and make sure there is no error in it.

Only then add the CSS code provided by Ruenel.

Follow this post for adding Google tag manager instead.

Hope it helps,
Cheers!

Thank you so much!

You’re most welcome!

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