Hello @castilo14004,
To Remove post media link, use below css rule
.post-share {
display: none;
}
To Remove Navigation Post, use below css rule
.matrix_carousel-navi.home-blog-content {
display: none;
}
For the post title from the slider
.slider-content {
display: none;
}
Thanks
Hello again
the navigation does not remove. maybe I did not explain it well, I am sorry .
what I mean is , on a post , on the end of the post , two boxes which are the next post and the previous post . I would remove those boxes.
thank you
Hi
Use below css rule to remove pagination (next & previous button) from blog page
div#pagination {
display: none;
}
Use below css to remove spacing, arrived after next & previous button removed
.blog-post-page .blog-post {
margin-bottom: 0px;
padding-bottom: 0px;
border-bottom: none;
}
Adjust margin-bottom and padding-bottom according to your requirement.
Thanks
Most Welcome 🙂
We are Happy to Help you.
Thanks