• My wordpress theme has a menu bar along the top below the header image. Every once in a while, without any change to theme code, the menu will be positioned incorrectly. When it happens, it happens across the board and for no reason that I am able to figure out.

    here is the rule that positions it:

    #header {position:relative; z-index:9999; background:url('../includes/rgba.php?name=black&a=20'); background:rgba(46,124,192,1); border-top:1px solid rgba(0,0,0,0.8); border-bottom:1px solid rgba(0,0,0,0.8); margin-top:156px; heigh t: 32px; }

    Just a few weeks ago I had margin-top at 176px. The other day I had to change it to 156px in order for it to be positioned in the spot that it was before. I made absolutely no changes to the parent element in any way. What could be causing this? Thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Your site URL? Just looking into the posted code is not helpful, thanks.

    Thread Starter john_bryan

    (@john_bryan)

    I think the reason that is happening is that your header background image changes height or some javascript is affecting it some times applying the CSS styling somewhere. But I see that the header background image block is:

    <div class="showcase"> </div>

    And the main menu black is inside

    <div id="header" class="">

    Instead, try editing your theme’s header and reposition the

    <div class="showcase"> </div>

    above the main menu block, and start fixing from there.

    <div class="wrapper">
        <div id="header" class="">
        <div class="headerFix"></div>
        <script type="text/javascript">
        <div class="showcase"> </div>
        <div id="container" style="overflow-x: hidden; width: 1598px;">
        <script>
        <script src="https://www.paliadventures.com/wp-content/themes/pali2013/js/crazyegg.js" type="text/javascript">
    </div>

    So they are stacked naturally in order, so you can avoid forcing the positioning using CSS top properly, because the design is quite simple, I don’t see any reason to use “top” property for the main menu.

    Thread Starter john_bryan

    (@john_bryan)

    Ahh, that makes perfect sense, thanks. I didn’t build the site so I never payed attention to the fact that the divs were placed in a strange order. I’ll try it out on my dev site and see if that does the trick.

    Thread Starter john_bryan

    (@john_bryan)

    So after poking around, I realize that doing what you suggested is almost not worth it. The <div class=”showcase”> is not in my header.php file. Instead the theme developer added it conditionally all over the functions.php file. The amount of time it would take to sort out this mess of spaghetti code in my functions.php file is not worth the occasional need to adjust. Thanks!

    Ah, I see. As long as it works for you, then it’s perfect ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Margin-top randomly being calculated differently’ is closed to new replies.