Fix News Header Glitch

  • Sticky
    Posted in: Game Addict  
  • Member
    s3recap
    June 17, 2014 at 6:09 pm #31541

    If you are having the problem of the background not appearing or the headers of individual blocks messing up since theupdate do the following.

    News Block Error Fix

    Navigate to wp-content -> themes -> game addict -> pagebuilder-> blocks ->

    Search for widget-title in the following files:

    news-block.php

    newsh-block-php

    news-block.php

    newst-block.php

    Replace the line:

    if($title) echo ‘<h3 class=”widget-title”>’.$title.'</h3>’;?>

    With this line:

    if($title) echo ‘<div class=”title-wrapper”><h3 class=”widget-title”>’.$title.'</h3><div class=”clear”></div></div>’;?>

    BE CAREFUL ON newst-block.php it is a little bit different and looks like this:

        <?php if($title) echo ‘<h3 class=”widget-title”>’.$title.'</h3>’;?>

    do not take out the <?php so it should look like this:

    <?php if($title) echo ‘<div class=”title-wrapper”><h3 class=”widget-title”>’.$title.'</h3><div class=”clear”></div></div>’;?>

    Hope I helped some people figure it out.

    Sorry, this forum is for verified users only. Please Login or Register to continue

Comments are closed.