BuddyBoss Home – Web Support Forums Themes Boss. theme BuddyPanel not sticky

Viewing 15 posts - 1 through 15 (of 22 total)
  • Question

    #46224
    @neilers

    Hi there – purchased and installed the theme yesterday and its awesome, well done and thanks!

    Couple of wee issues however, the left buddypanel is not sticky like it is in the demo and seems to clash with the header somewhat.

    Also the notification icon looks wrong on the top right, lights like there are 2 circles clashing and the number is not centred.

    I have attached a screenshot and the url is http://www.upcycling.xyz

    Thanks
    Neil

    Answers

    #46270
    @vapvarun

    Hi @neilers, Welcome to BuddyBoss Community

    Logo is creating little mess due to getimagesize() function response.
    getimagesize() is sever specific issue, it need allow_url_fopen=1 to get executed , some sever turn that off by default.
    you can add following to php.ini
    allow_url_fopen = on
    or
    Add following to your .htaccess file
    php_value allow_url_fopen On

    Regards
    Varun Dubey

    #46280
    @neilers

    Thanks Varun, but you lost me, im not that technical

    Where do I find php.ini ?

    #46312
    @vapvarun

    Hi @neilers, you can create php.ini inside root folder and include
    allow_url_fopen = on

    if that still not work send a private message to me with website login details

    Regards
    Varun Dubey

    #46391
    @neilers

    Hi @Vapvarun – thanks for sorting this issue. Although it still doesn;t look right. The header does not line up with the menu which seems to go under the header a little. Comparing it to the DEMO it seems my header is possibly too long?

    Also how to I remove the white banner from the profile headers so its transparent like in the demo?

    Thanks in advance for your help!

    Best,
    Neil

    #46479
    @vapvarun

    Hi @neilers, I have added custom css to your child theme,

    
    .site-header .left-col .table {
        height: 74px !important;
    }
    body.left-menu-open[data-logo="1"] .site-header .left-col .table {
       height: 74px !important;
    }
    .table .table {
        background-color: transparent !important;
    }
    

    Regards
    Varun Dubey

    #46550
    @neilers

    Thank you very much Varun, it looks so much better 🙂 However it is only resolved when looking the user profile wall, not when you look at any other tab such as followers or profile, still see the white!

    I have another issue, since adding the Theme all my non buddypress pages give me a 404?

    Its mainly just these 2:

    http://www.upcycling.xyz/upcycling-projects-upcycling-ideas/
    http://www.upcycling.xyz/submit/

    Any idea here?

    Thanks again,

    Neil

    #46571
    @vapvarun

    Hi @neilers
    Clear the cache once, other tabs are also fine without any white bar
    These pages are opening fine for me.
    Regards
    Varun Dubey

    #46656
    @neilers

    Hi Varun – thanks again, yes I see the white space is gone now 🙂

    However I have been customising the theme today which has seem to of removed the code you added for the menu/header I had previously. Screenshot attached.

    I re-added the code you sent:

    .site-header .left-col .table {
    height: 74px !important;
    }
    body.left-menu-open[data-logo=”1″] .site-header .left-col .table {
    height: 74px !important;
    }
    .table .table {
    background-color: transparent !important;
    }

    But it doesn’t seem to be doing anything.

    Also when logged out, the colours revert back to the original blue colours even though I changed them, any ideas why?

    Thanks
    Neil

    #46704
    @vapvarun

    Hi @neilers, minify plugin is creating issue with your setting
    it is adding extra 20px padding for table that’s why header is getting distorted .
    you can inlcude custom css for .table or test with disabling minify plugin
    Regards

    #46707
    @vapvarun

    k-elements plugin is creating issue, not better minify

    #46708
    @neilers

    Thanks @vapvarun – side panel and header look good again. Both are disabled now which is fine.

    Problem now is the BP Feed looks really strange, most of the text / headers have disappeared?

    #46713
    @vapvarun

    Keep Better Minify deactivated and then test it

    #46724
    @neilers

    hi @vapvarun

    No dice unfortunately, still not working. I am getting a display: none for the activity header – screenie attached.

    I use rtmedia, could this be an issues?

    Easy enough to over-ride this but would rather fix it.

    Any ideas?

    Thanks
    Neil

    #46727
    @vapvarun

    #buddypress .activity-header {
    display: none;
    }
    is added inside your custom.css
    you have to remove it to fix activity display
    earlier minify was generating single css file thus it was hard to detect which css files have those codes.

    Regard

Viewing 15 posts - 1 through 15 (of 22 total)
  • The question ‘BuddyPanel not sticky’ is closed to new replies.