Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #346489

    Hi guys, I’m trying to implement BBpress currently and when I’ve tried to set up the sidebar it’s appearing underneath the content in a 100% width column (not in its 40% column on the right side). This problem happens across the entire site no matter where I try to display a sidebar.

    I’ve already updated my parent theme’s files to the latest version and had a play around with the dimensions – still doesn’t seem to want to work.

    Thanks in advance,

    Kris

    • This topic was modified 10 years ago by Kris1711.
    #346810

    Hi Kris1711!

    First off go ahead and update Enfold to 3.0.2. Your currently using 3.0. Also double check to see if disabling all plugins fixes it.

    If your still having problems after those two steps then let us know and we’ll take a closer look.

    Cheers!
    Elliott

    #348716
    This reply has been marked as private.
    #348864

    Ok I’ve found the problem – which is really strange! When I’m in general layout -> dimensions, changing settings in there has no effect on the code. Weird huh?

    So how I fixed it was changing this:

    .responsive #top #main .sidebar.smartphones_sidebar_active {
    display: block;
    text-align: left;
    border-left: none;
    border-right: none;
    border-top-style: dashed;
    border-top-width: 0px;
    width: 100%;
    clear: both;
    }

    To this:

    .responsive #top #main .sidebar.smartphones_sidebar_active {
    display: block;
    text-align: left;
    border-left: none;
    border-right: none;
    border-top-style: dashed;
    border-top-width: 0px;
    width: 40%;
    clear: none;
    }

    Wonder why changing theme settings didn’t change this code?

    Cheers,
    Kris

    #348901
    This reply has been marked as private.
    #349151

    Hi!

    It’s displaying fine on my end. Did you get this sorted?

    Cheers!
    Elliott

    • This reply was modified 10 years ago by Elliott.
    #349279
    This reply has been marked as private.
    #349608

    Hi!

    It looks like you still have some custom CSS that is affecting it in your child theme style.css file.

    .responsive #top #main .sidebar.smartphones_sidebar_active {
        border-left: medium none;
        border-right: medium none;
        border-top-style: dashed;
        border-top-width: 0;
        clear: both;
        display: block;
        text-align: left;
        width: 100%;
    }

    The width: 100% is messing with it.

    Best regards,
    Elliott

    #349653

    Silly me :D. Thanks a lot, much appreciated!

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Issues with sidebar’ is closed to new replies.