Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #339749

    If you go to the blog and click on the most recent blog post it just goes to a thumbnail image of the featured image applied to blog post. If go into the backend and pull up that same post and click “view post” it still just goes to the thumbnail image. Also I noticed I cannot edit the url of this blog post either. If I try to create a new blog post and apply a featured image, the “Add media files…” screen never goes away.

    Oddly all of the previous 12 blog posts I’ve added over the last 6 months work as expected. Quite perplexed.

    #340247

    Hi rbdstudio!

    Can you please firstly update Enfold to the latest version 3.0.2 via FTP – http://vimeo.com/67209750
    The version you are currently using is not compatible with WordPress 4.0

    Regards,
    Yigit

    #340361

    I updated to 3.0.2 and that resolved the issue, thank you. However it created a new issue. I had the following code in Quick CSS to reverse the rollover effect on the social media icons, so the current state shows the icons in color and they gray out upon hover. After updating to Enfold 3.0.2 the styling is no longer working.

    #top .social_bookmarks_linkedin a {
    color: #fff;
    background-color: #419cca;
    }
    #top .social_bookmarks_linkedin:hover a {
    color: #419cca;
    background-color: transparent;
    }
    #top .social_bookmarks_facebook:hover a {
    color: #37589b;
    background-color: transparent;
    }
    #top .social_bookmarks_facebook a {
    color: white;
    background-color: #37589b;
    }
    #top .social_bookmarks_gplus:hover a {
    color: #de5a49;
    background-color: transparent;
    }
    #top .social_bookmarks_gplus a {
    color: white;
    background-color: #de5a49;
    }
    #top .social_bookmarks_twitter:hover a {
    color: #46d4fe;
    background-color: transparent;
    }
    #top .social_bookmarks_twitter a {
    color: white;
    background-color: #46d4fe;
    }
    #top .social_bookmarks_youtube a {
    color: #fff;
    background-color: #a72b1d;
    }
    #top .social_bookmarks_youtube:hover a {
    color: #a72b1d;
    background-color: transparent;
    }

    #340441

    Hi!

    Change your code to this:

    #top #wrap_all .social_bookmarks_linkedin a {
    color: #fff;
    background-color: #419cca;
    }
    #top #wrap_all .social_bookmarks_linkedin:hover a {
    color: #419cca;
    background-color: transparent;
    }
    #top #wrap_all .social_bookmarks_facebook:hover a {
    color: #37589b;
    background-color: transparent;
    }
    #top #wrap_all .social_bookmarks_facebook a {
    color: white;
    background-color: #37589b;
    }
    #top #wrap_all .social_bookmarks_gplus:hover a {
    color: #de5a49;
    background-color: transparent;
    }
    #top #wrap_all .social_bookmarks_gplus a {
    color: white;
    background-color: #de5a49 ;
    }
    #top #wrap_all .social_bookmarks_twitter:hover a {
    color: #46d4fe;
    background-color: transparent;
    }
    #top #wrap_all .social_bookmarks_twitter a {
    color: white;
    background-color: #46d4fe;
    }
    #top #wrap_all .social_bookmarks_youtube a {
    color: #fff;
    background-color: #a72b1d;
    }
    #top #wrap_all .social_bookmarks_youtube:hover a {
    color: #a72b1d;
    background-color: transparent;
    }

    Regards,
    Josue

    #340663

    That did it! Thanks as usual for the great theme support!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Can't add anymore blog posts or featured images’ is closed to new replies.