• Resolved automichael

    (@automichael)


    After upgrading to 2.7.1, my K2 theme is all messed up. Page body aligns at left, backgrounds repeat and header is completely off and repeats as well. How can I fix this???

    domain is https://www.automorrowmusic.com/blog, but at the moment i have a maintenance message up. This site has just launched so I really need to figure out how to correct this ??

Viewing 5 replies - 16 through 20 (of 20 total)
  • The bug is in the function k2_body_class in k2/app/includes/info.php (line 648):

    // Separates classes with a single space, collates classes for BODY
    $c = join( ‘ ‘, attribute_escape( apply_filters(‘body_class’, $c) ) );

    Change it to:

    // Separates classes with a single space, collates classes for BODY
    $c = join( ‘ ‘, apply_filters(‘body_class’, $c) );

    Luciano – you’re a star. lol

    Just a short note – the latest nightly of k2 did cure the problem for me.

    All the best
    Baumi

    This is a very strange bug. I have 2 blogs using K2, and it only affected one of them. Why would one blog display this problem, while the other centers nicely? WP 2.8.4 & K2rc8v807.

    Please ignore my previous post. Upgrading to the latest K2 nightly fixed the problem. I thought I was still seeing it, but it was an artifact of the local to remote override process in CSSEdit.

Viewing 5 replies - 16 through 20 (of 20 total)
  • The topic ‘2.7.1 upgrade had horrible side effects with K2 theme’ is closed to new replies.