• Resolved dedalusjmmr

    (@dedalusjmmr)


    Hi,

    I think I have found a small bug in the frontpage php file.
    That makes the 4 columns (when there is enough width to display the pulldown menu) start only after the menu items, shifted a bit to the right. (If there are many menu items, this means having only half of the width or less.)

    As it didn’t happen in category pages, i looked at the code and made a patch.
    Instead of

    <?php
    get_header();
    if(have_posts()) :
    get_template_part(‘content’, ‘postlist’);
    else :
    get_template_part(‘content’, ‘none’);
    endif;
    get_footer();
    ?>

    now I have

    <?php
    get_header();
    if(have_posts()) :
    ?>
    <div id=”post”></div>
    <?php
    get_template_part(‘content’, ‘postlist’);
    else :
    get_template_part(‘content’, ‘none’);
    endif;
    get_footer();
    ?>

    and everything works fine for me.

    I am not a programmer, so I don’t have a way to post these changes in github.
    Please tell me if this is a good way to solve the bug. It wors for me. ??

    Cheers,
    Jorge Rosa

Viewing 4 replies - 16 through 19 (of 19 total)
  • Thread Starter dedalusjmmr

    (@dedalusjmmr)

    Problem solved with the update to Firefox 25. It was really a problem with the browser.
    Thanks for everything!

    PS: Meanwhile I was having some trouble with some aditional CSS classes that weren’t loading in the child theme, but solved it with a small tweak in the child header.php.

    Same problem here:
    https://f7even.de/temp/Fluxipress.jpg
    The columns start only after the menu items.

    Firefox 25.0.1, Win7 X64
    In IE everything is fine.

    Thread Starter dedalusjmmr

    (@dedalusjmmr)

    Have you tried the tweak in the .js code, posted above?
    In my case, it didn’t solve (with Firefox 24, otherwise same specifications), but I think I did not revert the code, so it was solved with the update do FF 25.
    You are already using FF25, so the .js tweak might do the trick.

    That just made it worse. Same problem as before, but now I only have one big column instead of four.

Viewing 4 replies - 16 through 19 (of 19 total)
  • The topic ‘In frontpage, columns start shifted to the right of the menu’ is closed to new replies.