Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #272330

    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?

    #272611

    Hi Jonas!

    If you are referring to this:

    This will do it:

    .home a.slide-image {
        display: none !important;
    }

    Best regards,
    Josue

    #272765

    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.

    #272797

    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

    #272814

    As Mr.Burns would have said “excellent”

    Thanks! it works very fine

    #272815

    Hehe, you are welcome, glad we could help :)

    Regards,
    
Josue

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Empty image Frame on blogposts after update’ is closed to new replies.