• Resolved Micha?

    (@mmmisiek)


    Hello,
    Please look at demo page of ignite.
    On the main page the sidebar is top-aligned with the first post. On the other pages – where the breadcrumbs are active – the sidebar is lower.
    Please check the sidebar’s behaviour in both situations with and without “margin-top” declarations in the lines 1254 and 1267 in style.css file. I don’t know how to fix this.

    I use Firefox 47, IE 11, Chrome 52

    Regards
    Micha? Maciejewski

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter Micha?

    (@mmmisiek)

    After turn off the breadcrumbs in theme’s customizer I’ve tried to use Breadcrumb NavXT plugin. The same effect.
    I’ve also put the code <?php ct_ignite_breadcrumbs(); ?> before the <div id="overflow-container" class="overflow-container"> in header.php. The same.

    Regards MM

    .sidebar-primary-container {
        margin-top: 0;
    }

    Change margin-top to zero, style.css line 1267, 1254

    Thread Starter Micha?

    (@mmmisiek)

    This is good, but not for home page, where breadcrumbs aren’t displayed.
    Maybe breadcrumbs must be displayed always, but on the homepage with visibility:hidden? Don’t know how to code this.
    Thank you anyway ??

    Theme Author Ben Sibley

    (@bensibley)

    Hi Micha?,

    I’m sorry for the alignment issue. In a recent update, I changed the sidebar container from a div element to an aside element which stopped the CSS from working that normally handles this.

    I will fix this in the next update, but for now you can add the following CSS to the Custom CSS section in the Customizer:

    @media all and (min-width: 56.25em){
    
      .breadcrumbs ~ aside {
          margin-top: 0;
      }
    }
    Thread Starter Micha?

    (@mmmisiek)

    Works great! Thank you Ben, also for the speed of your reaction ??

    Theme Author Ben Sibley

    (@bensibley)

    No problem, glad I could help ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Breadcrumbs vs. sidebar’ is closed to new replies.