- This topic has 21 replies, 3 contibutors, and was last updated 9 years, 3 months ago by .
-
Question
Answers
- The question ‘BuddyPanel not sticky’ is closed to new replies.
BuddyBoss Home – Web › Support Forums › Themes › Boss. theme › BuddyPanel not sticky
Tagged: buddypanel, notification icon, sticky
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
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
Thanks Varun, but you lost me, im not that technical
Where do I find php.ini ?
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
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
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
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
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
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
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
k-elements plugin is creating issue, not better minify
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?
Keep Better Minify deactivated and then test it
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
#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