Hi,
Having upgraded to Enfold version 2.3.2. I find that:
a) the header set to ‘fixed header with social icons and navigation’ actually dynamically refizes the logo. It is no longer fixed.
b) Using the blog posts content element no longer shows the photos for the blog items. The links still work, but no photos are shown.
kind regards,
PPCHound.
Hello PPCHound!
a) This is not an issue but a feature. The logo will resize if there’s not enough space for the menu and the menu links would overlap the logo. We’ll add a hook to deactivate this feature in the next version though. Then you can use following code in functions.php
add_filter('body_class','avia_remove_resize_function');
function avia_remove_resize_function($classes)
{
$classes[] = 'avia_deactivate_menu_resize';
return $classes;
}
to deactivate te resize function.
2) Can you post a link please – I’d like to investigate the source code.
Best regards,
Peter
Hi,
Sorry, should have posted the link: http://elliptical.co.uk.
Many thanks for the CSS. I’ll try that tomorrow.
regards,
PPCHound
Hey!
Please try deactivating BJ Lazy Load plugin. It replaces thumbnail image with a placeholder
Regards,
Yigit
MANY THANKS Yigit! BJ Lazy Loader was really screwing everything up. Including the animations on my Layerslider which I have been working on locally with the same setup.
Thanks man. Kriesi give top-notch support.
kindest regards,
PPCHound.