I’m trying to remove this paper image from the top of blog post page and blog postings. Tried everything but still cant remove it.
I also want to resize the image sizes on how they appear on the blog page not sure how. s
I’m trying to remove this paper image from the top of blog post page and blog postings. Tried everything but still cant remove it.
I also want to resize the image sizes on how they appear on the blog page not sure how. s
Hi Sasan,
To remove it, you can add the code below in Theme Options > CSS
.x-recent-posts .x-recent-posts-img:before,
.entry-title:before {
display:none !important;
}
Hope that helps
Perfect! that removed it.
How do i resize the images or make blog page images smaller?
Hi @sasanp,
To reduce the blog images smaller, please add this custom CSS also:
.blog .entry-featured,
.archive .entry-featured {
max-width: 80%;
margin: 0 auto;
}
Hope it helps 
Perfect! Thank you.
You’re welcome.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.