Hi,
I just updateed, and now I have a empty frame over the blog post where I insert them as widgets.
I have the follwing in quick CSS to get rid of icon – worked nice before the update.
.image_size_widget .news-thumb { display: none; }
.rounded-container .iconfont, .small-preview .iconfont { display: none; }
.template-blog .blog-meta, .multi-big .post_author_timeline, .single-small .post_author_timeline { display: none; }
.news-thumb {display: none;}
span.fallback-post-type-icon {display: none!important;}
Can you advice me to some ekstra css?
Hi Jonas!
If you are referring to this:
This will do it:
.home a.slide-image {
display: none !important;
}
Best regards,
Josue
Hi Josue,
the services you provide here is whirly nice, I have never experienced so quick response from so competent developers.
Now looking at the small issue, the fix you gave me helps a little, just not enough.
In IE all the empty boxes is now removed – very nice, but also those with images featured (not so nice)
In Firefox, its same same, noting removed.
Hi,
Discard my first suggestion. Try adding this at the very end of your theme functions.php file:
function add_custom_script(){
?>
<script>
jQuery(window).load(function(){
jQuery('.slider-fallback-image').parents('.slide-image').remove()
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_script');
Regards,
Josue
As Mr.Burns would have said “excellent”
Thanks! it works very fine
Hehe, you are welcome, glad we could help :)
Regards,
Josue