This topic has 12 replies, 2 voices, and was last updated 6 years ago ago by Rose Tyler
Hi there,
Is there a way to remove the “view large” and “more details” on featured images when the mouse hovers over them? I’d just rather it went directly to the blog post.
Hello,
Sorry for the delay due to the weekends.
Please provide your Blog page URL.
Regards
Hi Rose, see below
Hello,
Make sure that our theme is activated on your site and provide a link to the Blog page, where you want to remove buttons.
Regards
Sorry, sent the wrong URL
Try to use this custom css code:
.blog .wp-picture .btn_group a:last-child {
padding: 100px 78px !important;
background-color: transparent;
color: transparent !important;
}
.blog .wp-picture .btn_group {
top: 0px;
}
.blog .wp-picture .btn_group a:first-child {
display: none;
}
.blog .wp-picture .zoom >i { background-color: transparent !important; }
.blog .wp-picture .btn_group a:before,
.blog .wp-picture .btn_group a:after,
.blog .wp-picture .btn_group a span:before,
.blog .wp-picture .btn_group a span:after{
display: none;
}
Regards
perfect. thank you, Rose!
You’re welcome!
Regards
Rose, one more thing. Is there a way to remove the same thing from the featured image on the actual blog post?
Hello,
Please change the previous code to:
.blog .wp-picture .btn_group a:last-child, .post-slide .btn_group a {
padding: 100px 78px !important;
background-color: transparent !important;
color: transparent !important;
}
.blog .wp-picture .btn_group, .single-post .post-slide .btn_group {
top: 0px;
}
.blog .wp-picture .btn_group a:first-child {
display: none;
}
.blog .wp-picture .zoom >i, .thumbnails-x .zoom >i, .single-post .zoom >i { background-color: transparent !important; }
.wp-picture .btn_group a:before, .swiper-slide .btn_group a:before, .portfolio-image .btn_group a:before, .thumbnails-x .btn_group a:before,
.wp-picture .btn_group a:after, .swiper-slide .btn_group a:after, .portfolio-image .btn_group a:after, .thumbnails-x .btn_group a:after,
.wp-picture .btn_group a span:before, .swiper-slide .btn_group a span:before, .portfolio-image .btn_group a span:before, .thumbnails-x .btn_group a span:before,
.wp-picture .btn_group a span:after, .swiper-slide .btn_group a span:after, .portfolio-image .btn_group a span:after, .thumbnails-x .btn_group a span:after {
display: none;
}
.single-post .btn_group a {
background-color: transparent !important;
color: transparent !important;
}
Regards
that didn’t seem to work, unfortunately
Please clear cache and check one more time.
Regards
You must be logged in to reply to this topic.Log in/Sign up