-
AuthorPosts
-
October 22, 2014 at 9:35 pm #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.
October 23, 2014 at 5:40 pm #340247Hi 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.0Regards,
YigitOctober 23, 2014 at 10:17 pm #340361I 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;
}October 24, 2014 at 5:21 am #340441Hi!
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,
JosueOctober 24, 2014 at 4:07 pm #340663That did it! Thanks as usual for the great theme support!
-
AuthorPosts
- The topic ‘Can't add anymore blog posts or featured images’ is closed to new replies.